Advertisement
Guest User

Untitled

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