View Single Post
  #1  
Old 09-26-2015, 09:22 AM
Soak
Sarnak
 
Join Date: Mar 2015
Posts: 33
Default Player.pl not working on one install

I'm sure I am overlooking something simple. Why would a player.pl file work on one install but not another? Same client, same character, same zone, etc.

Code:
sub EVENT_CONNECT {
    quest::settimer("Pearls", 10);
}

sub EVENT_TIMER {
    if ($timer eq "Pearls") 
   {
        quest::shout("IT WORKS!");
    }
}
Not sure what I could've changed to effect it on the one install it doesn't work on.

Thanks!
Reply With Quote