Advertisement
Doodles_Inc

GSC script attempt to stop a loop

Sep 16th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.28 KB | None | 0 0
  1. function vehicleStart ()
  2. {
  3.     iSuckAtScripting = 1;
  4.     while( iSuckAtScripting < 2 )
  5.     {
  6.         level flag::wait_till( "zona_5_enter" );
  7.         level flag::wait_till( "zona_3B_enter" );
  8.         level thread move_vehicle();
  9.         iSuckAtScripting++;
  10.         wait(5);
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement