View Single Post
  #5  
Old 03-25-2004, 04:31 AM
Monrezz's Avatar
Monrezz
Dragon
 
Join Date: Mar 2003
Location: #loc
Posts: 745
Default

Code:
if ($text=~ /Hail/i)($ulevel=>10){quest::say("Hello $name")
should be:

Code:
if ($text=~ /Hail/i && $ulevel >= 10){quest::say("Hello $name")
I believe ( is for an array, and { the start of the function. A wild guess, though :/
__________________

kRPG Profile
Reply With Quote