For example, which function is called when it says "Zapk is the last man standing!".
I need to know so I can make the lava disappear for my rising lava Game Mode, it would make it a lot better.
There's a variable you make when you start a minigame
new scriptObject(YourMiniMini)
{
class = miniGameSO;
brickDamage = true;
brickRespawnTime = 10000;
colorIdx = -1;
enableBuilding = true;
enablePainting = true;
enableWand = true;
fallingDamage = true;
inviteOnly = false;
points_plantBrick = 0;
points_breakBrick = 0;
points_die = 0;
points_killPlayer = 0;
points_killSelf = 0;
playerDatablock = playerNoJet;
respawnTime = 5; // <=====
So, if you have respawntime set to -1 or 0, you will have last man standing mode, if you set it to 1 or higher you will prettymuch respawn instantly with no respawntime, i use 5 and still respawn instantly.