Thread: Noob question -
View Single Post
  #2  
Old 10-13-2006, 03:42 AM
Zard's Avatar
Zard
Sarnak
 
Join Date: Nov 2005
Posts: 62
Default

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.

Last edited by Zard; 10-13-2006 at 12:08 PM..
Reply With Quote