View Single Post
  #2  
Old 08-11-2017, 04:58 PM
Fridgecritter
Hill Giant
 
Join Date: Feb 2008
Posts: 188
Default

This is what I've got right now, just so you know I'm not just leeching. I'm trying.

Code:
sub EVENT_ENTERZONE {
  if (($ulevel < 70) && ($status < 80)) {
    quest::ze(0,"You are not worthy!");
    $client->MovePC(202,-285,-148,-159.12,71.5);
  }
  elsif (($ulevel >= 70) && ($status < 80)) {
    quest::echo(0, "You must best me before you are deemed worthy!");
    $client->MovePC(128,37.29,-7.22,1.98,199.8);
  }
}
Reply With Quote