function GameMode_TDM_onAddMember(%mini,%client)
{
// If our join time is after 10 seconds. Correct the property name.
if(%mini.PSEUDO_ROUND_START_TIME - $sim::time > 10)
{
// I don't know this property name, either.
%client.TDM_Lives = 0;
messageClient(%client, '', "\c5Round in Progress!\nPlease Wait", 3);
if(isObject(%client.player))
{
%client.player.delete();
%client.setControlObject(%client.camera);
}
}
}
This is pseudocode. Do not use it directly. I hope you can figure what to plug in.