Advertisement
Guest User

Untitled

a guest
May 27th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 4.10 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 = 1000;
  23.         illegal = false;
  24.         side = "civ";
  25.     };
  26.  
  27.     class pilot {
  28.         variable = "pilot";
  29.         displayName = "STR_License_Pilot";
  30.         price = 25000;
  31.         illegal = false;
  32.         side = "civ";
  33.     };
  34.  
  35.     class trucking {
  36.         variable = "trucking";
  37.         displayName = "STR_License_Truck";
  38.         price = 20000;
  39.         illegal = false;
  40.         side = "civ";
  41.     };
  42.  
  43.     class gun {
  44.         variable = "gun";
  45.         displayName = "STR_License_Firearm";
  46.         price = 10000;
  47.         illegal = false;
  48.         side = "civ";
  49.     };
  50.  
  51.     class dive {
  52.         variable = "dive";
  53.         displayName = "STR_License_Diving";
  54.         price = 2000;
  55.         illegal = false;
  56.         side = "civ";
  57.     };
  58.  
  59.     class home {
  60.         variable = "home";
  61.         displayName = "STR_License_Home";
  62.         price = 75000;
  63.         illegal = false;
  64.         side = "civ";
  65.     };
  66.  
  67.     //Processing Licenses
  68.     class oil {
  69.         variable = "oil";
  70.         displayName = "STR_License_Oil";
  71.         price = 10000;
  72.         illegal = false;
  73.         side = "civ";
  74.     };
  75.  
  76.     class diamond {
  77.         variable = "diamond";
  78.         displayName = "STR_License_Diamond";
  79.         price = 35000;
  80.         illegal = false;
  81.         side = "civ";
  82.     };
  83.  
  84.     class salt {
  85.         variable = "salt";
  86.         displayName = "STR_License_Salt";
  87.         price = 12000;
  88.         illegal = false;
  89.         side = "civ";
  90.     };
  91.  
  92.     class sand {
  93.         variable = "sand";
  94.         displayName = "STR_License_Sand";
  95.         price = 14500;
  96.         illegal = false;
  97.         side = "civ";
  98.     };
  99.  
  100.     class iron {
  101.         variable = "iron";
  102.         displayName = "STR_License_Iron";
  103.         price = 9500;
  104.         illegal = false;
  105.         side = "civ";
  106.     };
  107.  
  108.     class copper {
  109.         variable = "copper";
  110.         displayName = "STR_License_Copper";
  111.         price = 8000;
  112.         illegal = false;
  113.         side = "civ";
  114.     };
  115.  
  116.     class cement {
  117.         variable = "cement";
  118.         displayName = "STR_License_Cement";
  119.         price = 6500;
  120.         illegal = false;
  121.         side = "civ";
  122.     };
  123.  
  124.     class medmarijuana {
  125.         variable = "medmarijuana";
  126.         displayName = "STR_License_Medmarijuana";
  127.         price = 15000;
  128.         illegal = false;
  129.         side = "civ";
  130.     };
  131.  
  132.     //Illegal Licenses
  133.     class cocaine {
  134.         variable = "cocaine";
  135.         displayName = "STR_License_Cocaine";
  136.         price = 30000;
  137.         illegal = true;
  138.         side = "civ";
  139.     };
  140.  
  141.     class heroin {
  142.         variable = "heroin";
  143.         displayName = "STR_License_Heroin";
  144.         price = 25000;
  145.         illegal = true;
  146.         side = "civ";
  147.     };
  148.  
  149.     class marijuana {
  150.         variable = "marijuana";
  151.         displayName = "STR_License_Marijuana";
  152.         price = 19500;
  153.         illegal = true;
  154.         side = "civ";
  155.     };
  156.  
  157.     class rebel {
  158.         variable = "rebel";
  159.         displayName = "STR_License_Rebel";
  160.         price = 75000;
  161.         illegal = true;
  162.         side = "civ";
  163.     };
  164.  
  165.     //Cop Licenses
  166.     class cAir {
  167.         variable = "cAir";
  168.         displayName = "STR_License_Pilot";
  169.         price = 15000;
  170.         illegal = false;
  171.         side = "cop";
  172.     };
  173.  
  174.     class cg {
  175.         variable = "cg";
  176.         displayName = "STR_License_CG";
  177.         price = 8000;
  178.         illegal = false;
  179.         side = "cop";
  180.     };
  181.  
  182.     //Medic Licenses
  183.     class mAir {
  184.         variable = "mAir";
  185.         displayName = "STR_License_Pilot";
  186.         price = 15000;
  187.         illegal = false;
  188.         side = "med";
  189.     };
  190. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement