Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. /* TAKI ARMY */
  2. class SIDE_OPFOR_TKArmy {
  3. /*
  4. This side is going to be used for the Enemy Faction "FactionTypeOPF"
  5. */
  6. displayName = "Taskistani Army";
  7. displayLongName = "Takistani Armed Forces";
  8. displayColour = "ColorOpfor";
  9. side = 0; // 0:EAST
  10.  
  11. /*
  12. Class Groups supports the creation of predefined groups to quickly call when configuring tasks
  13. */
  14. class Groups {
  15. /*
  16. Each group has a set of classnames for the units in them. They can be as large as needed.
  17. */
  18. class PatolGrpAt {
  19. classNames[] = {"LOP_TKA_Infantry_TL","LOP_TKA_Infantry_SL","LOP_TKA_Infantry_Corpsman","LOP_TKA_Infantry_AT","LOP_TKA_Infantry_AT","LOP_TKA_Infantry_GL","LOP_TKA_Infantry_Rifleman","LOP_TKA_Infantry_AT","LOP_TKA_Infantry_Rifleman"};
  20. };
  21. class PatolGrpRfl {
  22. classNames[] = {"LOP_TKA_Infantry_TL","LOP_TKA_Infantry_SL","LOP_TKA_Infantry_Corpsman","LOP_TKA_Infantry_Marksman","LOP_TKA_Infantry_AT","LOP_TKA_Infantry_Rifleman","LOP_TKA_Infantry_GL","LOP_TKA_Infantry_MG","LOP_TKA_Infantry_Rifleman"};
  23. };
  24. class PatolGrpSpt {
  25. classNames[] = {"LOP_TKA_Infantry_TL","LOP_TKA_Infantry_SL","LOP_TKA_Infantry_Corpsman","LOP_TKA_Infantry_AT","LOP_TKA_Infantry_MG","LOP_TKA_Infantry_MG","LOP_TKA_Infantry_Rifleman","LOP_TKA_Infantry_Rifleman","LOP_TKA_Infantry_Marksman"};
  26. };
  27.  
  28. class DefenceGrp_1 {
  29. classNames[] = {"LOP_TKA_Infantry_SL","LOP_TKA_Infantry_Rifleman","LOP_TKA_Infantry_Rifleman_3","LOP_TKA_Infantry_MG"};
  30. };
  31. class DefenceGrp_2 {
  32. classNames[] = {"LOP_TKA_Infantry_SL","LOP_TKA_Infantry_Rifleman","LOP_TKA_Infantry_MG","LOP_TKA_Infantry_Corpsman","LOP_TKA_Infantry_AT"};
  33. };
  34. class DefenceGrp_3 {
  35. classNames[] = {"LOP_TKA_Infantry_SL","LOP_TKA_Infantry_Rifleman","LOP_TKA_Infantry_MG","LOP_TKA_Infantry_GL","LOP_TKA_Infantry_Rifleman"};
  36. };
  37. };
  38. /*
  39. Class Vehicles defines categories of vehicles to create.
  40. Unlike Groups, only one classname from the array is selected to create.
  41. */
  42. class Vehicles {
  43. /*
  44. As With Groups, classnames are placed in an array
  45. */
  46. class tankEarly {
  47. classNames[] = {"LOP_TKA_T34"};
  48. };
  49. class tankMid {
  50. classNames[] = {"LOP_TKA_T55"};
  51. };
  52. class tankLate {
  53. classNames[] = {"LOP_TKA_T72BA"};
  54. };
  55.  
  56. class apcBTR {
  57. classNames[] = {"LOP_TKA_BTR60"};
  58. };
  59.  
  60. class apcBMP {
  61. classNames[] = {"LOP_TKA_BMP2"};
  62. };
  63.  
  64. class mobileAA {
  65. classNames[] = {"LOP_TKA_ZSU234"};
  66. };
  67.  
  68. class mi8Atk {
  69. classNames[] = {"LOP_TKA_Mi8MTV3_UPK23"};
  70. };
  71. class mi8Cgo {
  72. classNames[] = {"LOP_TKA_Mi8MT_Cargo"};
  73. };
  74. };
  75. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement