Quote:
Originally Posted by Schetti
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.