Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.16 KB | None | 0 0
  1. /*
  2. * Format:
  3. * level: ARRAY (This is for limiting items to certain things)
  4. * 0: Variable to read from
  5. * 1: Variable Value Type (SCALAR / BOOL / EQUAL)
  6. * 2: What to compare to (-1 = Check Disabled)
  7. * 3: Custom exit message (Optional)
  8. */
  9. class VirtualShops {
  10. //Virtual Shops
  11. class market {
  12. name = "STR_Shops_Market";
  13. side = "civ";
  14. license = "";
  15. level[] = { "", "", -1, "" };
  16. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "pickaxe", "fuelFull", "peach", "boltcutter", "storagesmall", "storagebig", "rabbit_raw", "hen_raw", "rooster_raw", "sheep_raw", "goat_raw" };
  17. };
  18.  
  19. class rebel {
  20. name = "STR_Shops_Rebel";
  21. side = "civ";
  22. license = "rebel";
  23. level[] = { "", "", -1, "" };
  24. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "pickaxe", "fuelFull", "peach", "boltcutter", "blastingcharge" };
  25. };
  26.  
  27. class gang {
  28. name = "STR_Shops_Gang";
  29. side = "civ";
  30. license = "";
  31. level[] = { "", "", -1, "" };
  32. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "pickaxe", "fuelFull", "peach", "boltcutter", "blastingcharge" };
  33. };
  34.  
  35. class wongs {
  36. name = "STR_Shops_Wongs";
  37. side = "civ";
  38. license = "";
  39. level[] = { "", "", -1, "" };
  40. items[] = { "turtle_soup", "turtle_raw" };
  41. };
  42.  
  43. class coffee {
  44. name = "STR_Shops_Coffee";
  45. side = "civ";
  46. license = "";
  47. level[] = { "", "", -1, "" };
  48. items[] = { "coffee", "donuts" };
  49. };
  50.  
  51. class f_station_coffee {
  52. name = "STR_Shop_Station_Coffee";
  53. side = "";
  54. license = "";
  55. level[] = { "", "", -1, "" };
  56. items[] = { "coffee", "donuts", "redgull", "fuelFull"};
  57. };
  58.  
  59. class drugdealer {
  60. name = "STR_Shops_DrugDealer";
  61. side = "civ";
  62. license = "";
  63. level[] = { "", "", -1, "" };
  64. items[] = { "cocaine_processed", "heroin_processed", "marijuana" };
  65. };
  66.  
  67. class oil {
  68. name = "STR_Shops_Oil";
  69. side = "civ";
  70. license = "";
  71. level[] = { "", "", -1, "" };
  72. items[] = { "oil_processed", "pickaxe", "fuelFull" };
  73. };
  74.  
  75. class fishmarket {
  76. name = "STR_Shops_FishMarket";
  77. side = "civ";
  78. license = "";
  79. level[] = { "", "", -1, "" };
  80. items[] = { "salema_raw", "salema", "ornate_raw", "ornate", "mackerel_raw", "mackerel", "tuna_raw", "tuna", "mullet_raw", "mullet", "catshark_raw", "catshark" };
  81. };
  82.  
  83. class glass {
  84. name = "STR_Shops_Glass";
  85. side = "civ";
  86. license = "";
  87. level[] = { "", "", -1, "" };
  88. items[] = { "glass" };
  89. };
  90.  
  91. class iron {
  92. name = "STR_Shops_Minerals";
  93. side = "civ";
  94. license = "";
  95. level[] = { "", "", -1, "" };
  96. items[] = { "iron_refined", "copper_refined" };
  97. };
  98.  
  99. class diamond {
  100. name = "STR_Shops_Diamond";
  101. side = "civ";
  102. license = "";
  103. level[] = { "", "", -1, "" };
  104. items[] = { "diamond_uncut", "diamond_cut" };
  105. };
  106.  
  107. class salt {
  108. name = "STR_Shops_Salt";
  109. side = "civ";
  110. license = "";
  111. level[] = { "", "", -1, "" };
  112. items[] = { "salt_refined" };
  113. };
  114.  
  115. class cement {
  116. name = "STR_Shops_Cement";
  117. side = "civ";
  118. license = "";
  119. level[] = { "", "", -1, "" };
  120. items[] = { "cement" };
  121. };
  122.  
  123. class gold {
  124. name = "STR_Shops_Gold";
  125. side = "civ";
  126. license = "";
  127. level[] = { "", "", -1, "" };
  128. items[] = { "goldbar" };
  129. };
  130.  
  131. class cop {
  132. name = "STR_Shops_Cop";
  133. side = "cop";
  134. license = "";
  135. level[] = { "", "", -1, "" };
  136. items[] = { "donuts", "coffee", "spikeStrip", "waterBottle", "rabbit", "apple", "redgull", "fuelFull", "defusekit" };
  137. };
  138. };
  139.  
  140. /*
  141. * CLASS:
  142. * variable = Variable Name
  143. * displayName = Item Name
  144. * weight = Item Weight
  145. * buyPrice = Item Buy Price
  146. * sellPrice = Item Sell Price
  147. * illegal = Illegal Item
  148. * edible = Item Edible (-1 = Disabled)
  149. * icon = Item Icon
  150. * processedItem = Processed Item
  151. */
  152. class VirtualItems {
  153. //Virtual Items
  154.  
  155. //Misc
  156. class pickaxe {
  157. variable = "pickaxe";
  158. displayName = "STR_Item_Pickaxe";
  159. weight = 2;
  160. buyPrice = 750;
  161. sellPrice = 350;
  162. illegal = false;
  163. edible = -1;
  164. icon = "icons\ico_pickaxe.paa";
  165. };
  166.  
  167. class fuelEmpty {
  168. variable = "fuelEmpty";
  169. displayName = "STR_Item_FuelE";
  170. weight = 2;
  171. buyPrice = -1;
  172. sellPrice = -1;
  173. illegal = false;
  174. edible = -1;
  175. icon = "icons\ico_fuelempty.paa";
  176. };
  177.  
  178. class fuelFull {
  179. variable = "fuelFull";
  180. displayName = "STR_Item_FuelF";
  181. weight = 5;
  182. buyPrice = 850;
  183. sellPrice = 500;
  184. illegal = false;
  185. edible = -1;
  186. icon = "icons\ico_fuel.paa";
  187. };
  188.  
  189. class spikeStrip {
  190. variable = "spikeStrip";
  191. displayName = "STR_Item_SpikeStrip";
  192. weight = 15;
  193. buyPrice = 2500;
  194. sellPrice = 1200;
  195. illegal = false;
  196. edible = -1;
  197. icon = "icons\ico_spikestrip.paa";
  198. };
  199.  
  200. class lockpick {
  201. variable = "lockpick";
  202. displayName = "STR_Item_Lockpick";
  203. weight = 1;
  204. buyPrice = 150;
  205. sellPrice = 75;
  206. illegal = false;
  207. edible = -1;
  208. icon = "icons\ico_lockpick.paa";
  209. };
  210.  
  211. class goldbar {
  212. variable = "goldBar";
  213. displayName = "STR_Item_GoldBar";
  214. weight = 12;
  215. buyPrice = -1;
  216. sellPrice = 95000;
  217. illegal = false;
  218. edible = -1;
  219. icon = "icons\ico_goldbar.paa";
  220. };
  221.  
  222. class blastingcharge {
  223. variable = "blastingCharge";
  224. displayName = "STR_Item_BCharge";
  225. weight = 15;
  226. buyPrice = 35000;
  227. sellPrice = 10000;
  228. illegal = true;
  229. edible = -1;
  230. icon = "icons\ico_blastingCharge.paa";
  231. };
  232.  
  233. class boltcutter {
  234. variable = "boltCutter";
  235. displayName = "STR_Item_BCutter";
  236. weight = 5;
  237. buyPrice = 7500;
  238. sellPrice = 1000;
  239. illegal = true;
  240. edible = -1;
  241. icon = "icons\ico_boltcutters.paa";
  242. };
  243.  
  244. class defusekit {
  245. variable = "defuseKit";
  246. displayName = "STR_Item_DefuseKit";
  247. weight = 2;
  248. buyPrice = 2500;
  249. sellPrice = -1;
  250. illegal = false;
  251. edible = -1;
  252. icon = "icons\ico_defusekit.paa";
  253. };
  254.  
  255. class storagesmall {
  256. variable = "storageSmall";
  257. displayName = "STR_Item_StorageBS";
  258. weight = 5;
  259. buyPrice = 75000;
  260. sellPrice = -1;
  261. illegal = false;
  262. edible = -1;
  263. icon = "icons\ico_storageSmall.paa";
  264. };
  265.  
  266. class storagebig {
  267. variable = "storageBig";
  268. displayName = "STR_Item_StorageBL";
  269. weight = 10;
  270. buyPrice = 150000;
  271. sellPrice = -1;
  272. illegal = false;
  273. edible = -1;
  274. icon = "icons\ico_storageBig.paa";
  275. };
  276.  
  277. //Mined Items
  278. class oil_unprocessed {
  279. variable = "oilUnprocessed";
  280. displayName = "STR_Item_OilU";
  281. weight = 7;
  282. buyPrice = -1;
  283. sellPrice = -1;
  284. illegal = false;
  285. edible = -1;
  286. icon = "icons\ico_oilUnprocessed.paa";
  287. };
  288.  
  289. class oil_processed {
  290. variable = "oilProcessed";
  291. displayName = "STR_Item_OilP";
  292. weight = 6;
  293. buyPrice = -1;
  294. sellPrice = 3200;
  295. illegal = false;
  296. edible = -1;
  297. icon = "icons\ico_oilProcessed.paa";
  298. };
  299.  
  300. class copper_unrefined {
  301. variable = "copperUnrefined";
  302. displayName = "STR_Item_CopperOre";
  303. weight = 4;
  304. buyPrice = -1;
  305. sellPrice = -1;
  306. illegal = false;
  307. edible = -1;
  308. icon = "";
  309. };
  310.  
  311. class copper_refined {
  312. variable = "copperRefined";
  313. displayName = "STR_Item_CopperIngot";
  314. weight = 3;
  315. buyPrice = -1;
  316. sellPrice = 1500;
  317. illegal = false;
  318. edible = -1;
  319. icon = "";
  320. };
  321.  
  322. class iron_unrefined {
  323. variable = "ironUnrefined";
  324. displayName = "STR_Item_IronOre";
  325. weight = 5;
  326. buyPrice = -1;
  327. sellPrice = -1;
  328. illegal = false;
  329. edible = -1;
  330. icon = "";
  331. };
  332.  
  333. class iron_refined {
  334. variable = "ironRefined";
  335. displayName = "STR_Item_IronIngot";
  336. weight = 3;
  337. buyPrice = -1;
  338. sellPrice = 3200;
  339. illegal = false;
  340. edible = -1;
  341. icon = "";
  342. };
  343.  
  344. class salt_unrefined {
  345. variable = "saltUnrefined";
  346. displayName = "STR_Item_Salt";
  347. weight = 3;
  348. buyPrice = -1;
  349. sellPrice = -1;
  350. illegal = false;
  351. edible = -1;
  352. icon = "icons\ico_saltUnprocessed.paa";
  353. };
  354.  
  355. class salt_refined {
  356. variable = "saltRefined";
  357. displayName = "STR_Item_SaltR";
  358. weight = 1;
  359. buyPrice = -1;
  360. sellPrice = 1450;
  361. illegal = false;
  362. edible = -1;
  363. icon = "icons\ico_saltProcessed.paa";
  364. };
  365.  
  366. class sand {
  367. variable = "sand";
  368. displayName = "STR_Item_Sand";
  369. weight = 3;
  370. buyPrice = -1;
  371. sellPrice = -1;
  372. illegal = false;
  373. edible = -1;
  374. icon = "";
  375. };
  376.  
  377. class glass {
  378. variable = "glass";
  379. displayName = "STR_Item_Glass";
  380. weight = 1;
  381. buyPrice = -1;
  382. sellPrice = 1450;
  383. illegal = false;
  384. edible = -1;
  385. icon = "";
  386. };
  387.  
  388. class diamond_uncut {
  389. variable = "diamondUncut";
  390. displayName = "STR_Item_DiamondU";
  391. weight = 4;
  392. buyPrice = -1;
  393. sellPrice = 750;
  394. illegal = false;
  395. edible = -1;
  396. icon = "icons\ico_diamondUncut.paa";
  397. };
  398.  
  399. class diamond_cut {
  400. variable = "diamondCut";
  401. displayName = "STR_Item_DiamondC";
  402. weight = 2;
  403. buyPrice = -1;
  404. sellPrice = 2000;
  405. illegal = false;
  406. edible = -1;
  407. icon = "icons\ico_diamondCut.paa";
  408. };
  409.  
  410. class rock {
  411. variable = "rock";
  412. displayName = "STR_Item_Rock";
  413. weight = 6;
  414. buyPrice = -1;
  415. sellPrice = -1;
  416. illegal = false;
  417. edible = -1;
  418. icon = "";
  419. };
  420.  
  421. class cement {
  422. variable = "cement";
  423. displayName = "STR_Item_CementBag";
  424. weight = 5;
  425. buyPrice = -1;
  426. sellPrice = 1950;
  427. illegal = false;
  428. edible = -1;
  429. icon = "";
  430. };
  431.  
  432. //Drugs
  433. class heroin_unprocessed {
  434. variable = "heroinUnprocessed";
  435. displayName = "STR_Item_HeroinU";
  436. weight = 6;
  437. buyPrice = -1;
  438. sellPrice = -1;
  439. illegal = true;
  440. edible = -1;
  441. icon = "icons\ico_heroinUnprocessed.paa";
  442. processedItem = "heroin_processed";
  443. };
  444.  
  445. class heroin_processed {
  446. variable = "heroinProcessed";
  447. displayName = "STR_Item_HeroinP";
  448. weight = 4;
  449. buyPrice = 3500;
  450. sellPrice = 2560;
  451. illegal = true;
  452. edible = -1;
  453. icon = "icons\ico_heroinProcessed.paa";
  454. };
  455.  
  456. class cannabis {
  457. variable = "cannabis";
  458. displayName = "STR_Item_Cannabis";
  459. weight = 4;
  460. buyPrice = -1;
  461. sellPrice = -1;
  462. illegal = true;
  463. edible = -1;
  464. icon = "icons\ico_cannabis.paa";
  465. processedItem = "marijuana";
  466. };
  467.  
  468. class marijuana {
  469. variable = "marijuana";
  470. displayName = "STR_Item_Marijuana";
  471. weight = 3;
  472. buyPrice = 2800;
  473. sellPrice = 2350;
  474. illegal = true;
  475. edible = -1;
  476. icon = "icons\ico_marijuana.paa";
  477. };
  478.  
  479. class cocaine_unprocessed {
  480. variable = "cocaineUnprocessed";
  481. displayName = "STR_Item_CocaineU";
  482. weight = 6;
  483. buyPrice = -1;
  484. sellPrice = -1;
  485. illegal = true;
  486. edible = -1;
  487. icon = "icons\ico_cocaineUnprocessed.paa";
  488. processedItem = "cocaine_processed";
  489. };
  490.  
  491. class cocaine_processed {
  492. variable = "cocaineProcessed";
  493. displayName = "STR_Item_CocaineP";
  494. weight = 4;
  495. buyPrice = -1;
  496. sellPrice = 5000;
  497. illegal = true;
  498. edible = -1;
  499. icon = "icons\ico_cocaineProcessed.paa";
  500. };
  501.  
  502. //Drink
  503. class redgull {
  504. variable = "redgull";
  505. displayName = "STR_Item_RedGull";
  506. weight = 1;
  507. buyPrice = 1500;
  508. sellPrice = 200;
  509. illegal = false;
  510. edible = 100;
  511. icon = "icons\ico_redgull.paa";
  512. };
  513.  
  514. class coffee {
  515. variable = "coffee";
  516. displayName = "STR_Item_Coffee";
  517. weight = 1;
  518. buyPrice = 10;
  519. sellPrice = 5;
  520. illegal = false;
  521. edible = 100;
  522. icon = "icons\ico_coffee.paa";
  523. };
  524.  
  525. class waterBottle {
  526. variable = "waterBottle";
  527. displayName = "STR_Item_WaterBottle";
  528. weight = 1;
  529. buyPrice = 10;
  530. sellPrice = 5;
  531. illegal = false;
  532. edible = 100;
  533. icon = "icons\ico_waterBottle.paa";
  534. };
  535.  
  536. //Food
  537. class apple {
  538. variable = "apple";
  539. displayName = "STR_Item_Apple";
  540. weight = 1;
  541. buyPrice = 65;
  542. sellPrice = 50;
  543. illegal = false;
  544. edible = 10;
  545. icon = "icons\ico_apple.paa";
  546. };
  547.  
  548. class peach {
  549. variable = "peach";
  550. displayName = "STR_Item_Peach";
  551. weight = 1;
  552. buyPrice = 68;
  553. sellPrice = 55;
  554. illegal = false;
  555. edible = 10;
  556. icon = "icons\ico_peach.paa";
  557. };
  558.  
  559. class tbacon {
  560. variable = "tbacon";
  561. displayName = "STR_Item_TBacon";
  562. weight = 1;
  563. buyPrice = 75;
  564. sellPrice = 25;
  565. illegal = false;
  566. edible = 40;
  567. icon = "icons\ico_tbacon.paa";
  568. };
  569.  
  570. class donuts {
  571. variable = "donuts";
  572. displayName = "STR_Item_Donuts";
  573. weight = 1;
  574. buyPrice = 120;
  575. sellPrice = 60;
  576. illegal = false;
  577. edible = 30;
  578. icon = "icons\ico_donuts.paa";
  579. };
  580.  
  581. class rabbit_raw {
  582. variable = "rabbitRaw";
  583. displayName = "STR_Item_RabbitRaw";
  584. weight = 2;
  585. buyPrice = -1;
  586. sellPrice = 95;
  587. illegal = false;
  588. edible = -1;
  589. icon = "icons\ico_meat.paa";
  590. };
  591.  
  592. class rabbit {
  593. variable = "rabbit";
  594. displayName = "STR_Item_Rabbit";
  595. weight = 1;
  596. buyPrice = 150;
  597. sellPrice = 115;
  598. illegal = false;
  599. edible = 20;
  600. icon = "icons\ico_cookedMeat.paa";
  601. };
  602.  
  603. class salema_raw {
  604. variable = "salemaRaw";
  605. displayName = "STR_Item_SalemaRaw";
  606. weight = 2;
  607. buyPrice = -1;
  608. sellPrice = 45;
  609. illegal = false;
  610. edible = -1;
  611. icon = "icons\ico_meat.paa";
  612. };
  613.  
  614. class salema {
  615. variable = "salema";
  616. displayName = "STR_Item_Salema";
  617. weight = 1;
  618. buyPrice = 75;
  619. sellPrice = 55;
  620. illegal = false;
  621. edible = 30;
  622. icon = "icons\ico_cookedMeat.paa";
  623. };
  624.  
  625. class ornate_raw {
  626. variable = "ornateRaw";
  627. displayName = "STR_Item_OrnateRaw";
  628. weight = 2;
  629. buyPrice = -1;
  630. sellPrice = 40;
  631. illegal = false;
  632. edible = -1;
  633. icon = "icons\ico_meat.paa";
  634. };
  635.  
  636. class ornate {
  637. variable = "ornate";
  638. displayName = "STR_Item_Ornate";
  639. weight = 1;
  640. buyPrice = 175;
  641. sellPrice = 150;
  642. illegal = false;
  643. edible = 25;
  644. icon = "icons\ico_cookedMeat.paa";
  645. };
  646.  
  647. class mackerel_raw {
  648. variable = "mackerelRaw";
  649. displayName = "STR_Item_MackerelRaw";
  650. weight = 4;
  651. buyPrice = -1;
  652. sellPrice = 175;
  653. illegal = false;
  654. edible = -1;
  655. icon = "icons\ico_meat.paa";
  656. };
  657.  
  658. class mackerel {
  659. variable = "mackerel";
  660. displayName = "STR_Item_Mackerel";
  661. weight = 2;
  662. buyPrice = 250;
  663. sellPrice = 200;
  664. illegal = false;
  665. edible = 30;
  666. icon = "icons\ico_cookedMeat.paa";
  667. };
  668.  
  669. class tuna_raw {
  670. variable = "tunaRaw";
  671. displayName = "STR_Item_TunaRaw";
  672. weight = 6;
  673. buyPrice = -1;
  674. sellPrice = 700;
  675. illegal = false;
  676. edible = -1;
  677. icon = "icons\ico_meat.paa";
  678. };
  679.  
  680. class tuna {
  681. variable = "tuna";
  682. displayName = "STR_Item_Tuna";
  683. weight = 3;
  684. buyPrice = 1250;
  685. sellPrice = 1000;
  686. illegal = false;
  687. edible = 100;
  688. icon = "icons\ico_cookedMeat.paa";
  689. };
  690.  
  691. class mullet_raw {
  692. variable = "mulletRaw";
  693. displayName = "STR_Item_MulletRaw";
  694. weight = 4;
  695. buyPrice = -1;
  696. sellPrice = 250;
  697. illegal = false;
  698. edible = -1;
  699. icon = "icons\ico_meat.paa";
  700. };
  701.  
  702. class mullet {
  703. variable = "mullet";
  704. displayName = "STR_Item_Mullet";
  705. weight = 2;
  706. buyPrice = 600;
  707. sellPrice = 400;
  708. illegal = false;
  709. edible = 80;
  710. icon = "icons\ico_cookedMeat.paa";
  711. };
  712.  
  713. class catshark_raw {
  714. variable = "catsharkRaw";
  715. displayName = "STR_Item_CatSharkRaw";
  716. weight = 6;
  717. buyPrice = -1;
  718. sellPrice = 300;
  719. illegal = false;
  720. edible = -1;
  721. icon = "icons\ico_meat.paa";
  722. };
  723.  
  724. class catshark {
  725. variable = "catshark";
  726. displayName = "STR_Item_CatShark";
  727. weight = 3;
  728. buyPrice = 750;
  729. sellPrice = 500;
  730. illegal = false;
  731. edible = 100;
  732. icon = "icons\ico_cookedMeat.paa";
  733. };
  734.  
  735. class turtle_raw {
  736. variable = "turtleRaw";
  737. displayName = "STR_Item_TurtleRaw";
  738. weight = 6;
  739. buyPrice = -1;
  740. sellPrice = 3000;
  741. illegal = true;
  742. edible = -1;
  743. icon = "icons\ico_meat.paa";
  744. };
  745.  
  746. class turtle_soup {
  747. variable = "turtleSoup";
  748. displayName = "STR_Item_TurtleSoup";
  749. weight = 2;
  750. buyPrice = 1000;
  751. sellPrice = 750;
  752. illegal = false;
  753. edible = 100;
  754. icon = "icons\ico_cookedMeat.paa";
  755. };
  756.  
  757. class hen_raw {
  758. variable = "henRaw";
  759. displayName = "STR_Item_HenRaw";
  760. weight = 1;
  761. buyPrice = -1;
  762. sellPrice = 65;
  763. illegal = false;
  764. edible = -1;
  765. icon = "icons\ico_meat.paa";
  766. };
  767.  
  768. class hen {
  769. variable = "hen";
  770. displayName = "STR_Item_Hen";
  771. weight = 1;
  772. buyPrice = 115;
  773. sellPrice = 85;
  774. illegal = false;
  775. edible = 65;
  776. icon = "icons\ico_cookedMeat.paa";
  777. };
  778.  
  779. class rooster_raw {
  780. variable = "roosterRaw";
  781. displayName = "STR_Item_RoosterRaw";
  782. weight = 1;
  783. buyPrice = -1;
  784. sellPrice = 65;
  785. illegal = false;
  786. edible = -1;
  787. icon = "icons\ico_meat.paa";
  788. };
  789.  
  790. class rooster {
  791. variable = "rooster";
  792. displayName = "STR_Item_Rooster";
  793. weight = 115;
  794. buyPrice = 90;
  795. sellPrice = 85;
  796. illegal = false;
  797. edible = 45;
  798. icon = "icons\ico_cookedMeat.paa";
  799. };
  800.  
  801. class sheep_raw {
  802. variable = "sheepRaw";
  803. displayName = "STR_Item_SheepRaw";
  804. weight = 2;
  805. buyPrice = -1;
  806. sellPrice = 95;
  807. illegal = false;
  808. edible = -1;
  809. icon = "icons\ico_meat.paa";
  810. };
  811.  
  812. class sheep {
  813. variable = "sheep";
  814. displayName = "STR_Item_Sheep";
  815. weight = 2;
  816. buyPrice = 155;
  817. sellPrice = 115;
  818. illegal = false;
  819. edible = 100;
  820. icon = "icons\ico_cookedMeat.paa";
  821. };
  822.  
  823. class goat_raw {
  824. variable = "goatRaw";
  825. displayName = "STR_Item_GoatRaw";
  826. weight = 2;
  827. buyPrice = -1;
  828. sellPrice = 115;
  829. illegal = false;
  830. edible = -1;
  831. icon = "icons\ico_meat.paa";
  832. };
  833.  
  834. class zipties {
  835. variable = "zipties";
  836. displayName = "STR_Item_ZipTies";
  837. weight = 0;
  838. buyPrice = 1200;
  839. sellPrice = -1;
  840. illegal = true;
  841. edible = -1;
  842. icon = "icons\zipties.jpg";
  843. };
  844.  
  845. class goat {
  846. variable = "goat";
  847. displayName = "STR_Item_Goat";
  848. weight = 2;
  849. buyPrice = 175;
  850. sellPrice = 135;
  851. illegal = false;
  852. edible = 100;
  853. icon = "icons\ico_cookedMeat.paa";
  854. };
  855. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement