So i've done some extensive work to my V variant, mainly in object.txt and monster list.txt, It seems easy to modify and tweak values as well as removing spell effects and damage values of monsters. My question though is if I add a spell to a monster such as | Missle | or | BO_COLD | will it work in the game just by modifying the creature list.txt without having to do extensive coding that I'm unfamiliar with doing.
some more questions about coding
Collapse
X
-
Tags: None
-
So long as you are using an existing spell that is already set up to be used by monsters, no changes beyond the edit file will be needed. If you want a spell that isn't already available to monsters (though I can't think of any that aren't which you would really want to give them) then you would need to do some programming. -
-
I would tend to think of changing the edit files as "modding" instead of "coding" -- coding would require changing the source code and then recompiling. But that's just me being pedantic.
One thing to keep in mind with spells is that if you want to give spells to a monster that doesn't currently have any, you also have to specify the casting frequency (e.g. S:1_IN_5). I think if you don't do that then the frequency is presumed to be "never", though I haven't tried.Comment
-
I would tend to think of changing the edit files as "modding" instead of "coding" -- coding would require changing the source code and then recompiling. But that's just me being pedantic.
One thing to keep in mind with spells is that if you want to give spells to a monster that doesn't currently have any, you also have to specify the casting frequency (e.g. S:1_IN_5). I think if you don't do that then the frequency is presumed to be "never", though I haven't tried.Comment
-
The frequency is just how likely the monster is to choose to cast a spell on their turn. If they do decide to cast a spell, they then decide which spell to cast separately. So a monster with 1_IN_1 might as well have NEVER_MOVE because it will try to cast a spell every turn (well, unless it's confused). A monster with 1_IN_2 will cast spells 50% of the time, and the other 50% attempt to move towards the player (or attack if they're already in melee range). And so on.Comment
-
A monster with 1_IN_2 will cast spells 50% of the time, and the other 50% attempt to move towards the player (or attack if they're already in melee range). And so on.You read the scroll labeled NOBIMUS UPSCOTI...
You are surrounded by a stasis field!
The tengu tries to teleport, but fails!Comment
-
The frequency is just how likely the monster is to choose to cast a spell on their turn. If they do decide to cast a spell, they then decide which spell to cast separately. So a monster with 1_IN_1 might as well have NEVER_MOVE because it will try to cast a spell every turn (well, unless it's confused). A monster with 1_IN_2 will cast spells 50% of the time, and the other 50% attempt to move towards the player (or attack if they're already in melee range). And so on.
1. Daggers-1d4 no change really
2. Short swords, maces, spears, quarterstaffs-1d6
3. Longswords, broadswords, Axes, morningstars, warhammers, light flails-1d8
4. Halberds, tridents, Lucerne Hammers, Katanas, Bastard Swords-1d10
5. Great Axes, Two-handed Swords, Two-handed Flails, Scythes-1d12
6. Giant Weapons-Mace Of disruptions, Blades of Chaos, Executioner Swords-1d20.
This won't hurt the begining game to much but late game it will definetly do a little less damage per blow. Weapon weight will be adjusted some to reflect the less damage die of the weapons.
Blindness and Confusion will be much more rare an effect and individualized to certain monsters that make more sense for them to be able to cause those effects, in ex. Bronze dragons and the like, eyes, drujs, Angels, umber hulks, beholders, Light casting monsters.
Some monsters like liches, will have access to more spells, such as frost bolts, fire bolts, lightning bolts, Greater undead like Master liches will cast fire balls, Cold balls, nether bolts. Mages and Sorcerers will have more to. Priests have summon undead abilities. Some Scare spells removed from monsters such as novice paladins, novice mages, their not powerful enough to scare anybody.
Life Draining will also be a little more rare in general, more specialized to vampiers and ghosts, wights, wraiths. Specters, phantoms, shades, will have a weakness affect such as lose_Str touch attack, or lose_dex, Lose_Con. Hoping to not have to modify monster HP to reflect less damage Die of weapons, and artifacts. I like the idea of modifying the artifacts damage die to the same as base weapon damage die, in order to bring them closer together in competition with one another. in example: Longsword-1d8 and ringil also being 1d8, longsword anduril-1d8 and so on so forth.
This is my idea behind it, input is greatly appreciated, but note it is an experiment to see how well it works.Comment
-
I was wondering when someone was going to attempt an AD&Dangband. Best of luck!www.mediafire.com/buzzkill - Get your 32x32 tiles here. UT32 now compatible Ironband and Quickband 9/6/2012.
My banding life on Buzzkill's ladder.Comment
-
1. Daggers-1d4 no change really
2. Short swords, maces, spears, quarterstaffs-1d6
3. Longswords, broadswords, Axes, morningstars, warhammers, light flails-1d8
4. Halberds, tridents, Lucerne Hammers, Katanas, Bastard Swords-1d10
5. Great Axes, Two-handed Swords, Two-handed Flails, Scythes-1d12
6. Giant Weapons-Mace Of disruptions, Blades of Chaos, Executioner Swords-1d20.Comment
-
Comment
-
If I wanted to limit dungeon levels, say max depth would be level 50, how would I go about changing that?Comment
-
EDIT: as with monster.txt, you should check objects, egos, artifacts, pits and vaults for native depths beyond 50."Been away so long I hardly knew the place, gee it's good to be back home" - The BeatlesComment
-
-
Simplest way is to change MAX_DEPTH in src/defines.h to 51. But note that you will then need to edit monster.txt otherwise half the monsters won't appear. There are also hard-coded references to Sauron and Morgoth (look for RF_QUESTOR).
EDIT: as with monster.txt, you should check objects, egos, artifacts, pits and vaults for native depths beyond 50.
Also, you need to change quest.txt. Standard Angband has 2 "quests" specified in that file: kill Sauron at level 99, and kill Morgoth at level 100. You would need to change that as well.NPPAngband current home page: http://nppangband.bitshepherd.net/
Source code repository:
https://github.com/nppangband/NPPAngband_QT
Downloads:
https://app.box.com/s/1x7k65ghsmc31usmj329pb8415n1ux57Comment
Comment