Support::General SupportPost all topics here having to do with errors while trying to connect to an EQEMu server but not about the setup/running of the Server itself.
npc_spells_id, 999 think this is a complilation of spells for an npc like (necrospells)
spellid, 278 this should be a spell
type, 8
minlevel, 1
maxlevel, 50 (spell level range)
manacost, -1 (null)
recast_delay, -1 (null)
priority 0
I am wondering what the type value represents, I am assuming its soemthing like buff detremental aoe or something like that, just can;t find a list anywhere of what value signifies what.
Yea, I was hoping when I added a spell to a spell list I would be able to automatically pull the type value somewhere out of the database and fill it in. I have the Spells table sourced into my db from the Ax_classic database, I cannot find it in there either. Seems if you dont assign the correct type to a spell it doesn't get casted properly, I gave an enchanter mob visions of grandeur (haste) hoping it would buff the mobs around it, but it buffed me while I was fighting it! lol
const int SpellType_Nuke=1;
const int SpellType_Heal=2;
const int SpellType_Root=4;
const int SpellType_Buff=8;
const int SpellType_Escape=16;
const int SpellType_Pet=32;
const int SpellType_Lifetap=64;
const int SpellType_Snare=128;
const int SpellType_DOT=256;
const int SpellTypes_Detrimental = SpellType_Nuke|SpellType_Root|SpellType_Lifetap|Sp ellType_Snare|SpellType_DOT;
const int SpellTypes_Beneficial = SpellType_Heal|SpellType_Buff|SpellType_Escape|Spe llType_Pet;
Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.