View Single Post
  #3  
Old 02-19-2011, 07:46 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
This line is incorrect:
Quote:
Originally Posted by xAndrewx View Post
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; 
__________________
Reply With Quote