Advertisement
Guest User

Untitled

a guest
May 4th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1. class Licenses {
  2. class driver {
  3. variable = "driver";
  4. displayName = "STR_License_Driver";
  5. price = 5000;
  6. illegal = false;
  7. side = "civ";
  8. };
  9.  
  10. class boat {
  11. variable = "boat";
  12. displayName = "STR_License_Boat";
  13. price = 7500;
  14. illegal = false;
  15. side = "civ";
  16. };
  17.  
  18. class pilot {
  19. variable = "pilot";
  20. displayName = "STR_License_Pilot";
  21. price = 30000;
  22. illegal = false;
  23. side = "civ";
  24. };
  25.  
  26. class trucking {
  27. variable = "trucking";
  28. displayName = "STR_License_Truck";
  29. price = 10000;
  30. illegal = false;
  31. side = "civ";
  32. };
  33.  
  34. class gun {
  35. variable = "gun";
  36. displayName = "STR_License_Firearm";
  37. price = 9000;
  38. illegal = false;
  39. side = "civ";
  40. };
  41.  
  42. class home {
  43. variable = "home";
  44. displayName = "STR_License_Home";
  45. price = 75000;
  46. illegal = false;
  47. side = "civ";
  48. };
  49.  
  50. //Processing Licenses
  51. class oil {
  52. variable = "oil";
  53. displayName = "STR_License_Oil";
  54. price = 10000;
  55. illegal = false;
  56. side = "civ";
  57. };
  58.  
  59. class diamond {
  60. variable = "diamond";
  61. displayName = "STR_License_Diamond";
  62. price = 35000;
  63. illegal = false;
  64. side = "civ";
  65. };
  66.  
  67. class salt {
  68. variable = "salt";
  69. displayName = "STR_License_Salt";
  70. price = 12000;
  71. illegal = false;
  72. side = "civ";
  73. };
  74.  
  75. class sand {
  76. variable = "sand";
  77. displayName = "STR_License_Sand";
  78. price = 14500;
  79. illegal = false;
  80. side = "civ";
  81. };
  82.  
  83. class iron {
  84. variable = "iron";
  85. displayName = "STR_License_Iron";
  86. price = 9500;
  87. illegal = false;
  88. side = "civ";
  89. };
  90.  
  91. class copper {
  92. variable = "copper";
  93. displayName = "STR_License_Copper";
  94. price = 8000;
  95. illegal = false;
  96. side = "civ";
  97. };
  98.  
  99. class cement {
  100. variable = "cement";
  101. displayName = "STR_License_Cement";
  102. price = 6500;
  103. illegal = false;
  104. side = "civ";
  105. };
  106.  
  107. class medmarijuana {
  108. variable = "medmarijuana";
  109. displayName = "STR_License_Medmarijuana";
  110. price = 15000;
  111. illegal = false;
  112. side = "civ";
  113. };
  114.  
  115. //Illegal Licenses
  116. class cocaine {
  117. variable = "cocaine";
  118. displayName = "STR_License_Cocaine";
  119. price = 30000;
  120. illegal = true;
  121. side = "civ";
  122. };
  123.  
  124. class heroin {
  125. variable = "heroin";
  126. displayName = "STR_License_Heroin";
  127. price = 25000;
  128. illegal = true;
  129. side = "civ";
  130. };
  131.  
  132. class marijuana {
  133. variable = "marijuana";
  134. displayName = "STR_License_Marijuana";
  135. price = 19500;
  136. illegal = true;
  137. side = "civ";
  138. };
  139.  
  140. class rebel {
  141. variable = "rebel";
  142. displayName = "STR_License_Rebel";
  143. price = 100000;
  144. illegal = true;
  145. side = "civ";
  146. };
  147.  
  148. //Cop Licenses
  149. class cAir {
  150. variable = "cAir";
  151. displayName = "STR_License_Pilot";
  152. price = 5;
  153. illegal = false;
  154. side = "cop";
  155. };
  156.  
  157. class cg {
  158. variable = "cg";
  159. displayName = "STR_License_CG";
  160. price = 5;
  161. illegal = false;
  162. side = "cop";
  163. };
  164.  
  165. //Medic Licenses
  166. class mAir {
  167. variable = "mAir";
  168. displayName = "STR_License_Pilot";
  169. price = 5;
  170. illegal = false;
  171. side = "med";
  172. };
  173. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement