Advertisement
Guest User

Untitled

a guest
May 26th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. Minutos = 900;
  2. publicvariable "Minutos";
  3. Minutosd = true;
  4. publicvariable "Minutosd";
  5.  
  6. waitUntil {!isnil "Minutos"};
  7.  
  8. while {(Minutosd) && (Minutos > 0)} do {
  9.  
  10. [{hintSilent parsetext format ["<br /><t align='center' color='#FF0000' size='1.3' font='TahomaB' >%1</t><br />",[((Minutos)/60)+.01,"HH:MM"] call BIS_fnc_timetostring];},"BIS_fnc_spawn",TRUE,FALSE] spawn BIS_fnc_MP;
  11.  
  12. Minutos = Minutos - 1;
  13. publicvariable "Minutos";
  14. sleep 1;
  15.  
  16. };
  17. Minutos = 0;
  18. true;
  19.  
  20. waituntil {(Minutosd) && (Minutos == 0)};
  21. // Script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement