We have custom spells on the server, I looked over
this link, and did a search couldn't find exactly what I was looking for, sadly... So I'll explain it, it's probably something simple. :P...
So, instead of changing all the spells in the database I don't want to use to level 255, I want the NPC to scribe certain spells... Example;
Code:
sub EVENT_ITEM
{
if($platinum == 1)
{
quest::scribespell(14);
}
}
Said script, doesn't work. (14 was changed from Burst of Fire(flame?) to Poison Dart, and since you only get two spells at level 1 on the server and there are actually 9 spells you ACTUALLY obtain at level 1 as a Shaman, doing quest::scribespells(1,1) won't work either... Any information//help on this?