Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.53 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_25};
  13. progressLoadingScreen 0.25;
  14.  
  15. waitUntil {loading_50};
  16. progressLoadingScreen 0.50;
  17.  
  18. waitUntil {loading_75};
  19. progressLoadingScreen 0.75;
  20.  
  21. waitUntil {loading_100};
  22. progressLoadingScreen 1.0;
  23.  
  24. //loading_complete = true;
  25. waitUntil {loading_complete};
  26. endLoadingScreen;
  27.  
  28. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement