Advertisement
soldierman

Raytesh

Sep 7th, 2014
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. Adding Vehicle to faction
  2.  
  3. class CfgPatches
  4. {
  5. class SAA
  6. {
  7. units[] = {};
  8. weapons[] = {};
  9. requiredVersion = 0.1;
  10. requiredAddons[] = {"Name of PBO where the vehicles you want to use are"};
  11. };
  12. };
  13.  
  14. class CfgVehicles
  15. {
  16. class Vehicle
  17. {
  18. faction = "Your_Faction";
  19. crew ="Classname of your soldier"; // I think you can specify multiple crew members using a comma , not too sure though
  20. vehicleClass = "name of the vehicle class you want it under"; // If you're using a parent class from Vanilla it should already properly group the vehicle under Air, Armor ect.
  21. };
  22. };
  23.  
  24. Adding different sub groups
  25.  
  26. class CfgVehicleClasses
  27. {
  28. class SFG // Add this under vehicleclass = ""; of the desired unit
  29. {
  30. displayName = "SFGs";
  31. };
  32. class 75th_R
  33. {
  34. displayName = "75th Rangers";
  35. };
  36. class Delta
  37. {
  38. displayName = "Delta";
  39. };
  40. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement