Advertisement
Guest User

Untitled

a guest
Jun 24th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.51 KB | None | 0 0
  1. /*
  2. * class:
  3. * variable = Variable Name
  4. * displayName = License Name
  5. * price = License Price
  6. * illegal = Illegal License
  7. * side = side indicator
  8. */
  9. class Licenses {
  10. //Civilian Licenses
  11. class driver {
  12. variable = "driver";
  13. displayName = "STR_License_Driver";
  14. price = 500;
  15. illegal = false;
  16. side = "civ";
  17. };
  18.  
  19. class boat {
  20. variable = "boat";
  21. displayName = "STR_License_Boat";
  22. price = 2500;
  23. illegal = false;
  24. side = "civ";
  25. };
  26.  
  27. class pilot {
  28. variable = "pilot";
  29. displayName = "STR_License_Pilot";
  30. price = 250000;
  31. illegal = false;
  32. side = "civ";
  33. };
  34.  
  35. class trucking {
  36. variable = "trucking";
  37. displayName = "STR_License_Truck";
  38. price = 25000;
  39. illegal = false;
  40. side = "civ";
  41. };
  42.  
  43. class gun {
  44. variable = "gun";
  45. displayName = "STR_License_Firearm";
  46. price = 5000;
  47. illegal = false;
  48. side = "civ";
  49. };
  50.  
  51. class dive {
  52. variable = "dive";
  53. displayName = "STR_License_Diving";
  54. price = 1000;
  55. illegal = false;
  56. side = "civ";
  57. };
  58. class medic {
  59. variable = "medic";
  60. displayName = "STR_License_EMS";
  61. price = 1000;
  62. illegal = false;
  63. side = "ems";
  64. };
  65.  
  66. class home {
  67. variable = "home";
  68. displayName = "STR_License_Home";
  69. price = 750000;
  70. illegal = false;
  71. side = "civ";
  72. };
  73.  
  74. //Processing Licenses
  75. class oil {
  76. variable = "oil";
  77. displayName = "STR_License_Oil";
  78. price = 5000;
  79. illegal = false;
  80. side = "civ";
  81. };
  82.  
  83. class gasoline {
  84. variable = "gasoline";
  85. displayName = "STR_License_gasoline";
  86. price = 5000;
  87. illegal = false;
  88. side = "civ";
  89. };
  90. class crudeOil {
  91. variable = "crudeOil";
  92. displayName = "STR_License_crudeOil";
  93. price = 5000;
  94. illegal = false;
  95. side = "civ";
  96. };
  97.  
  98. class diamond {
  99. variable = "diamond";
  100. displayName = "STR_License_Diamond";
  101. price = 7500;
  102. illegal = false;
  103. side = "civ";
  104. };
  105.  
  106. class blooddiamond {
  107. variable = "blooddiamond";
  108. displayName = "STR_License_BloodDiamond";
  109. price = 37500;
  110. illegal = true;
  111. side = "civ";
  112. };
  113.  
  114. class salt {
  115. variable = "salt";
  116. displayName = "STR_License_Salt";
  117. price = 6000;
  118. illegal = false;
  119. side = "civ";
  120. };
  121.  
  122. class sand {
  123. variable = "sand";
  124. displayName = "STR_License_Sand";
  125. price = 6000;
  126. illegal = false;
  127. side = "civ";
  128. };
  129.  
  130. class iron {
  131. variable = "iron";
  132. displayName = "STR_License_Iron";
  133. price = 2500;
  134. illegal = false;
  135. side = "civ";
  136. };
  137.  
  138. class copper {
  139. variable = "copper";
  140. displayName = "STR_License_Copper";
  141. price = 2500;
  142. illegal = false;
  143. side = "civ";
  144. };
  145.  
  146. class cement {
  147. variable = "cement";
  148. displayName = "STR_License_Cement";
  149. price = 2500;
  150. illegal = false;
  151. side = "civ";
  152. };
  153.  
  154. class medmarijuana {
  155. variable = "medmarijuana";
  156. displayName = "STR_License_Medmarijuana";
  157. price = 7500;
  158. illegal = false;
  159. side = "civ";
  160. };
  161.  
  162. //Illegal Licenses
  163. class cocaine {
  164. variable = "cocaine";
  165. displayName = "STR_License_Cocaine";
  166. price = 10000;
  167. illegal = true;
  168. side = "civ";
  169. };
  170.  
  171. class heroin {
  172. variable = "heroin";
  173. displayName = "STR_License_Heroin";
  174. price = 10000;
  175. illegal = true;
  176. side = "civ";
  177. };
  178.  
  179. class marijuana {
  180. variable = "marijuana";
  181. displayName = "STR_License_Marijuana";
  182. price = 7500;
  183. illegal = true;
  184. side = "civ";
  185. };
  186.  
  187. class rebel {
  188. variable = "rebel";
  189. displayName = "STR_License_Rebel";
  190. price = 137500;
  191. illegal = true;
  192. side = "civ";
  193. };
  194.  
  195. class Moonshine {
  196. variable = "Moonshine";
  197. displayName = "STR_License_Moonshine";
  198. price = 7500;
  199. illegal = true;
  200. side = "civ";
  201. };
  202.  
  203. class uranium {
  204. variable = "Uranium";
  205. displayName = "STR_License_Uranium";
  206. price = 37500;
  207. illegal = true;
  208. side = "civ";
  209. };
  210.  
  211. class Vodka {
  212. variable = "Vodka";
  213. displayName = "STR_License_Vodka";
  214. price = 5000;
  215. illegal = false;
  216. side = "civ";
  217. };
  218.  
  219. //Cop Licenses
  220. class cAir {
  221. variable = "cAir";
  222. displayName = "STR_License_Pilot";
  223. price = 7500;
  224. illegal = false;
  225. side = "cop";
  226. };
  227.  
  228. class cg {
  229. variable = "cg";
  230. displayName = "STR_License_CG";
  231. price = 4000;
  232. illegal = false;
  233. side = "cop";
  234. };
  235.  
  236. class cMarksman {
  237. variable = "cMarksman";
  238. displayName = "STR_License_Marksman";
  239. price = 125000;
  240. illegal = false;
  241. side = "cop";
  242. };
  243.  
  244. //Medic Licenses
  245. class mAir {
  246. variable = "mAir";
  247. displayName = "STR_License_Pilot";
  248. price = 7500;
  249. illegal = false;
  250. side = "med";
  251. };
  252. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement