Quote:
sub EVENT_SAY
{
if ($text=~/Hail/i) { quest::say("I am... Oh that's not important right now, would you care to have your spells [scribed]?"); }
if ($text=~/scribed/i) { quest::scribespells($ulevel); }
}
|
Remove the $ulevel within the parenthesis and you should be fine. It does not need to check the level of the character requesting the spells, as it will just scribe all the spells needed up to thier current level.
Here is the topic I recieved the info from, used it last night on my mini server and it worked fine by using the quest::scribespells(); command.
http://www.eqemulator.net/forums/showthread.php?t=18154
and here:
http://www.eqemulator.net/forums/sho...pells+argument
Hope it helps.