Advertisement
Guest User

Untitled

a guest
May 29th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. keyHandler = {
  2. _ctrl = _this select 0;
  3. _code = _this select 1;
  4. _shift = _this select 2;
  5. _ctrlKey = _this select 3;
  6. _alt = _this select 4;
  7. _speed = speed cursorTarget;
  8. _handled = false;
  9.  
  10. _mapKey = actionKeys "ShowMap" select 0;
  11.  
  12.  
  13. switch (_code) do
  14. {
  15. case _mapKey:
  16. {
  17. if(!visibleMap) then {
  18. [] spawn life_fnc_copMarkers;
  19. };
  20. };
  21. };
  22. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement