Advertisement
soldierman

Custom Group

Sep 7th, 2014
5,462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. class CfgGroups
  2. {
  3. class EAST
  4. {
  5. name = "OPFOR"; // Name of Faction Side
  6. side = 0; // 0 = Opfor , 1 = Blufor , 2 = Indep , I think
  7. class Army //Faction Class name
  8. {
  9. name = "OPFOR Army"; //Faction Name
  10. class Infantry
  11. {
  12. name = "Infantry"; //Name of Sub Group - Infantry , SpecOps , Support , Motorized , Mechanized, Armored
  13. class RifleSquad
  14. {
  15. name = "Rifle Squad"; //Name of Group
  16. faction = "Your_Faction"; //Faction
  17. side = 0; //Side
  18. class Unit0
  19. {
  20. side = 0;
  21. vehicle = "SquadLeader"; //Class name of desired solider
  22. rank = "SERGEANT"; // Rank
  23. position[] = {0,5,0}; //Position in the formation
  24. };
  25. class Unit1
  26. {
  27. side = 0;
  28. vehicle = "Grenadier";
  29. rank = "CORPORAL";
  30. position[] = {3,0,0};
  31. };
  32. class Unit2
  33. {
  34. side = 0;
  35. vehicle = "MachineGunner";
  36. rank = "PRIVATE";
  37. position[] = {5,0,0};
  38. };
  39. };
  40. };
  41. class Mechanized
  42. {
  43. name = "Mechanized Squad";
  44. class MechInfSquad
  45. {
  46. name = "Mechanized Infantry Squad";
  47. side = 0;
  48. faction = "Army";
  49. class Unit0
  50. {
  51. side = 1;
  52. vehicle = "Name of Vehicle or Soldier";
  53. rank = "SERGEANT";
  54. position[] = {0,0,0};
  55. };
  56. class Unit1
  57. {
  58. side = 1;
  59. vehicle = "Name of Vehicle or Soldier";
  60. rank = "SERGEANT";
  61. position[] = {5,0,0};
  62. };
  63. };
  64. }:
  65. };
  66. };
  67. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement