Advertisement
Guest User

Untitled

a guest
May 20th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. /*
  2. Author: Maxence Lyon
  3. Altis DEV: https://altisdev.com/user/maxence-lyon
  4. Teamspeak 3: ts.the-programmer.com
  5. Web site: www.the-programmer.com
  6. Steam: « Une Vache Sur CS – Maxence », please leave a message on my profile who says the exact reason before adding me.
  7.  
  8. Terms of use:
  9. - This file is forbidden unless you have permission from the author. If you have this file without permission to use it please do not use it and do not share it.
  10. - If you have permission to use this file, you can use it on your server however it is strictly forbidden to share it.
  11. - Out of respect for the author please do not delete this information.
  12.  
  13. License number:
  14. Server's name:
  15. Owner's name:
  16. */
  17. #define true 1
  18. #define false 0
  19.  
  20. class Max_Settings_FuelStations {
  21. default_lang = "fr"; // fr / en
  22.  
  23. license_refuel_stations = "license_civ_pump"; // this license is required to refuel a pump [and win money :)]
  24. enable_more_fuel_consumption = true; // true/false - if you put true the vehicles will consume more fuel
  25.  
  26. class fuel_stations {
  27. class Land_FuelStation_01_pump_malevil_F { // class = classname of the fuel pump
  28. fuel_1 = 2000; // number of litter by default and maximum per fuel per pump for the item who have as class "fuel_1" (fuel types are defined below the stations)
  29. fuel_2 = 2000;
  30. fuel_3 = 2000;
  31. fuel_4 = 2000;
  32. fuel_5 = 2000;
  33. fuel_6 = 0;
  34. };
  35. class Land_FuelStation_01_pump_F {
  36. fuel_1 = 2000;
  37. fuel_2 = 2000;
  38. fuel_3 = 2000;
  39. fuel_4 = 2000;
  40. fuel_5 = 2000;
  41. fuel_6 = 0;
  42. };
  43. class Land_FuelStation_02_pump_F {
  44. fuel_1 = 2000;
  45. fuel_2 = 2000;
  46. fuel_3 = 2000;
  47. fuel_4 = 2000;
  48. fuel_5 = 2000;
  49. fuel_6 = 0;
  50. };
  51. class Land_fs_feed_F {
  52. fuel_1 = 2500;
  53. fuel_2 = 2500;
  54. fuel_3 = 0;
  55. fuel_4 = 0;
  56. fuel_5 = 2000;
  57. fuel_6 = 0;
  58. };
  59. class Land_FuelStation_Feed_F {
  60. fuel_1 = 0;
  61. fuel_2 = 0;
  62. fuel_3 = 0;
  63. fuel_4 = 0;
  64. fuel_5 = 0;
  65. fuel_6 = 10000;
  66. };
  67. };
  68.  
  69. class fuel_types {
  70. class fuel_1 {
  71. displayName = "Gazole"; // not in stringtable ! only the text
  72. item_refuel = "gazole"; // class and variable of the object (in the config_vItems) which makes it possible to fill the fuel station for this type of fuel
  73. liter_price = 15; // price per liter of fuel purchased
  74. liter_price_refuel_station = 12; // price per liter of fuel sold (when you refuel the station)
  75. liters_per_item_refuel_station = 2; // number of liters in one "item_refuel"
  76. };
  77. class fuel_2 {
  78. displayName = "Essence Sans Plomb 95";
  79. item_refuel = "sp95";
  80. liter_price = 9;
  81. liter_price_refuel_station = 6;
  82. liters_per_item_refuel_station = 2;
  83. };
  84. class fuel_3 {
  85. displayName = "Essence Sans Plomb 98";
  86. item_refuel = "sp98";
  87. liter_price = 12;
  88. liter_price_refuel_station = 9;
  89. liters_per_item_refuel_station = 2;
  90. };
  91. class fuel_4 {
  92. displayName = "Gaz de pétrole liquéfié";
  93. item_refuel = "gpl";
  94. liter_price = 11;
  95. liter_price_refuel_station = 8;
  96. liters_per_item_refuel_station = 2;
  97. };
  98. class fuel_5 {
  99. displayName = "Biocarburant";
  100. item_refuel = "bio";
  101. liter_price = 17;
  102. liter_price_refuel_station = 14;
  103. liters_per_item_refuel_station = 2;
  104. };
  105. class fuel_6 {
  106. displayName = "Kerosene";
  107. item_refuel = "kerosene";
  108. liter_price = 27;
  109. liter_price_refuel_station = 20;
  110. liters_per_item_refuel_station = 2;
  111. };
  112. };
  113. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement