Log in

View Full Version : sub EVENT_WAYPOINT


spider661
01-07-2009, 01:05 AM
is there a way to see what waypoint there on?

if(wp=10)
{
quest::pause(10);
}

or something like that?

Richardo
01-07-2009, 06:39 AM
sub EVENT_WAYPOINT
{
if($wp == "5")
{
quest::say("I am now on waypoint 5!");
}
if($wp == "10")
{
quest::say("I have reached waypoint 10! Now headed back to waypoint 1 again.");
}
}

spider661
01-07-2009, 11:41 AM
wow hat actually works i was jsut guessing with wp=10 lol i did not see a refrance to $wp :P thanks