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

I just ran a test with this entering Nexus, <70 it sent me to pok, 70+ it sent me to center nexus. I used "ze" for both msg's.

Code:
sub EVENT_ENTERZONE {
  if (($ulevel > 0) && ($ulevel < 70)) {
    quest::ze(0,"You are not worthy!");
    quest::movepc(202,-285,-148,-159.12);
  }
  elsif (($ulevel > 69) && ($ulevel < 76)) {
    quest::ze(0, "You must best me before you are deemed worthy!");
    quest::movepc(152,-6.17,0.75,-31.81);
  }
}
Reply With Quote