user_action.hpp 1001 B

12345678910111213141516171819202122232425262728293031323334353637
  1. class ThrusterEngage
  2. {
  3. displayName = "";
  4. displayNameDefault = "";
  5. textToolTip = "";
  6. position = "pilotview";
  7. radius = 20;
  8. priority = 0;
  9. onlyForPlayer = 1;
  10. condition = "((player == driver this) AND (alive this))";
  11. statement = "this execVM ""\RD501_Main\functions\impulse\fnc_impulseIncrease.sqf""";
  12. shortcut="User19"
  13. };
  14. class ThrusterDisengage: ThrusterEngage
  15. {
  16. priority = 0;
  17. displayName = "";
  18. displayNameDefault = "";
  19. textToolTip = "";
  20. condition = "((player == driver this) AND (alive this))";
  21. statement = "this execVM ""\RD501_Main\functions\impulse\fnc_impulseDecrease.sqf""";
  22. shortcut="User20"
  23. };
  24. class afterburnerMk1_turn_on{};
  25. class afterburnerMk1_turn_off{};
  26. class rampOpen: rampOpen
  27. {
  28. condition="(this animationphase 'ramp' == 0) AND (alive this) AND (player in [gunner this, driver this])";
  29. };
  30. class rampClose: rampClose
  31. {
  32. condition="(this animationphase 'ramp' == 1) AND (alive this) AND (player in [gunner this, driver this])";
  33. };