Advertisement
Guest User

Untitled

a guest
Jul 12th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.61 KB | None | 0 0
  1.     Maraton=1;
  2.     MaratonActivo= false;
  3.    
  4.     if (Maraton isEqualTo 1 && !(MaratonActivo)) exitWith {
  5.     hint "Prueba1";
  6.     MaratonActivo= true;
  7.     Maraton = 0;
  8.     hint "Hora de correr cabron.";
  9.       0 spawn {
  10.            player setAnimSpeedCoef 1.45;
  11.            titleText ["Maratón Activado", "PLAIN", 5];
  12.                sleep 20;
  13.                player setAnimSpeedCoef 1;
  14.             titleText ["Maratón Desactivado", "PLAIN", 3];
  15.             hint "Te has cansado, a tomar redbulls.";
  16.             titleText ["", "BLACK IN", 0];
  17.           sleep 180;
  18.           Maraton = 1;
  19.           MaratonActivo= false;
  20.        
  21.     };
  22. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement