Advertisement
GaspArt

Untitled

Dec 30th, 2014
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.46 KB | None | 0 0
  1. serverTraders = [
  2. "INS_Lopotev_DZ",
  3. "RU_Functionary1",
  4. "Pierce_Light",
  5. "Dixon_PMC",
  6. "TK_GUE_Warlord_EP1",
  7. "INS_Commander",
  8. "TK_Commander_EP1",
  9. "TK_INS_Soldier_EP1"
  10. ];
  11.  
  12. //buidling
  13. menu_INS_Lopotev_DZ = [[
  14.  
  15. ["Building Supplies",1010],
  16. ["Tools",1020]
  17.  
  18. ][], "neutral"];
  19. //banker
  20. menu_RU_Functionary1 = [[
  21.  
  22. ["Rare Items",1030]
  23.  
  24. ][], "neutral"];
  25. //weapons
  26. menu_Pierce_Light = [[
  27.  
  28. ["Pistols",1040],
  29. ["Shotguns",1050],
  30. ["Submachine Guns",1060],
  31. ["AK Rifles",1070],
  32. ["NATO Rifles",1080],
  33. ["Lightmachine Guns",1090],
  34. ["Sniper Rifles",1100],
  35. ["MK16/17 Rifles",1110],
  36. ["Teargas Grenades",1120]
  37. ][], "neutral"];
  38. //market
  39. menu_Dixon_PMC = [[
  40.  
  41. ["Medical Supplies",1130],
  42. ["Foods and Drinks",1140],
  43. ["Backpacks",1150],
  44. ["Clothes",1160],
  45. ["Bikes",1280],
  46. ["Cars",1290],
  47. ["Military Unarmed",1300],
  48. ["Air Vehicles",1310],
  49. ["Vehicles Parts",1320]
  50.  
  51. ][], "neutral"];
  52.  
  53. //Rebel 5000
  54. menu_TK_GUE_Warlord_EP1 = [[
  55.  
  56. ["Weapons",1180],
  57. ["Ammunition",1190],
  58. ["Clothes",1200],
  59. ["Military Vehicles",1210],
  60. ["Air Vehicles",1220]
  61.  
  62. ][], "rebel"];
  63.  
  64. //Friendly  5000
  65. menu_INS_Commander = [[
  66.  
  67. ["Weapons",1230],
  68. ["Ammunition",1240],
  69. ["Clothes",1250],
  70. ["Military Vehicles",1260],
  71. ["Air Vehicles",1270]
  72.  
  73. ][], "friendly"];
  74.  
  75.  
  76. //Hero 20000
  77. menu_TK_Commander_EP1 = [[
  78.  
  79. ["Weapons",1330],
  80. ["Military Vehicles",1340]
  81.  
  82. ][], "Hero"];
  83.  
  84. //bandit 20000
  85. menu_TK_INS_Soldier_EP1 = [[
  86.  
  87. ["Weapons",1350],
  88. ["Military Vehicles",1360]
  89.  
  90. ][], "Bandit"];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement