View Single Post
  #15  
Old 04-11-2009, 05:14 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
Quote:
Originally Posted by Schetti View Post
good idea, but isnt that serverside too?
Animations are replaced by default when the player logs in.

The trigger (for the blue flag) will work fine when they logout.

And just remove the weapon when they log in.

PHP Code:
function onPlayerLogout(pl) {
  if (
pl.account == BlueFlag.owner) {
    
BlueFlag.trigger("DropFlag");
  }

something like that will accomplish the flag dropping.
__________________
Reply With Quote