View Single Post
  #4  
Old 01-07-2009, 11:52 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
PlayerLogout is called for more than just players and RCs, so you may want to do something like this to make sure you're only getting players and RCs:

PHP Code:
function onPlayerLogout(pl) {
  if (! 
pl.account.length() > 0) {
    return;
  }

__________________
Reply With Quote