
01-08-2009, 05:03 PM
|
Master of Puppets
|
 |
Join Date: May 2004
Location: Sweden
Posts: 5,288
|
|
Quote:
Originally Posted by 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.objecttype() != "TServerPlayer") {
return;
}
}
|
Fixed.  |
__________________
"A delayed game is eventually good, but a rushed game is forever bad." - Shigeru Miyamoto
|
|
|