Checking when the game ends?
-
Is it possible to check when the game ends so I can send some messages during the last few seconds after everyone dies? Im quite new to modding.
-
S3VDITOwrote on Jun 3, 2020, 12:49 PM last edited by S3VDITO Jun 6, 2020, 9:32 AM
// Variant 1 level.OnNotify("game_ended", fun(args) { // magic }); // Variant 2 level.OnNotify("game_over", fun(args) { // magic }); // Variant 3 level.OnNotify("block_notifies", fun(args) { // magic });
2/2