game.current_round
Type: NumberThis value indicates the current round. The first round is 0.
Example
global.number[0] = game.round_limit global.number[0] -= 1 if game.current_round == global.number[0] then -- -- This is the final round! -- end
This value indicates the current round. The first round is 0.
global.number[0] = game.round_limit global.number[0] -= 1 if game.current_round == global.number[0] then -- -- This is the final round! -- end