Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.59 KB | None | 0 0
  1. loading_started = false;
  2. loading_complete = false;
  3. loading_25 = false;
  4. loading_50 = false;
  5. loading_75 = false;
  6. loading_100 = false;
  7.  
  8. waitUntil {alive player};
  9.  
  10. StartLoadingScreen["Mission is loading", "RscLoadScreen1_CE"];
  11.  
  12. waitUntil {!loading_started && !loading_complete};
  13.  
  14.         waitUntil {loading_25};
  15.         progressLoadingScreen 0.25;
  16.  
  17.         waitUntil {loading_50};
  18.         progressLoadingScreen 0.50;
  19.  
  20.         waitUntil {loading_75};
  21.         progressLoadingScreen 0.75;
  22.  
  23.         waitUntil {loading_100};
  24.         progressLoadingScreen 1.0;
  25.  
  26.         loading_complete = true;
  27.         waitUntil {loading_complete};
  28.         endLoadingScreen;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement