common.hpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. faction = macro_cis_faction
  2. editorSubcategory = macro_editor_cat_air(CIS_heli)
  3. vehicleClass = macro_editor_vehicle_type_air(CIS)
  4. airBrakeFrictionCoef = 80.4;
  5. class EventHandlers{};
  6. class UserActions
  7. {
  8. class ThrusterEngage
  9. {
  10. condition = "(!(this getvariable [""impulsorStatus"",false]) AND (player == driver this) AND (alive this) AND (speed this >50) )";
  11. displayName = "<t color='#4C9900'>[Impulsor On]</t>";
  12. displayNameDefault = "<t color='#4C9900'>[Impulsor On]</t>";
  13. onlyForPlayer = 0;
  14. position = "pilotview";
  15. priority = 1e+008;
  16. radius = 6;
  17. statement = "this execVM ""\SW_Droides_2\DroidGunship\initTE.sqf""";
  18. textToolTip = "<t color='#4C9900'>[Impulsor On]</t>";
  19. userActionID = 64;
  20. };
  21. class ThrusterDisngage : ThrusterEngage
  22. {
  23. condition = "((this getvariable [""impulsorStatus"",false]) AND (player == driver this) AND (alive this))";
  24. displayName = "<t color='#FF9933'>[RepulsorBrake On]</t>";
  25. displayNameDefault = "<t color='#FF9933'>[RepulsorBrake On]</t>";
  26. onlyForPlayer = 0;
  27. position = "pilotview";
  28. priority = 1e+008;
  29. radius = 6;
  30. statement = "this execVM ""\SW_Droides_2\DroidGunship\initTD.sqf""";
  31. textToolTip = "<t color='#FF9933'>[RepulsorBrake On]</t>";
  32. userActionID = 65;
  33. };
  34. };