Log in

View Full Version : Player.pl not working on one install


Soak
09-26-2015, 09:22 AM
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.

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!

Shendare
09-26-2015, 12:59 PM
If there's a player.lua in the folder, it will take priority and player.pl will not be executed.

Soak
09-26-2015, 04:36 PM
That was it - I knew that and was staring right at it lol. Thanks as usual Shendare!