Blockland Forums > Modification Help
Stopping latejoiners
cucumberdude:
I stuck this at the bottom of the TDM code
--- Code: ---//ADDED TO STOP LATEJOINERS
function GameMode_TDM_onAddMember(%mini,%client)
{
%client.player.kill();
messageClient(%client, '', "\c6You will spawn next round!");
}
--- End code ---
It ain't workin'
Any ideas?
Greek2me:
Try adding a schedule to the killing.
cucumberdude:
mmk will do
coo
cucumberdude:
Still doesn't work.
Tom:
Is onAddMember an existing callback?