Advertisement
CapryCorn

Untitled

Dec 2nd, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. class cfgPatches
  2. {
  3. class My_Mod_Config
  4. {
  5. author = "CapryCorn";
  6. units[] = {Huron_Armed, Huron_UA};
  7. weapons[] = {};
  8. requiredVersion = 0.1;
  9. requiredAddons[] = {};
  10. };
  11. };
  12.  
  13. class cfgVehicles
  14. {
  15. class B_Heli_Transport_03_F;
  16. class B_Heli_Transport_03_unarmed_F;
  17.  
  18. class Huron_Armed: B_Heli_Transport_03_F
  19. {
  20. author = "CapryCorn";
  21. _generalMacro = "Huron_Armed";
  22. scope = 2;
  23. scopeCurator = 2;
  24. faction = "Custom_Faction";
  25. displayName = "Custom Huron";
  26. crew = "B_crew_F";
  27. typicalCargo[] = {"B_crew_F", "B_crew_F", "B_crew_F", "B_crew_F"};
  28. };
  29.  
  30. class Huron_UA: B_Heli_Transport_03_unarmed_F
  31. {
  32. author = "CapryCorn";
  33. _generalMacro = "Huron_UA";
  34. scope = 2;
  35. scopeCurator = 2;
  36. faction = "Custom_Faction";
  37. displayName = "Custom Huron (UA)";
  38. crew = "B_crew_F";
  39. typicalCargo[] = {"B_crew_F", "B_crew_F", "B_crew_F", "B_crew_F"};
  40. };
  41. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement