Advertisement
Guest User

Untitled

a guest
Jul 12th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.29 KB | None | 0 0
  1. 0 spawn {
  2.   tiempo = 10;
  3.    while {true} do {
  4.   tiempo = tiempo -1;
  5.     if (tiempo <= 3 ) exitWith {
  6.      hint format ["CORRE, LA BOMBA EXPLOTARÁ EN %1", tiempo];    
  7.     titleText ["", "BLACK", 3];
  8.       };
  9.    hint format ["La bomba explotará en %1", tiempo];
  10.    sleep 1;
  11.    };
  12.   };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement