Im starting to get the picture...
I used sql front end to take things apart a little better...
I didnt understand that npc_spells and npc_spells_entries were 2 different tables, i do now.... By this point i had amassed a repeating sequence of spell entries.. so i deleted spells and entries table. I sourced in the below text at the end of my npc_spells.txt file..
# **************
# Dragon Roar
# **************
INSERT INTO npc_spells (id, name, parent_list, attack_proc)
VALUES (13, "DRAGON SPELLS", 0, -1);
INSERT INTO npc_spells_entries (npc_spells_id, spellid, type, minlevel, maxlevel, manacost, recast_delay, priority) VALUES (13, 789, 1, 54, 255, -2, -1, 50);
Now it ceratinly looks better when i pull up sql front end, and it has an id of 397....
i even went into game and had lord nagafen (my test subject) cast dragon roar on me to confirm it works.. ( it casts on me and lasts proper time but does nothing to interfere with my abilitys)
UNFORTUNATELY after all this nagafen refuses to cast this spell on his own...
I'm outta ideas at this point so ill await someones suggestiomn thats brighter than i am...
|