Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. #include "..\script_macros.hpp"
  2. /*
  3. File: fn_initCop.sqf
  4. Author: Bryan "Tonic" Boardwine
  5.  
  6. Description:
  7. Initializes the medic..
  8. */
  9. waitUntil {!(isNull (findDisplay 46))};
  10. player addRating 99999999;
  11.  
  12. if ((FETCH_CONST(life_copLevel)) < 1 && (FETCH_CONST(life_adminlevel) isEqualTo 0)) exitWith {
  13. ["Notwhitelisted",false,true] call BIS_fnc_endMission;
  14. sleep 35;
  15. };
  16.  
  17. life_is_alive = true;
  18.  
  19. [] call life_fnc_spawnMenu;
  20. waitUntil{!isNull (findDisplay 38500)}; //Wait for the spawn selection to be open.
  21. waitUntil{isNull (findDisplay 38500)}; //Wait for the spawn selection to be done.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement