This line is incorrect:
Quote:
Originally Posted by xAndrewx
PHP Code:
if (temp.pl == player.account) continue;
|
You're comparing the player object to the player's account. It might work through some quirk in GScript, but the proper way to do it is
PHP Code:
if (temp.pl == player) continue;