can i set a timed messages
BO2 Modding Support & Discussion
2
Posts
2
Posters
125
Views
-
is there a code to set a message on a timer so like after the welcome massage it says do this after that is do it says do that
-
You can thread a function containing a
for(;;)loop and awaitstatement.timedMessage() { level endon("game_ended"); for(;;) { allClientsPrint("This is a message printed to all players."); wait 45; } }Call the function like
level thread timedMessage();ininit().