View Single Post
  #9  
Old 08-11-2017, 07:19 PM
The_Beast's Avatar
The_Beast
Discordant
 
Join Date: May 2016
Location: Under a rock
Posts: 290
Default

Quote:
Originally Posted by Fridgecritter View Post
I don't even need the quest flag part. I just wanna get the level check < 70 = boot to POK and =>70 = move to right in front of him so he'll aggro.
Try this. I've always had probs when tryng to specify a heading in x,y,z in a movepc script, so I just don't bother.
Code:
sub EVENT_ENTERZONE {
  if (($ulevel < 70) && ($status < 80)) {
    quest::ze(0,"You are not worthy!");
    quest::movepc(202,-285,-148,-159.12);
  }
  elsif (($ulevel >= 70) && ($status < 80)) {
    quest::emote(0, "You must best me before you are deemed worthy!");
    quest::movepc(128,37.29,-7.22,1.98);
  }
}
Reply With Quote