Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.90 KB | None | 0 0
  1. /*
  2. * FORMAT:
  3. * STRING (Conditions) - Must return boolean :
  4. * String can contain any amount of conditions, aslong as the entire
  5. * string returns a boolean. This allows you to check any levels, licenses etc,
  6. * in any combination. For example:
  7. * "call life_coplevel && license__someLicense"
  8. * This will also let you call any other function.
  9. */
  10. class VirtualShops {
  11. //Virtual Shops
  12. class market {
  13. name = "STR_Shops_Market";
  14. side = "";
  15. conditions = "";
  16. items[] = { "waterBottle", "rabbit", "redgull", "tbacon", "storagesmall", "storagebig", "apple", "peach", "soda", "coca", "baguette", "beignet", "cake", "cake_chocolat", "chips", "croissant", "pizza"};
  17. };
  18. class marketdep {
  19. name = "STR_Shops_Market";
  20. side = "civ";
  21. conditions = "license_civ_dir";
  22. items[] = { "waterBottle", "rabbit", "fuelFull", "rabbit", "redgull", "tbacon", "lockpick", "soda", "coca", "baguette", "beignet", "cake", "cake_chocolat", "chips", "croissant", "pizza"};
  23. };
  24. class fer_market {
  25. name = "STR_Shops_MarketF";
  26. side = "";
  27. conditions = "";
  28. items[] = { "graine_tournesol", "graine_fraisier", "graine_ble", "graine_mais","tournesol", "fraisier", "ble", "mais" };
  29. };
  30. class med_market {
  31. name = "STR_Shops_Market";
  32. side = "med";
  33. conditions = "";
  34. items[] = { "waterBottle", "rabbit", "redgull", "tbacon", "defibrillator", "soda", "coca", "baguette", "beignet", "cake", "cake_chocolat", "chips", "croissant", "pizza" };
  35. };
  36.  
  37. class wongs {
  38. name = "STR_Shops_Wongs";
  39. side = "";
  40. conditions = "";
  41. items[] = { "turtle_soup", "turtle_raw" };
  42. };
  43.  
  44. class coffee {
  45. name = "STR_Shops_Coffee";
  46. side = "";
  47. conditions = "";
  48. items[] = { "coffee", "donuts" };
  49. };
  50.  
  51. class f_station_coffee {
  52. name = "STR_Shop_Station_Coffee";
  53. side = "";
  54. conditions = "";
  55. items[] = { "coffee", "donuts", "redgull"};
  56. };
  57.  
  58. class gerard {
  59. name = "STR_Shops_Gerard";
  60. side = "";
  61. conditions = "";
  62. items[] = { "cocaine_processed", "heroin_processed", "marijuana" };
  63. };
  64.  
  65. class oil {
  66. name = "STR_Shops_Oil";
  67. side = "";
  68. conditions = "";
  69. items[] = { "oil_processed" };
  70. };
  71. class bijoux {
  72. name = "STR_Shops_bijoux";
  73. side = "";
  74. conditions = "";
  75. items[] = { "bijouxTer" };
  76. };
  77. class alcool {
  78. name = "STR_Shops_alcool";
  79. side = "";
  80. conditions = "";
  81. items[] = { "rhum", "whisky", "biere", "blanc", "rouge", "champagne" };
  82. };
  83. class marchenoir {
  84. name = "STR_Shops_marchenoir";
  85. side = "";
  86. conditions = "";
  87. items[] = { "graine_cocaine", "graine_cannabis", "arrosoir", "desherbant", "graine_heroine" };
  88. };
  89. class charbon {
  90. name = "STR_Shops_charbon";
  91. side = "";
  92. conditions = "";
  93. items[] = { "charbon" };
  94. };
  95.  
  96. class fishmarket {
  97. name = "STR_Shops_FishMarket";
  98. side = "";
  99. conditions = "";
  100. items[] = { "salema_raw", "salema", "ornate_raw", "ornate", "mackerel_raw", "mackerel", "tuna_raw", "tuna", "mullet_raw", "mullet", "catshark_raw", "catshark" };
  101. };
  102.  
  103. class saphir {
  104. name = "STR_MAR_Saphir_Trader";
  105. side = "";
  106. conditions = "";
  107. items[] = { "saphyrr" };
  108. };
  109. class ruby {
  110. name = "STR_MAR_ruby_Trader";
  111. side = "";
  112. conditions = "";
  113. items[] = { "ruby" };
  114. };
  115. class iron {
  116. name = "STR_Shops_Minerals";
  117. side = "";
  118. conditions = "";
  119. items[] = { "iron_refined"};
  120. };
  121.  
  122. class cuivre {
  123. name = "STR_Shops_Cuivre";
  124. side = "";
  125. conditions = "";
  126. items[] = {"copper_refined" };
  127. };
  128. class sucre {
  129. name = "STR_Shops_sucre";
  130. side = "";
  131. conditions = "";
  132. items[] = { "sucre" };
  133. };
  134. class planche {
  135. name = "STR_Shops_planche";
  136. side = "";
  137. conditions = "";
  138. items[] = { "planche", "bois" };
  139. };
  140. class meuble {
  141. name = "STR_Shops_meuble";
  142. side = "";
  143. conditions = "";
  144. items[] = { "meuble" };
  145. };
  146. class diamond {
  147. name = "STR_Shops_Diamond";
  148. side = "";
  149. conditions = "";
  150. items[] = { "diamond_cut" };
  151. };
  152. class obsi {
  153. name = "STR_Shops_obsi";
  154. side = "";
  155. conditions = "";
  156. items[] = { "obsi" };
  157. };
  158.  
  159. class cement {
  160. name = "STR_Shops_Cement";
  161. side = "";
  162. conditions = "";
  163. items[] = { "cement" };
  164. };
  165. class gold {
  166. name = "STR_Shops_Gold";
  167. side = "";
  168. conditions = "";
  169. items[] = { "OrTaille" };
  170. };
  171.  
  172. class cop {
  173. name = "STR_Shops_Cop";
  174. side = "cop";
  175. conditions = "";
  176. items[] = { "donuts", "coffee", "speedcam ", "waterBottle", "rabbit", "redgull", "spikeStrip", "fuelFull", "Alcootest", "Test_drugs", "defusekit" };
  177. };
  178. };
  179.  
  180. /*
  181. * CLASS:
  182. * variable = Variable Name
  183. * displayName = Item Name
  184. * weight = Item Weight
  185. * buyPrice = Item Buy Price
  186. * sellPrice = Item Sell Price
  187. * illegal = Illegal Item
  188. * edible = Item Edible (-1 = Disabled)
  189. * icon = Item Icon
  190. * processedItem = Processed Item
  191. */
  192. class VirtualItems {
  193. //Virtual Items
  194.  
  195. //Misc
  196. class pickaxe {
  197. variable = "pickaxe";
  198. displayName = "STR_Item_Pickaxe";
  199. weight = 2;
  200. buyPrice = 750;
  201. sellPrice = -1;
  202. illegal = false;
  203. edible = -1;
  204. icon = "icons\ico_pickaxe.paa";
  205. };
  206.  
  207. class arrosoir {
  208. variable = "arrosoir";
  209. displayName = "STR_Item_arrosoir";
  210. weight = 2;
  211. buyPrice = 59;
  212. sellPrice = -1;
  213. illegal = true;
  214. edible = -1;
  215. icon = "icons\ico_arrosoir.paa";
  216. };
  217. class desherbant {
  218. variable = "desherbant";
  219. displayName = "STR_Item_desherbant";
  220. weight = 1;
  221. buyPrice = 80;
  222. sellPrice = -1;
  223. illegal = true;
  224. edible = -1;
  225. icon = "icons\coca.paa";
  226. };
  227. class graine_cocaine {
  228. variable = "graine_cocaine";
  229. displayName = "STR_Item_graine_cocaine";
  230. weight = 2;
  231. buyPrice = 750;
  232. sellPrice = -1;
  233. illegal = true;
  234. edible = -1;
  235. icon = "icons\graines_coca.paa";
  236. };
  237. class graine_cannabis {
  238. variable = "graine_cannabis";
  239. displayName = "STR_Item_graine_cannabis";
  240. weight = 2;
  241. buyPrice = 900;
  242. sellPrice = -1;
  243. illegal = true;
  244. edible = -1;
  245. icon = "icons\graines_canabis.paa";
  246. };
  247. class graine_heroine {
  248. variable = "graine_heroine";
  249. displayName = "STR_Item_graine_heroine";
  250. weight = 2;
  251. buyPrice = 1000;
  252. sellPrice = -1;
  253. illegal = true;
  254. edible = -1;
  255. icon = "icons\graine_pavot.paa";
  256. };
  257. class graine_mais {
  258. variable = "graine_mais";
  259. displayName = "STR_Item_graine_mais";
  260. weight = 2;
  261. buyPrice = 15;
  262. sellPrice = -1;
  263. illegal = false;
  264. edible = -1;
  265. icon = "icons\graine_mais.paa";
  266. };
  267. class mais {
  268. variable = "mais";
  269. displayName = "STR_Item_mais";
  270. weight = 1;
  271. buyPrice = -1;
  272. sellPrice = -1;
  273. illegal = false;
  274. edible = -1;
  275. icon = "icons\mais.paa";
  276. };
  277. class graine_ble {
  278. variable = "graine_ble";
  279. displayName = "STR_Item_graine_ble";
  280. weight = 2;
  281. buyPrice = 10;
  282. sellPrice = -1;
  283. illegal = false;
  284. edible = -1;
  285. icon = "icons\graine_ble.paa";
  286. };
  287. class ble {
  288. variable = "ble";
  289. displayName = "STR_Item_ble";
  290. weight = 1;
  291. buyPrice = -1;
  292. sellPrice = -1;
  293. illegal = false;
  294. edible = -1;
  295. icon = "icons\ble.paa";
  296. };
  297. class graine_fraisier {
  298. variable = "graine_fraisier";
  299. displayName = "STR_Item_graine_fraisier";
  300. weight = 2;
  301. buyPrice = 10;
  302. sellPrice = -1;
  303. illegal = false;
  304. edible = -1;
  305. icon = "icons\graines_fraise.paa";
  306. };
  307. class fraisier {
  308. variable = "fraisier";
  309. displayName = "STR_Item_fraisier";
  310. weight = 1;
  311. buyPrice = -1;
  312. sellPrice = -1;
  313. illegal = false;
  314. edible = -1;
  315. icon = "icons\mais.paa";
  316. };
  317. class graine_tournesol {
  318. variable = "graine_tournesol";
  319. displayName = "STR_Item_graine_tournesol";
  320. weight = 2;
  321. buyPrice = 10;
  322. sellPrice = -1;
  323. illegal = false;
  324. edible = -1;
  325. icon = "icons\graine_mais.paa";
  326. };
  327. class tournesol {
  328. variable = "tournesol";
  329. displayName = "STR_Item_tournesol";
  330. weight = 1;
  331. buyPrice = -1;
  332. sellPrice = 52;
  333. illegal = false;
  334. edible = -1;
  335. icon = "icons\mais.paa";
  336. };
  337. class defibrillator {
  338. variable = "defibrillator";
  339. displayName = "STR_Item_Defibrillator";
  340. weight = 4;
  341. buyPrice = 900;
  342. sellPrice = 450;
  343. illegal = false;
  344. edible = -1;
  345. icon = "icons\ico_defibrillator.paa";
  346. };
  347.  
  348. class toolkit {
  349. variable = "toolkit";
  350. displayName = "STR_Item_Toolkit";
  351. weight = 4;
  352. buyPrice = 2000;
  353. sellPrice = 100;
  354. illegal = false;
  355. edible = -1;
  356. icon = "\a3\weapons_f\items\data\UI\gear_toolkit_ca.paa";
  357. };
  358.  
  359. class fuelEmpty {
  360. variable = "fuelEmpty";
  361. displayName = "STR_Item_FuelE";
  362. weight = 2;
  363. buyPrice = -1;
  364. sellPrice = 10;
  365. illegal = false;
  366. edible = -1;
  367. icon = "icons\ico_fuelEmpty.paa";
  368. };
  369. class speedcam {
  370. variable = "speedcam";
  371. displayName = "STR_Item_speedcam";
  372. weight = 2;
  373. buyPrice = 50;
  374. sellPrice = 10;
  375. illegal = false;
  376. edible = -1;
  377. icon = "icons\chargeur.paa";
  378. };
  379. class Test_drugs {
  380. variable = "Test_drugs";
  381. displayName = "STR_Item_Test_drugs";
  382. weight = 2;
  383. buyPrice = 50;
  384. sellPrice = 10;
  385. illegal = false;
  386. edible = -1;
  387. icon = "icons\adn.paa";
  388. };
  389. class Alcootest {
  390. variable = "Alcootest";
  391. displayName = "STR_Item_Alcootest";
  392. weight = 2;
  393. buyPrice = 50;
  394. sellPrice = 10;
  395. illegal = false;
  396. edible = -1;
  397. icon = "icons\alcool_test.paa";
  398. };
  399. class fuelFull {
  400. variable = "fuelFull";
  401. displayName = "STR_Item_FuelF";
  402. weight = 5;
  403. buyPrice = 850;
  404. sellPrice = 500;
  405. illegal = false;
  406. edible = -1;
  407. icon = "icons\ico_fuel.paa";
  408. };
  409.  
  410. class spikeStrip {
  411. variable = "spikeStrip";
  412. displayName = "STR_Item_SpikeStrip";
  413. weight = 15;
  414. buyPrice = 250;
  415. sellPrice = -1;
  416. illegal = true;
  417. edible = -1;
  418. icon = "icons\ico_spikeStrip.paa";
  419. };
  420. class lockpick {
  421. variable = "lockpick";
  422. displayName = "STR_Item_Lockpick";
  423. weight = 1;
  424. buyPrice = 75;
  425. sellPrice = -1;
  426. illegal = true;
  427. edible = -1;
  428. icon = "icons\ico_lockpick.paa";
  429. };
  430. class Orbrute {
  431. variable = "Orbrute";
  432. displayName = "STR_Item_Orbrute";
  433. weight = 7;
  434. buyPrice = -1;
  435. sellPrice = -1;
  436. illegal = false;
  437. edible = -1;
  438. icon = "icons\ico_goldBar.paa";
  439. };
  440. class OrTaille {
  441. variable = "OrTaille";
  442. displayName = "STR_Item_Gold";
  443. weight = 5;
  444. buyPrice = -1;
  445. sellPrice = -1;
  446. illegal = false;
  447. edible = -1;
  448. icon = "icons\ico_goldBar.paa";
  449. };
  450. class saphyrt {
  451. variable = "saphyrt";
  452. displayName = "STR_Item_saphyrt";
  453. weight = 4;
  454. buyPrice = -1;
  455. sellPrice = -1;
  456. illegal = false;
  457. edible = -1;
  458. icon = "icons\saphirr.paa";
  459. };
  460. class saphyrr {
  461. variable = "saphyrr";
  462. displayName = "STR_Item_saphyrr";
  463. weight = 3;
  464. buyPrice = -1;
  465. sellPrice = -1;
  466. illegal = false;
  467. edible = -1;
  468. icon = "icons\saphir.paa";
  469. };
  470. class blastingcharge {
  471. variable = "blastingCharge";
  472. displayName = "STR_Item_BCharge";
  473. weight = 15;
  474. buyPrice = 35000;
  475. sellPrice = 10000;
  476. illegal = true;
  477. edible = -1;
  478. icon = "icons\ico_blastingCharge.paa";
  479. };
  480.  
  481. class boltcutter {
  482. variable = "boltCutter";
  483. displayName = "STR_Item_BCutter";
  484. weight = 5;
  485. buyPrice = 7500;
  486. sellPrice = 1000;
  487. illegal = true;
  488. edible = -1;
  489. icon = "icons\ico_boltCutter.paa";
  490. };
  491.  
  492. class defusekit {
  493. variable = "defuseKit";
  494. displayName = "STR_Item_DefuseKit";
  495. weight = 2;
  496. buyPrice = 2500;
  497. sellPrice = 2000;
  498. illegal = true;
  499. edible = -1;
  500. icon = "icons\ico_defuseKit.paa";
  501. };
  502.  
  503. class storagesmall {
  504. variable = "storageSmall";
  505. displayName = "STR_Item_StorageBS";
  506. weight = 5;
  507. buyPrice = 75000;
  508. sellPrice = 50000;
  509. illegal = false;
  510. edible = -1;
  511. icon = "icons\ico_storageSmall.paa";
  512. };
  513.  
  514. class storagebig {
  515. variable = "storageBig";
  516. displayName = "STR_Item_StorageBL";
  517. weight = 10;
  518. buyPrice = 150000;
  519. sellPrice = 125000;
  520. illegal = false;
  521. edible = -1;
  522. icon = "icons\ico_storageBig.paa";
  523. };
  524.  
  525. //Mined Items
  526. class oil_unprocessed {
  527. variable = "oilUnprocessed";
  528. displayName = "STR_Item_OilU";
  529. weight = 5;
  530. buyPrice = -1;
  531. sellPrice = -1;
  532. illegal = false;
  533. edible = -1;
  534. icon = "icons\ico_oilUnprocessed.paa";
  535. };
  536. class bijoux {
  537. variable = "bijoux";
  538. displayName = "STR_Item_bijoux";
  539. weight = 4;
  540. buyPrice = -1;
  541. sellPrice = -1;
  542. illegal = false;
  543. edible = -1;
  544. icon = "";
  545. };
  546. class bijouxTer {
  547. variable = "bijouxTer";
  548. displayName = "STR_Item_bijouxTer";
  549. weight = 4;
  550. buyPrice = -1;
  551. sellPrice = -1;
  552. illegal = false;
  553. edible = -1;
  554. icon = "";
  555. };
  556. class oil_processed {
  557. variable = "oilProcessed";
  558. displayName = "STR_Item_OilP";
  559. weight = 4;
  560. buyPrice = -1;
  561. sellPrice = -1;
  562. illegal = false;
  563. edible = -1;
  564. icon = "icons\ico_oilProcessed.paa";
  565. };
  566. class charbonb {
  567. variable = "charbonb";
  568. displayName = "STR_Item_charbonb";
  569. weight = 5;
  570. buyPrice = -1;
  571. sellPrice = -1;
  572. illegal = false;
  573. edible = -1;
  574. icon = "icons\charbon.paa";
  575. };
  576.  
  577. class charbon {
  578. variable = "charbon";
  579. displayName = "STR_Item_charbon";
  580. weight = 4;
  581. buyPrice = -1;
  582. sellPrice = -1;
  583. illegal = false;
  584. edible = -1;
  585. icon = "icons\charbon.paa";
  586. };
  587. class sucre {
  588. variable = "sucre";
  589. displayName = "STR_Item_sucre";
  590. weight = 3;
  591. buyPrice = -1;
  592. sellPrice = -1;
  593. illegal = false;
  594. edible = -1;
  595. icon = "icons\sugar.paa";
  596. };
  597. class copper_unrefined {
  598. variable = "copperUnrefined";
  599. displayName = "STR_Item_CopperOre";
  600. weight = 4;
  601. buyPrice = -1;
  602. sellPrice = -1;
  603. illegal = false;
  604. edible = -1;
  605. icon = "icons\ico_copperOre.paa";
  606. };
  607.  
  608. class copper_refined {
  609. variable = "copperRefined";
  610. displayName = "STR_Item_CopperIngot";
  611. weight = 3;
  612. buyPrice = -1;
  613. sellPrice = -1;
  614. illegal = false;
  615. edible = -1;
  616. icon = "icons\ico_copper.paa";
  617. };
  618.  
  619. class iron_unrefined {
  620. variable = "ironUnrefined";
  621. displayName = "STR_Item_IronOre";
  622. weight = 4;
  623. buyPrice = -1;
  624. sellPrice = -1;
  625. illegal = false;
  626. edible = -1;
  627. icon = "icons\ico_ironOre.paa";
  628. };
  629.  
  630. class iron_refined {
  631. variable = "ironRefined";
  632. displayName = "STR_Item_IronIngot";
  633. weight = 3;
  634. buyPrice = -1;
  635. sellPrice = -1;
  636. illegal = false;
  637. edible = -1;
  638. icon = "icons\ico_iron.paa";
  639. };
  640.  
  641. class salt_unrefined {
  642. variable = "saltUnrefined";
  643. displayName = "STR_Item_Salt";
  644. weight = 3;
  645. buyPrice = -1;
  646. sellPrice = -1;
  647. illegal = false;
  648. edible = -1;
  649. icon = "icons\ico_saltUnprocessed.paa";
  650. };
  651.  
  652. class salt_refined {
  653. variable = "saltRefined";
  654. displayName = "STR_Item_SaltR";
  655. weight = 1;
  656. buyPrice = -1;
  657. sellPrice = -1;
  658. illegal = false;
  659. edible = -1;
  660. icon = "icons\ico_saltProcessed.paa";
  661. };
  662.  
  663. class sand {
  664. variable = "sand";
  665. displayName = "STR_Item_Sand";
  666. weight = 3;
  667. buyPrice = -1;
  668. sellPrice = -1;
  669. illegal = false;
  670. edible = -1;
  671. icon = "icons\ico_sand.paa";
  672. };
  673.  
  674. class boutielle {
  675. variable = "boutielle";
  676. displayName = "STR_Item_boutielle";
  677. weight = 1;
  678. buyPrice = -1;
  679. sellPrice = -1;
  680. illegal = false;
  681. edible = -1;
  682. icon = "icons\bouteillevide.paa";
  683. };
  684. class bois {
  685. variable = "bois";
  686. displayName = "STR_Item_bois";
  687. weight = 3;
  688. buyPrice = -1;
  689. sellPrice = -1;
  690. illegal = false;
  691. edible = -1;
  692. icon = "icons\tas_bois.paa";
  693. };
  694.  
  695. class meuble {
  696. variable = "meuble";
  697. displayName = "STR_Item_meuble";
  698. weight = 3;
  699. buyPrice = -1;
  700. sellPrice = -1;
  701. illegal = false;
  702. edible = -1;
  703. icon = "icons\planche.paa";
  704. };
  705. class planche {
  706. variable = "planche";
  707. displayName = "STR_Item_planche";
  708. weight = 2;
  709. buyPrice = -1;
  710. sellPrice = -1;
  711. illegal = false;
  712. edible = -1;
  713. icon = "icons\planche.paa";
  714. };
  715. class diamond_uncut {
  716. variable = "diamondUncut";
  717. displayName = "STR_Item_DiamondU";
  718. weight = 5;
  719. buyPrice = -1;
  720. sellPrice = -1;
  721. illegal = false;
  722. edible = -1;
  723. icon = "icons\ico_diamondUncut.paa";
  724. };
  725.  
  726. class diamond_cut {
  727. variable = "diamondCut";
  728. displayName = "STR_Item_DiamondC";
  729. weight = 3;
  730. buyPrice = -1;
  731. sellPrice = -1;
  732. illegal = false;
  733. edible = -1;
  734. icon = "icons\ico_diamondCut.paa";
  735. };
  736.  
  737. class obsil {
  738. variable = "obsil";
  739. displayName = "STR_Item_obsil";
  740. weight = 4;
  741. buyPrice = -1;
  742. sellPrice = -1;
  743. illegal = false;
  744. edible = -1;
  745. icon = "";
  746. };
  747.  
  748. class obsi {
  749. variable = "obsi";
  750. displayName = "STR_Item_obsi";
  751. weight = 3;
  752. buyPrice = -1;
  753. sellPrice = -1;
  754. illegal = false;
  755. edible = -1;
  756. icon = "";
  757. };
  758. class rubyb {
  759. variable = "rubyb";
  760. displayName = "STR_Item_rubyb";
  761. weight = 4;
  762. buyPrice = -1;
  763. sellPrice = -1;
  764. illegal = false;
  765. edible = -1;
  766. icon = "icons\rubyr.paa";
  767. };
  768.  
  769. class ruby {
  770. variable = "ruby";
  771. displayName = "STR_Item_ruby";
  772. weight = 4;
  773. buyPrice = -1;
  774. sellPrice = -1;
  775. illegal = false;
  776. edible = -1;
  777. icon = "icons\ruby.paa";
  778. };
  779. class rock {
  780. variable = "rock";
  781. displayName = "STR_Item_Rock";
  782. weight = 5;
  783. buyPrice = -1;
  784. sellPrice = -1;
  785. illegal = false;
  786. edible = -1;
  787. icon = "icons\ico_rock.paa";
  788. };
  789.  
  790. class cement {
  791. variable = "cement";
  792. displayName = "STR_Item_CementBag";
  793. weight = 4;
  794. buyPrice = -1;
  795. sellPrice = -1;
  796. illegal = false;
  797. edible = -1;
  798. icon = "icons\ico_cement.paa";
  799. };
  800. class kerosene {
  801. variable = "kerosene";
  802. displayName = "STR_Item_kerosene";
  803. weight = 1;
  804. buyPrice = -1;
  805. sellPrice = -1;
  806. illegal = false;
  807. edible = -1;
  808. icon = "The-Programmer\FuelStations\textures\Kerozene.paa";
  809. };
  810. class bio {
  811. variable = "bio";
  812. displayName = "STR_Item_bio";
  813. weight = 1;
  814. buyPrice = -1;
  815. sellPrice = -1;
  816. illegal = false;
  817. edible = -1;
  818. icon = "The-Programmer\FuelStations\textures\Essence_Bio.paa";
  819. };
  820. class gpl {
  821. variable = "gpl";
  822. displayName = "STR_Item_gpl";
  823. weight = 1;
  824. buyPrice = -1;
  825. sellPrice = -1;
  826. illegal = false;
  827. edible = -1;
  828. icon = "The-Programmer\FuelStations\textures\gpl.paa";
  829. };
  830. class sp98 {
  831. variable = "sp98";
  832. displayName = "STR_Item_sp98";
  833. weight = 1;
  834. buyPrice = -1;
  835. sellPrice = -1;
  836. illegal = false;
  837. edible = -1;
  838. icon = "The-Programmer\FuelStations\textures\SP98.paa";
  839. };
  840. class sp95 {
  841. variable = "sp95";
  842. displayName = "STR_Item_sp95";
  843. weight = 1;
  844. buyPrice = -1;
  845. sellPrice = -1;
  846. illegal = false;
  847. edible = -1;
  848. icon = "The-Programmer\FuelStations\textures\SP95.paa";
  849. };
  850. class gazole {
  851. variable = "gazole";
  852. displayName = "STR_Item_gazole";
  853. weight = 1;
  854. buyPrice = -1;
  855. sellPrice = -1;
  856. illegal = false;
  857. edible = -1;
  858. icon = "The-Programmer\FuelStations\textures\Gazole.paa";
  859. };
  860.  
  861. //Drugs
  862. class heroin_unprocessed {
  863. variable = "heroinUnprocessed";
  864. displayName = "STR_Item_HeroinU";
  865. weight = 5;
  866. buyPrice = -1;
  867. sellPrice = -1;
  868. illegal = true;
  869. edible = -1;
  870. icon = "icons\ico_heroinUnprocessed.paa";
  871. processedItem = "heroin_processed";
  872. };
  873.  
  874. class heroin_processed {
  875. variable = "heroinProcessed";
  876. displayName = "STR_Item_HeroinP";
  877. weight = 4;
  878. buyPrice = -1;
  879. sellPrice = -1;
  880. illegal = true;
  881. edible = -1;
  882. icon = "icons\ico_heroinProcessed.paa";
  883. };
  884.  
  885. class cannabis {
  886. variable = "cannabis";
  887. displayName = "STR_Item_Cannabis";
  888. weight = 4;
  889. buyPrice = -1;
  890. sellPrice = -1;
  891. illegal = true;
  892. edible = -1;
  893. icon = "icons\ico_cannabis.paa";
  894. processedItem = "marijuana";
  895. };
  896.  
  897. class marijuana {
  898. variable = "marijuana";
  899. displayName = "STR_Item_Marijuana";
  900. weight = 3;
  901. buyPrice = -1;
  902. sellPrice = -1;
  903. illegal = true;
  904. edible = -1;
  905. icon = "icons\ico_marijuana.paa";
  906. };
  907.  
  908. class cocaine_unprocessed {
  909. variable = "cocaineUnprocessed";
  910. displayName = "STR_Item_CocaineU";
  911. weight = 5;
  912. buyPrice = -1;
  913. sellPrice = -1;
  914. illegal = true;
  915. edible = -1;
  916. icon = "icons\ico_cocaineUnprocessed.paa";
  917. };
  918.  
  919. class cocaine_processed {
  920. variable = "cocaineProcessed";
  921. displayName = "STR_Item_CocaineP";
  922. weight = 4;
  923. buyPrice = -1;
  924. sellPrice = -1;
  925. illegal = true;
  926. edible = -1;
  927. icon = "icons\ico_cocaineProcessed.paa";
  928. };
  929.  
  930. //Drink
  931. class redgull {
  932. variable = "redgull";
  933. displayName = "STR_Item_RedGull";
  934. weight = 1;
  935. buyPrice = 1500;
  936. sellPrice = 200;
  937. illegal = false;
  938. edible = 100;
  939. icon = "icons\ico_redgull.paa";
  940. };
  941.  
  942. class coffee {
  943. variable = "coffee";
  944. displayName = "STR_Item_Coffee";
  945. weight = 1;
  946. buyPrice = 10;
  947. sellPrice = 5;
  948. illegal = false;
  949. edible = 100;
  950. icon = "icons\ico_coffee.paa";
  951. };
  952.  
  953. class waterBottle {
  954. variable = "waterBottle";
  955. displayName = "STR_Item_WaterBottle";
  956. weight = 1;
  957. buyPrice = 10;
  958. sellPrice = 5;
  959. illegal = false;
  960. edible = 100;
  961. icon = "icons\ico_waterBottle.paa";
  962. };
  963. class pizza {
  964. variable = "pizza";
  965. displayName = "STR_Item_pizza";
  966. weight = 1;
  967. buyPrice = 8;
  968. sellPrice = 4;
  969. illegal = false;
  970. edible = 50;
  971. icon = "icons\pizza.paa";
  972. };
  973. class croissant {
  974. variable = "croissant";
  975. displayName = "STR_Item_croissant";
  976. weight = 1;
  977. buyPrice = 21;
  978. sellPrice = 5;
  979. illegal = false;
  980. edible = 50;
  981. icon = "icons\cooked_croissant.paa";
  982. };
  983. class chips {
  984. variable = "chips";
  985. displayName = "STR_Item_chips";
  986. weight = 1;
  987. buyPrice = 21;
  988. sellPrice = 5;
  989. illegal = false;
  990. edible = 50;
  991. icon = "icons\chips.paa";
  992. };
  993. class cake_chocolat {
  994. variable = "cake_chocolat";
  995. displayName = "STR_Item_cake_chocolat";
  996. weight = 1;
  997. buyPrice = 21;
  998. sellPrice = 5;
  999. illegal = false;
  1000. edible = 50;
  1001. icon = "icons\cake_chocolate.paa";
  1002. };
  1003. class cake {
  1004. variable = "cake";
  1005. displayName = "STR_Item_cake";
  1006. weight = 1;
  1007. buyPrice = 10;
  1008. sellPrice = 5;
  1009. illegal = false;
  1010. edible = 50;
  1011. icon = "icons\cake.paa";
  1012. };
  1013. class beignet {
  1014. variable = "beignet";
  1015. displayName = "STR_Item_beignet";
  1016. weight = 1;
  1017. buyPrice = 5;
  1018. sellPrice = 2;
  1019. illegal = false;
  1020. edible = 50;
  1021. icon = "icons\beignet.paa";
  1022. };
  1023. class baguette {
  1024. variable = "baguette";
  1025. displayName = "STR_Item_baguette";
  1026. weight = 1;
  1027. buyPrice = 8;
  1028. sellPrice = 5;
  1029. illegal = false;
  1030. edible = 50;
  1031. icon = "icons\baguette.paa";
  1032. };
  1033. class champagne {
  1034. variable = "champagne";
  1035. displayName = "STR_Item_champagne";
  1036. weight = 1;
  1037. buyPrice = -1;
  1038. sellPrice = 54;
  1039. illegal = false;
  1040. edible = 50;
  1041. icon = "icons\wine_pinked.paa";
  1042. };
  1043. class rouge {
  1044. variable = "rouge";
  1045. displayName = "STR_Item_rouge";
  1046. weight = 1;
  1047. buyPrice = 21;
  1048. sellPrice = 5;
  1049. illegal = false;
  1050. edible = 50;
  1051. icon = "icons\wine_red.paa";
  1052. };
  1053. class blanc {
  1054. variable = "blanc";
  1055. displayName = "STR_Item_blanc";
  1056. weight = 1;
  1057. buyPrice = 18;
  1058. sellPrice = 5;
  1059. illegal = false;
  1060. edible = 50;
  1061. icon = "icons\wine_white.paa";
  1062. };
  1063. class whisky {
  1064. variable = "whisky";
  1065. displayName = "STR_Item_whisky";
  1066. weight = 1;
  1067. buyPrice = 19;
  1068. sellPrice = 5;
  1069. illegal = false;
  1070. edible = 70;
  1071. icon = "icons\Whisky.paa";
  1072. };
  1073. class soda {
  1074. variable = "soda";
  1075. displayName = "STR_Item_soda";
  1076. weight = 1;
  1077. buyPrice = 6;
  1078. sellPrice = 3;
  1079. illegal = false;
  1080. edible = 40;
  1081. icon = "icons\soda.paa";
  1082. };
  1083. class rhum {
  1084. variable = "rhum";
  1085. displayName = "STR_Item_rhum";
  1086. weight = 1;
  1087. buyPrice = 15;
  1088. sellPrice = 5;
  1089. illegal = false;
  1090. edible = 80;
  1091. icon = "icons\rhum.paa";
  1092. };
  1093. class coca {
  1094. variable = "coca";
  1095. displayName = "STR_Item_coca";
  1096. weight = 1;
  1097. buyPrice = 10;
  1098. sellPrice = 5;
  1099. illegal = false;
  1100. edible = 80;
  1101. icon = "icons\soda.paa";
  1102. };
  1103. class biere {
  1104. variable = "biere";
  1105. displayName = "STR_Item_biere";
  1106. weight = 1;
  1107. buyPrice = 8;
  1108. sellPrice = 2;
  1109. illegal = false;
  1110. edible = 50;
  1111. icon = "icons\beer.paa";
  1112. };
  1113.  
  1114. //Food
  1115. class apple {
  1116. variable = "apple";
  1117. displayName = "STR_Item_Apple";
  1118. weight = 2;
  1119. buyPrice = 20;
  1120. sellPrice = -1;
  1121. illegal = false;
  1122. edible = 10;
  1123. icon = "icons\banana.paa";
  1124. };
  1125.  
  1126. class peach {
  1127. variable = "peach";
  1128. displayName = "STR_Item_Peach";
  1129. weight = 2;
  1130. buyPrice = 30;
  1131. sellPrice = -1;
  1132. illegal = false;
  1133. edible = 10;
  1134. icon = "icons\sugar_cane.paa";
  1135. };
  1136.  
  1137. class tbacon {
  1138. variable = "tbacon";
  1139. displayName = "STR_Item_TBacon";
  1140. weight = 1;
  1141. buyPrice = 75;
  1142. sellPrice = 25;
  1143. illegal = false;
  1144. edible = 40;
  1145. icon = "icons\ico_tBacon.paa";
  1146. };
  1147.  
  1148. class donuts {
  1149. variable = "donuts";
  1150. displayName = "STR_Item_Donuts";
  1151. weight = 1;
  1152. buyPrice = 120;
  1153. sellPrice = 60;
  1154. illegal = false;
  1155. edible = 30;
  1156. icon = "icons\ico_donuts.paa";
  1157. };
  1158.  
  1159. class rabbit_raw {
  1160. variable = "rabbitRaw";
  1161. displayName = "STR_Item_RabbitRaw";
  1162. weight = 2;
  1163. buyPrice = -1;
  1164. sellPrice = 95;
  1165. illegal = false;
  1166. edible = -1;
  1167. icon = "icons\ico_rabbitRaw.paa";
  1168. };
  1169.  
  1170. class rabbit {
  1171. variable = "rabbit";
  1172. displayName = "STR_Item_Rabbit";
  1173. weight = 1;
  1174. buyPrice = 150;
  1175. sellPrice = 115;
  1176. illegal = false;
  1177. edible = 20;
  1178. icon = "icons\ico_rabbit.paa";
  1179. };
  1180.  
  1181. class salema_raw {
  1182. variable = "salemaRaw";
  1183. displayName = "STR_Item_SalemaRaw";
  1184. weight = 2;
  1185. buyPrice = -1;
  1186. sellPrice = -1;
  1187. illegal = false;
  1188. edible = -1;
  1189. icon = "icons\ico_salemaRaw.paa";
  1190. };
  1191.  
  1192. class salema {
  1193. variable = "salema";
  1194. displayName = "STR_Item_Salema";
  1195. weight = 1;
  1196. buyPrice = 75;
  1197. sellPrice = -1;
  1198. illegal = false;
  1199. edible = 30;
  1200. icon = "icons\ico_cookedFish.paa";
  1201. };
  1202.  
  1203. class ornate_raw {
  1204. variable = "ornateRaw";
  1205. displayName = "STR_Item_OrnateRaw";
  1206. weight = 2;
  1207. buyPrice = -1;
  1208. sellPrice = -1;
  1209. illegal = false;
  1210. edible = -1;
  1211. icon = "icons\ico_ornateRaw.paa";
  1212. };
  1213.  
  1214. class ornate {
  1215. variable = "ornate";
  1216. displayName = "STR_Item_Ornate";
  1217. weight = 1;
  1218. buyPrice = 175;
  1219. sellPrice = -1;
  1220. illegal = false;
  1221. edible = 25;
  1222. icon = "icons\ico_cookedFish.paa";
  1223. };
  1224.  
  1225. class mackerel_raw {
  1226. variable = "mackerelRaw";
  1227. displayName = "STR_Item_MackerelRaw";
  1228. weight = 4;
  1229. buyPrice = -1;
  1230. sellPrice = -1;
  1231. illegal = false;
  1232. edible = -1;
  1233. icon = "icons\ico_mackerelRaw.paa";
  1234. };
  1235.  
  1236. class mackerel {
  1237. variable = "mackerel";
  1238. displayName = "STR_Item_Mackerel";
  1239. weight = 2;
  1240. buyPrice = 250;
  1241. sellPrice = -1;
  1242. illegal = false;
  1243. edible = 30;
  1244. icon = "icons\ico_cookedFish.paa";
  1245. };
  1246.  
  1247. class tuna_raw {
  1248. variable = "tunaRaw";
  1249. displayName = "STR_Item_TunaRaw";
  1250. weight = 6;
  1251. buyPrice = -1;
  1252. sellPrice = -1;
  1253. illegal = false;
  1254. edible = -1;
  1255. icon = "icons\ico_tunaRaw.paa";
  1256. };
  1257.  
  1258. class tuna {
  1259. variable = "tuna";
  1260. displayName = "STR_Item_Tuna";
  1261. weight = 3;
  1262. buyPrice = 1250;
  1263. sellPrice = -1;
  1264. illegal = false;
  1265. edible = 100;
  1266. icon = "icons\ico_cookedFish.paa";
  1267. };
  1268.  
  1269. class mullet_raw {
  1270. variable = "mulletRaw";
  1271. displayName = "STR_Item_MulletRaw";
  1272. weight = 4;
  1273. buyPrice = -1;
  1274. sellPrice = -1;
  1275. illegal = false;
  1276. edible = -1;
  1277. icon = "icons\ico_mulletRaw.paa";
  1278. };
  1279.  
  1280. class mullet {
  1281. variable = "mullet";
  1282. displayName = "STR_Item_Mullet";
  1283. weight = 2;
  1284. buyPrice = 600;
  1285. sellPrice = -1;
  1286. illegal = false;
  1287. edible = 80;
  1288. icon = "icons\ico_cookedFish.paa";
  1289. };
  1290.  
  1291. class catshark_raw {
  1292. variable = "catsharkRaw";
  1293. displayName = "STR_Item_CatSharkRaw";
  1294. weight = 6;
  1295. buyPrice = -1;
  1296. sellPrice = -1;
  1297. illegal = false;
  1298. edible = -1;
  1299. icon = "icons\ico_catsharkRaw.paa";
  1300. };
  1301.  
  1302. class catshark {
  1303. variable = "catshark";
  1304. displayName = "STR_Item_CatShark";
  1305. weight = 3;
  1306. buyPrice = 750;
  1307. sellPrice = -1;
  1308. illegal = false;
  1309. edible = 100;
  1310. icon = "icons\ico_cookedFish.paa";
  1311. };
  1312.  
  1313. class turtle_raw {
  1314. variable = "turtleRaw";
  1315. displayName = "STR_Item_TurtleRaw";
  1316. weight = 6;
  1317. buyPrice = -1;
  1318. sellPrice = -1;
  1319. illegal = true;
  1320. edible = -1;
  1321. icon = "icons\ico_turtleRaw.paa";
  1322. };
  1323.  
  1324. class turtle_soup {
  1325. variable = "turtleSoup";
  1326. displayName = "STR_Item_TurtleSoup";
  1327. weight = 2;
  1328. buyPrice = 1000;
  1329. sellPrice = -1;
  1330. illegal = false;
  1331. edible = 100;
  1332. icon = "icons\ico_turtleSoup.paa";
  1333. };
  1334.  
  1335. class hen_raw {
  1336. variable = "henRaw";
  1337. displayName = "STR_Item_HenRaw";
  1338. weight = 1;
  1339. buyPrice = -1;
  1340. sellPrice = -1;
  1341. illegal = false;
  1342. edible = -1;
  1343. icon = "icons\ico_wholeChickenRaw.paa";
  1344. };
  1345.  
  1346. class hen {
  1347. variable = "hen";
  1348. displayName = "STR_Item_Hen";
  1349. weight = 1;
  1350. buyPrice = 115;
  1351. sellPrice = -1;
  1352. illegal = false;
  1353. edible = 65;
  1354. icon = "icons\ico_wholeChicken.paa";
  1355. };
  1356.  
  1357. class rooster_raw {
  1358. variable = "roosterRaw";
  1359. displayName = "STR_Item_RoosterRaw";
  1360. weight = 1;
  1361. buyPrice = -1;
  1362. sellPrice = -1;
  1363. illegal = false;
  1364. edible = -1;
  1365. icon = "icons\ico_chickenDrumstickRaw.paa";
  1366. };
  1367.  
  1368. class rooster {
  1369. variable = "rooster";
  1370. displayName = "STR_Item_Rooster";
  1371. weight = 115;
  1372. buyPrice = 90;
  1373. sellPrice = -1;
  1374. illegal = false;
  1375. edible = 45;
  1376. icon = "icons\ico_chickenDrumstick.paa";
  1377. };
  1378.  
  1379. class sheep_raw {
  1380. variable = "sheepRaw";
  1381. displayName = "STR_Item_SheepRaw";
  1382. weight = 2;
  1383. buyPrice = -1;
  1384. sellPrice = -1;
  1385. illegal = false;
  1386. edible = -1;
  1387. icon = "icons\ico_lambChopRaw.paa";
  1388. };
  1389.  
  1390. class sheep {
  1391. variable = "sheep";
  1392. displayName = "STR_Item_Sheep";
  1393. weight = 2;
  1394. buyPrice = 155;
  1395. sellPrice = -1;
  1396. illegal = false;
  1397. edible = 100;
  1398. icon = "icons\ico_lambChop.paa";
  1399. };
  1400.  
  1401. class goat_raw {
  1402. variable = "goatRaw";
  1403. displayName = "STR_Item_GoatRaw";
  1404. weight = 2;
  1405. buyPrice = -1;
  1406. sellPrice = -1;
  1407. illegal = false;
  1408. edible = -1;
  1409. icon = "icons\ico_muttonLegRaw.paa";
  1410. };
  1411.  
  1412. class goat {
  1413. variable = "goat";
  1414. displayName = "STR_Item_Goat";
  1415. weight = 2;
  1416. buyPrice = 175;
  1417. sellPrice = -1;
  1418. illegal = false;
  1419. edible = 100;
  1420. icon = "icons\ico_muttonLeg.paa";
  1421. };
  1422. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement