Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. ExileClient_gui_hud_event_onKeyUp.sqf
  2. case 0xDB: ///* Left Windows key */ change to 0xDC for /* Right Windows key */
  3. {
  4. switch (ExilePartyEspMode) do
  5. {
  6. case 0: { ExilePartyEspMode = 1; };
  7. case 1: { ExilePartyEspMode = 2; };
  8. case 2: { ExilePartyEspMode = 0; };
  9. };
  10. _stopPropagation = true;
  11. };
  12. https://community.bistudio.com/wiki/DIK_KeyCodes
  13. DIK KeyCodes
  14. Or you could just add another one below, like this
  15. case 0xDB://left windows key
  16. {
  17. switch (ExilePartyEspMode) do
  18. {
  19. case 0: { ExilePartyEspMode = 1; };
  20. case 1: { ExilePartyEspMode = 2; };
  21. case 2: { ExilePartyEspMode = 0; };
  22. };
  23. _stopPropagation = true;
  24. };
  25. case 0xDC://right windows key
  26. {
  27. switch (ExilePartyEspMode) do
  28. {
  29. case 0: { ExilePartyEspMode = 1; };
  30. case 1: { ExilePartyEspMode = 2; };
  31. case 2: { ExilePartyEspMode = 0; };
  32. };
  33. _stopPropagation = true;
  34. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement