View Single Post
  #3  
Old 06-20-2004, 10:06 PM
Minuss
Sarnak
 
Join Date: Jan 2002
Location: France
Posts: 58
Default

Code:
sub EVENT_SAY
{
if($text=~/Hail/i)
 {
  if($ulevel>=x)
  {
    quest::say("I'm Higher Than you");
  }

  elsif($ulevel<=y)
  {
    quest::say("I'm lower than you...");
  }
 }
}
There ya go
Reply With Quote