PDA

View Full Version : gloabl help


Maceblade
02-10-2015, 08:31 PM
Trying to make it so when a player has a specified qglobal it will change their race and when they zone it will continue to check and change it again....

sub EVENT_ZONE{
if($qglobals{"zombie1"} == 1){
quest::playerrace(70);
}
}

this isn't working for some reason when its in my global_player.pl

NatedogEZ
02-10-2015, 08:35 PM
Try using "EVENT_ENTERZONE"

Maceblade
02-10-2015, 08:49 PM
You sir are the man! works perfectly!