Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. class CfgPatches {
  2. class Mod_Parachute {
  3. author = "Frost";
  4. requiredAddons[] = {};
  5. requiredVersion = 0.1;
  6. units[] = {"MyParachuteCanopy","MyParachuteBackpack"};
  7. weapons[] = {};
  8. };
  9. };
  10. class CfgVehicles {
  11. class Steerable_Parachute_F;
  12. class B_Parachute;
  13. // Vehicles ----------------------------------------------------------------------
  14. class MyParachuteCanopy: Steerable_Parachute_F {
  15. author = "Frost";
  16. _generalMacro = "MyParachuteCanopy";
  17. scope = 1;
  18. displayName = "My Parachute Canopy";
  19. model = "\Mod\parachuteCanopy.p3d";
  20. hiddenSelections[] = {"camo"};
  21. hiddenSelectionsTextures[] = {"Mod\data\parachute_co.paa"};
  22. };
  23. // Backpacks ------------------------------------------------------------------
  24. class MyParachuteBackpack: B_Parachute {
  25. author = "Frost";
  26. _generalMacro = "MyParachuteBackpack";
  27. displayName = "My Parachute Backpack";
  28. model = "\Mod\parachuteBackpack.p3d";
  29. ParachuteClass = "MyParachuteCanopy";
  30. descriptionShort = "Parachute Backpack";
  31. picture = "\Mod\ui\parapack.paa";
  32. editorPreview = "\Mod\ui\para_preview.jpg";
  33. };
  34. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement