Advertisement
Guest User

Untitled

a guest
Jul 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 46.48 KB | None | 0 0
  1. #define private 0
  2. #define protected 1
  3. #define public 2
  4.  
  5. #define true 1
  6. #define false 0
  7. class CfgMagazines {
  8. class ThingX;
  9. class HandGrenade_Stone;
  10. class SP_Use
  11. {
  12. scope=1;
  13. sounds[]={};
  14. returnedItem="";
  15. stopBleeding=0;
  16. animations[]={};
  17. tools[]={};
  18. };
  19. class SP_Eating: SP_Use
  20. {
  21. scope=1;
  22. };
  23. class SP_Drinking: SP_Use
  24. {
  25. scope=1;
  26. };
  27. class SP_using: SP_Use
  28. {
  29. scope=1;
  30. };
  31. /////////////Generelle ITEMS
  32. class SP_items: ThingX
  33. {
  34. author="ShelbyPwr";
  35. scope=2;
  36. scopeCurator=2;
  37. count=1;
  38. type=256;
  39. displayName="";
  40. classname = "";
  41. model="\SP_items\delivery\SP_Box.p3d";
  42. picture="\SP_items\Logo.paa";
  43. icon="iconObject_1x1";
  44. descriptionShort="";
  45. mass=1;
  46. allowedSlots[]={901,801,701};
  47. };
  48. class SP_Kabelbinder: SP_items
  49. {
  50. displayName="Kabelbinder";
  51. classname = "SP_Kabelbinder";
  52. descriptionShort="Wenn du's drauf hast sind die fester als Handschellen!";
  53. model="\A3\structures_f_epa\Items\Tools\DuctTape_F.p3d";
  54. picture="\SP_items\Pictures\SP_Kabelbinder.paa";
  55. mass=10;
  56. allowedSlots[]={901,801,701};
  57. };
  58. class SP_lockkit: SP_items
  59. {
  60. displayName="Lockkit";
  61. classname = "SP_lockkit";
  62. descriptionShort="Krrr KRRR und offen!";
  63. model="\SP_items\other\SP_lockkit.p3d";
  64. picture="\SP_items\Pictures\SP_lockkit.paa";
  65. mass=10;
  66. allowedSlots[]={901,801,701};
  67. };
  68. class SP_Repairkit: SP_items
  69. {
  70. displayName="Werkzeugkasten";
  71. classname = "SP_Repairkit";
  72. descriptionShort="Wenn du mal scheiße gebaut hast";
  73. model="\SP_items\other\SP_repairkit.p3d";
  74. picture="\A3\Weapons_F\Items\data\UI\gear_Toolkit_CA.paa";
  75. mass=10;
  76. allowedSlots[]={901,801,701};
  77. };
  78. class SP_Benzinkanister_full: SP_items
  79. {
  80. displayName="Benzinkanister (Voll)";
  81. classname = "SP_Benzinkanister_full";
  82. descriptionShort="Da läuft dein Auto wieder wie geschmiert";
  83. model="\SP_items\oil\fuelcan\SP_Fuelcan.p3d";
  84. picture="\SP_items\Pictures\SP_Benzinkanister_full.paa";
  85. mass=14;
  86. allowedSlots[]={901,801,701};
  87. };
  88. class SP_Benzinkanister_empty: SP_items
  89. {
  90. displayName="Benzinkanister (Leer)";
  91. classname = "SP_Benzinkanister_empty";
  92. descriptionShort="Das Auto ist wohl nicht mehr so fit";
  93. model="\SP_items\oil\fuelcan\SP_Fuelcan.p3d";
  94. picture="\SP_items\Pictures\SP_Benzinkanister_empty.paa";
  95. mass=6;
  96. allowedSlots[]={901,801,701};
  97. };
  98. class SP_Vaultdrill: SP_items
  99. {
  100. displayName="Tresor Bohrer";
  101. classname = "SP_Vaultdrill";
  102. descriptionShort="Bog mal eine Bank zu knacken?";
  103. model="\SP_items\other\SP_Vaultdrill.p3d";
  104. picture="\SP_items\Pictures\SP_Vaultdrill.paa";
  105. mass=15;
  106. allowedSlots[]={901,801,701};
  107. };
  108. class SP_C4: SP_items
  109. {
  110. displayName="C4";
  111. classname = "SP_C4";
  112. descriptionShort="Nicht geignet für Kinder unter 6 Jahren";
  113. model="\SP_items\other\SP_c4.p3d";
  114. picture="\SP_items\Pictures\SP_C4.paa";
  115. mass=40;
  116. allowedSlots[]={901,801,701};
  117. };
  118. /////////////ESSEN TRINKEN ITEMS
  119. class SP_WaterBottle: SP_items
  120. {
  121. displayName="Wasserflasche";
  122. classname = "SP_WaterBottle";
  123. descriptionShort="Frisch abgefüllt";
  124. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  125. picture="\SP_items\Pictures\SP_WaterBottle.paa";
  126. mass=10;
  127. allowedSlots[]={901,801,701};
  128. class Interactions
  129. {
  130. class Consuming: SP_Drinking
  131. {
  132. returnedItem="SP_PlasticBottleEmpty";
  133. effects[]=
  134. {
  135. {3,100,60},
  136. {2,10,5},
  137. {5,0.5,10}
  138. };
  139. };
  140. };
  141. };
  142. class SP_PlasticBottleEmpty: SP_items
  143. {
  144. displayName="Leere Wasserflasche";
  145. classname = "SP_PlasticBottleEmpty";
  146. descriptionShort="Leer und durstig";
  147. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  148. picture="\SP_items\Pictures\SP_WaterBottle_empty.paa";
  149. mass=10;
  150. allowedSlots[]={901,801,701};
  151. };
  152. class SP_Apfel: SP_items
  153. {
  154. displayName="Apfel";
  155. classname = "SP_Apfel";
  156. descriptionShort="Rot und saftig";
  157. model="\SP_items\farming\SP_cocoa.p3d";
  158. picture="\SP_items\Pictures\SP_Apfel.paa";
  159. mass=10;
  160. allowedSlots[]={901,801,701};
  161. class Interactions
  162. {
  163. class Consuming: SP_Eating
  164. {
  165. effects[]=
  166. {
  167. {3,100,60},
  168. {2,10,5},
  169. {5,0.5,10}
  170. };
  171. };
  172. };
  173. };
  174. class SP_Bananen: SP_items
  175. {
  176. displayName="Bananen";
  177. classname = "SP_Bananen";
  178. descriptionShort="Gelb und geil";
  179. model="\SP_items\farming\SP_banana.p3d";
  180. picture="\SP_items\Pictures\SP_Bananen.paa";
  181. mass=10;
  182. allowedSlots[]={901,801,701};
  183. class Interactions
  184. {
  185. class Consuming: SP_Eating
  186. {
  187. effects[]=
  188. {
  189. {3,100,60},
  190. {2,10,5},
  191. {5,0.5,10}
  192. };
  193. };
  194. };
  195. };
  196. class SP_Redgull: SP_items
  197. {
  198. displayName="Redgull";
  199. classname = "SP_Redgull";
  200. descriptionShort="verleiht ´Flügel´";
  201. model="\A3\Structures_F\Items\Food\Can_V2_F.p3d";
  202. picture="\SP_items\Pictures\SP_Redgull.paa";
  203. mass=10;
  204. allowedSlots[]={901,801,701};
  205. class Interactions
  206. {
  207. class Consuming: SP_Drinking
  208. {
  209. effects[]=
  210. {
  211. {3,100,60},
  212. {2,10,5},
  213. {5,0.5,10}
  214. };
  215. };
  216. };
  217. };
  218. class SP_Kaffee: SP_items
  219. {
  220. displayName="Kaffe";
  221. classname = "SP_Kaffee";
  222. descriptionShort="Das mögen die häßlichen SDPler am meisten";
  223. model="\A3\Structures_F\Items\Food\TacticalBacon_F.p3d";
  224. picture="\SP_items\Pictures\SP_Kaffee.paa";
  225. mass=10;
  226. allowedSlots[]={901,801,701};
  227. class Interactions
  228. {
  229. class Consuming: SP_Drinking
  230. {
  231. effects[]=
  232. {
  233. {3,100,60},
  234. {2,10,5},
  235. {5,0.5,10}
  236. };
  237. };
  238. };
  239. };
  240. class SP_Donut: SP_items
  241. {
  242. displayName="Donut";
  243. classname = "SP_Donut";
  244. descriptionShort="Das mögen die häßlichen SDPler am 2.meisten";
  245. model="\SP_items\farming\SP_Donut.p3d";
  246. picture="\SP_items\Pictures\SP_Donut.paa";
  247. mass=10;
  248. allowedSlots[]={901,801,701};
  249. class Interactions
  250. {
  251. class Consuming: SP_Eating
  252. {
  253. effects[]=
  254. {
  255. {3,100,60},
  256. {2,10,5},
  257. {5,0.5,10}
  258. };
  259. };
  260. };
  261. };
  262. class SP_TSpeck: SP_items
  263. {
  264. displayName = "Taktischen Speck";
  265. classname = "SP_TSpeck";
  266. descriptionShort="Taktisch und speckig! Super Kombination";
  267. model="\A3\Structures_F\Items\Food\TacticalBacon_F.p3d";
  268. picture="\SP_items\Pictures\SP_TSpeck.paa";
  269. mass=10;
  270. allowedSlots[]={901,801,701};
  271. class Interactions
  272. {
  273. class Consuming: SP_Eating
  274. {
  275. effects[]=
  276. {
  277. {3,100,60},
  278. {2,10,5},
  279. {5,0.5,10}
  280. };
  281. };
  282. };
  283. };
  284. /////////////Farming ITEMS
  285. class SP_seeds: SP_items
  286. {
  287. displayName = "Weizen Samen";
  288. classname = "SP_seeds";
  289. descriptionShort="Lecker Kerne! mhmmm";
  290. model="\SP_items\farming\SP_seed.p3d";
  291. picture="\SP_items\Pictures\SP_seeds1.paa";
  292. mass=10;
  293. allowedSlots[]={901,801,701};
  294. class Interactions
  295. {
  296. class Using: SP_using
  297. {
  298. effects[]=
  299. {
  300. {3,100,60},
  301. {2,10,5},
  302. {5,0.5,10}
  303. };
  304. };
  305. };
  306. };
  307. class SP_seeds2: SP_items
  308. {
  309. displayName = "Baumwoll Samen";
  310. classname = "SP_seeds2";
  311. descriptionShort="Lecker Kerne! mhmmm";
  312. model="\SP_items\farming\SP_seed.p3d";
  313. picture="\SP_items\Pictures\SP_seeds2.paa";
  314. mass=10;
  315. allowedSlots[]={901,801,701};
  316. class Interactions
  317. {
  318. class Using: SP_using
  319. {
  320. effects[]=
  321. {
  322. {3,100,60},
  323. {2,10,5},
  324. {5,0.5,10}
  325. };
  326. };
  327. };
  328. };
  329. class SP_seeds3: SP_items
  330. {
  331. displayName = "Karotten Samen";
  332. classname = "SP_seeds3";
  333. descriptionShort="Lecker Kerne! mhmmm";
  334. model="\SP_items\farming\SP_seed.p3d";
  335. picture="\SP_items\Pictures\SP_seeds2.paa";
  336. mass=10;
  337. allowedSlots[]={901,801,701};
  338. class Interactions
  339. {
  340. class Using: SP_using
  341. {
  342. effects[]=
  343. {
  344. {3,100,60},
  345. {2,10,5},
  346. {5,0.5,10}
  347. };
  348. };
  349. };
  350. };
  351. class SP_seeds4: SP_items
  352. {
  353. displayName = "Blumenkohl Samen";
  354. classname = "SP_seeds4";
  355. descriptionShort="Lecker Kerne! mhmmm";
  356. model="\SP_items\farming\SP_seed.p3d";
  357. picture="\SP_items\Pictures\SP_seeds2.paa";
  358. mass=10;
  359. allowedSlots[]={901,801,701};
  360. class Interactions
  361. {
  362. class Using: SP_using
  363. {
  364. effects[]=
  365. {
  366. {3,100,60},
  367. {2,10,5},
  368. {5,0.5,10}
  369. };
  370. };
  371. };
  372. };
  373. class SP_cornseeds: SP_items
  374. {
  375. displayName = "Weizen Samen";
  376. classname = "SP_cornseeds";
  377. descriptionShort="Lecker Kerne! mhmmm";
  378. model="\SP_items\farming\SP_seed.p3d";
  379. picture="\SP_items\Pictures\SP_seeds2.paa";
  380. mass=10;
  381. allowedSlots[]={901,801,701};
  382. class Interactions
  383. {
  384. class Using: SP_using
  385. {
  386. effects[]=
  387. {
  388. {3,100,60},
  389. {2,10,5},
  390. {5,0.5,10}
  391. };
  392. };
  393. };
  394. };
  395. class SP_bohnenseeds: SP_items
  396. {
  397. displayName = "Bohnen Samen";
  398. classname = "SP_bohnenseeds";
  399. descriptionShort="Lecker Kerne! mhmmm";
  400. model="\SP_items\farming\SP_seed.p3d";
  401. picture="\SP_items\Pictures\SP_seeds2.paa";
  402. mass=10;
  403. allowedSlots[]={901,801,701};
  404. class Interactions
  405. {
  406. class Using: SP_using
  407. {
  408. effects[]=
  409. {
  410. {3,100,60},
  411. {2,10,5},
  412. {5,0.5,10}
  413. };
  414. };
  415. };
  416. };
  417. class SP_Fasern: SP_items
  418. {
  419. displayName = "Fasern";
  420. classname = "SP_Fasern";
  421. descriptionShort="";
  422. mass=10;
  423. allowedSlots[]={901,801,701};
  424. };
  425. class SP_Hefe: SP_items
  426. {
  427. displayName = "Hefe";
  428. classname = "SP_Hefe";
  429. descriptionShort="";
  430. mass=10;
  431. allowedSlots[]={901,801,701};
  432. };
  433. class SP_Nitro: SP_items
  434. {
  435. displayName = "Nitro";
  436. classname = "SP_Nitro";
  437. descriptionShort="SCHNELLER!";
  438. mass=10;
  439. allowedSlots[]={901,801,701};
  440. };
  441. class SP_Metalrollen: SP_items
  442. {
  443. displayName = "Metalrollen";
  444. classname = "SP_Metalrollen";
  445. descriptionShort="geile Rolle";
  446. mass=10;
  447. allowedSlots[]={901,801,701};
  448. };
  449. class SP_bohnensaft: SP_items
  450. {
  451. displayName = "Bohnen Saft";
  452. classname = "SP_bohnensaft";
  453. descriptionShort="so klein, kugelig alles in einem Saft?";
  454. mass=10;
  455. allowedSlots[]={901,801,701};
  456. };
  457. class SP_Beer: SP_items
  458. {
  459. displayName = "Bier";
  460. classname = "SP_Beer";
  461. descriptionShort="SAUFEN!";
  462. mass=10;
  463. allowedSlots[]={901,801,701};
  464. };
  465. class SP_Chloroform: SP_items
  466. {
  467. displayName = "Chloroform";
  468. classname = "SP_Chloroform";
  469. descriptionShort="";
  470. mass=10;
  471. allowedSlots[]={901,801,701};
  472. };
  473. class SP_Statue: SP_items
  474. {
  475. displayName = "Statue";
  476. classname = "SP_Statue";
  477. descriptionShort="Statuig?";
  478. mass=10;
  479. allowedSlots[]={901,801,701};
  480. };
  481. class SP_bohnenschnapps: SP_items
  482. {
  483. displayName = "Bohnen Schnapps";
  484. classname = "SP_bohnenschnapps";
  485. descriptionShort="so klein, kugelig alles in einem Schnapps?";
  486. mass=10;
  487. allowedSlots[]={901,801,701};
  488. };
  489. class SP_bohnen: SP_items
  490. {
  491. displayName = "Bohnen";
  492. classname = "SP_bohnen";
  493. descriptionShort="so klein und kugelig";
  494. mass=10;
  495. allowedSlots[]={901,801,701};
  496. };
  497. class SP_bread: SP_items
  498. {
  499. displayName = "Brot";
  500. classname = "SP_bread";
  501. descriptionShort="schön fluffig";
  502. mass=10;
  503. allowedSlots[]={901,801,701};
  504. };
  505. class SP_Mehl: SP_items
  506. {
  507. displayName = "Mehl";
  508. classname = "SP_Mehl";
  509. descriptionShort="Pulverig";
  510. mass=10;
  511. allowedSlots[]={901,801,701};
  512. };
  513. class SP_sunoil: SP_items
  514. {
  515. displayName = "Sonnenblumen ÖL";
  516. classname = "SP_sunoil";
  517. descriptionShort="Was ist der Unterschied?";
  518. mass=10;
  519. allowedSlots[]={901,801,701};
  520. };
  521. class SP_unsunoil: SP_items
  522. {
  523. displayName = "Unverarbeitetes Sonnenblumen ÖL";
  524. classname = "SP_unsunoil";
  525. descriptionShort="Was ist der Unterschied?";
  526. mass=10;
  527. allowedSlots[]={901,801,701};
  528. };
  529. class SP_oil: SP_items
  530. {
  531. displayName = "Öl";
  532. classname = "SP_oil";
  533. descriptionShort="heiß schwarz und klumpig? Was kann das sein ...";
  534. mass=10;
  535. allowedSlots[]={901,801,701};
  536. };
  537. class SP_unoil: SP_items
  538. {
  539. displayName = "unverarbeitetes Öl";
  540. classname = "SP_unoil";
  541. descriptionShort="heiß schwarz und klumpig? Was kann das sein ...";
  542. mass=10;
  543. allowedSlots[]={901,801,701};
  544. };
  545. class SP_Holz: SP_items
  546. {
  547. displayName = "Holz";
  548. classname = "SP_Holz";
  549. descriptionShort="hart";
  550. mass=10;
  551. allowedSlots[]={901,801,701};
  552. };
  553. class SP_unHolz: SP_items
  554. {
  555. displayName = "unverarbeitetes Holz";
  556. classname = "SP_unHolz";
  557. descriptionShort="hart";
  558. mass=10;
  559. allowedSlots[]={901,801,701};
  560. };
  561. class SP_Salz: SP_items
  562. {
  563. displayName = "Salz";
  564. classname = "SP_Salz";
  565. descriptionShort="salzig!";
  566. mass=10;
  567. allowedSlots[]={901,801,701};
  568. };
  569. class SP_unSalz: SP_items
  570. {
  571. displayName = "unverarbeitetes Salz";
  572. classname = "SP_unSalz";
  573. descriptionShort="salzig!";
  574. mass=10;
  575. allowedSlots[]={901,801,701};
  576. };
  577. class SP_Sand: SP_items
  578. {
  579. displayName = "Sand";
  580. classname = "SP_Sand";
  581. descriptionShort="sandig!";
  582. mass=10;
  583. allowedSlots[]={901,801,701};
  584. };
  585. class SP_glass: SP_items
  586. {
  587. displayName = "Glass";
  588. classname = "SP_glass";
  589. descriptionShort="kantig und scherbig";
  590. mass=10;
  591. allowedSlots[]={901,801,701};
  592. };
  593. class SP_Diamanten: SP_items
  594. {
  595. displayName = "Diamanten";
  596. classname = "SP_Diamanten";
  597. descriptionShort="glitzernd!";
  598. mass=10;
  599. allowedSlots[]={901,801,701};
  600. };
  601. class SP_unDiamanten: SP_items
  602. {
  603. displayName = "ungeschliffener Diamant";
  604. classname = "SP_unDiamanten";
  605. descriptionShort="so hart!";
  606. mass=10;
  607. allowedSlots[]={901,801,701};
  608. };
  609. class SP_cotton: SP_items
  610. {
  611. displayName = "Baumwolle";
  612. classname = "SP_cotton";
  613. descriptionShort="Kann man das immernoch essen?";
  614. model="\SP_items\farming\SP_cotton.p3d";
  615. picture="\SP_items\Pictures\SP_cotton.paa";
  616. mass=10;
  617. allowedSlots[]={901,801,701};
  618. };
  619. class SP_corn: SP_items
  620. {
  621. displayName = "Weizen";
  622. classname = "SP_corn";
  623. descriptionShort="Kann man das essen?";
  624. model="\SP_items\farming\SP_corn.p3d";
  625. picture="\SP_items\Pictures\SP_corn.paa";
  626. mass=10;
  627. allowedSlots[]={901,801,701};
  628. };
  629. class SP_Kokain: SP_items
  630. {
  631. displayName = "Kokain";
  632. classname = "SP_Kokain";
  633. descriptionShort="schnieff! schnieff!";
  634. model="\SP_items\farming\SP_Heroin.p3d";
  635. picture="\SP_items\Pictures\SP_Heroin.paa";
  636. mass=10;
  637. allowedSlots[]={901,801,701};
  638. };
  639. class SP_Heroin: SP_items
  640. {
  641. displayName = "Heroin";
  642. classname = "SP_Heroin";
  643. descriptionShort="spritz! spritz!";
  644. model="\SP_items\farming\SP_Heroin.p3d";
  645. picture="\SP_items\Pictures\SP_Heroin.paa";
  646. mass=10;
  647. allowedSlots[]={901,801,701};
  648. };
  649. class SP_unKokain: SP_items
  650. {
  651. displayName = "unverarbeitetes Kokain";
  652. classname = "SP_unKokain";
  653. descriptionShort="ich wusst nicht das dass erst fest ist";
  654. model="\SP_items\farming\SP_Heroin.p3d";
  655. picture="\SP_items\Pictures\SP_Heroin.paa";
  656. mass=10;
  657. allowedSlots[]={901,801,701};
  658. };
  659. class SP_Weed: SP_items
  660. {
  661. displayName = "Cannabis";
  662. classname = "SP_Weed";
  663. descriptionShort="schnieff! schnieff!";
  664. mass=10;
  665. allowedSlots[]={901,801,701};
  666. };
  667. class SP_unWeed: SP_items
  668. {
  669. displayName = "unverarbeitetes Cannabis";
  670. classname = "SP_unWeed";
  671. descriptionShort="ich wusst nicht das dass erst fest ist";
  672. mass=10;
  673. allowedSlots[]={901,801,701};
  674. };
  675. class SP_cement: SP_items
  676. {
  677. displayName = "Zement";
  678. classname = "SP_cement";
  679. descriptionShort="jetzt gehts damit ab in mein Haus";
  680. mass=10;
  681. allowedSlots[]={901,801,701};
  682. };
  683. class SP_stein: SP_items
  684. {
  685. displayName = "Steine";
  686. classname = "SP_stein";
  687. descriptionShort="ganz schön fest";
  688. mass=10;
  689. allowedSlots[]={901,801,701};
  690. };
  691. class SP_silverore: SP_items
  692. {
  693. displayName = "Silbererz";
  694. classname = "SP_silverore";
  695. descriptionShort="Silberig";
  696. model="\SP_items\farming\SP_silverore.p3d";
  697. picture="\SP_items\Pictures\SP_silverore.paa";
  698. mass=10;
  699. allowedSlots[]={901,801,701};
  700. };
  701. class SP_silverbar: SP_items
  702. {
  703. displayName = "Silberbarren";
  704. classname = "SP_silverbar";
  705. descriptionShort="Tatsächlich Silber";
  706. model="\SP_items\farming\SP_silverbar.p3d";
  707. picture="\SP_items\Pictures\SP_silverbar.paa";
  708. mass=10;
  709. allowedSlots[]={901,801,701};
  710. };
  711. class SP_ironore: SP_items
  712. {
  713. displayName = "Eisenerz";
  714. classname = "SP_ironore";
  715. descriptionShort="Blutig?";
  716. model="\SP_items\farming\SP_ironore.p3d";
  717. picture="\SP_items\Pictures\SP_ironore.paa";
  718. mass=10;
  719. allowedSlots[]={901,801,701};
  720. };
  721. class SP_ironbar: SP_items
  722. {
  723. displayName = "Eisenbarren";
  724. classname = "SP_ironbar";
  725. descriptionShort="BLUTBARREN";
  726. model="\SP_items\farming\SP_ironbar.p3d";
  727. picture="\SP_items\Pictures\SP_ironbar.paa";
  728. mass=10;
  729. allowedSlots[]={901,801,701};
  730. };
  731. class SP_copperore: SP_items
  732. {
  733. displayName = "Kupfererz";
  734. classname = "SP_copperore";
  735. descriptionShort="sehr schweres Geld";
  736. model="\SP_items\farming\SP_copperore.p3d";
  737. picture="\SP_items\Pictures\SP_copperore.paa";
  738. mass=10;
  739. allowedSlots[]={901,801,701};
  740. };
  741. class SP_copperbar: SP_items
  742. {
  743. displayName = "Kupferbarren";
  744. classname = "SP_copperbar";
  745. descriptionShort="Ist das wertvoll?";
  746. model="\SP_items\farming\SP_copperbar.p3d";
  747. picture="\SP_items\Pictures\SP_copperbar.paa";
  748. mass=10;
  749. allowedSlots[]={901,801,701};
  750. };
  751. class SP_Goldbarren: SP_items
  752. {
  753. displayName = "Goldbarren";
  754. classname = "SP_Goldbarren";
  755. descriptionShort="Das ist also immer im fetten roten container von meinem Vater!....";
  756. model="\SP_items\farming\SP_goldbar.p3d";
  757. picture="\SP_items\Pictures\SP_Goldbarren.paa";
  758. mass=10;
  759. allowedSlots[]={901,801,701};
  760. };
  761. /////////////Job items
  762. class SP_Barrel: SP_items
  763. {
  764. displayName = "Sprit Fass";
  765. classname = "SP_Barrel";
  766. descriptionShort="Daraus trinkt mein Vater immer !...";
  767. model="\SP_items\oil\barrel\SP_Barrel.p3d";
  768. picture="\SP_items\Pictures\SP_Barrel.paa";
  769. mass=10;
  770. allowedSlots[]={901,801,701};
  771. };
  772. class SP_Wunder: SP_items
  773. {
  774. displayName = "Wundertüte";
  775. classname = "SP_Wunder";
  776. descriptionShort="Puff!!! da ist ein Auto drin???";
  777. mass=10;
  778. allowedSlots[]={901,801,701};
  779. class Interactions
  780. {
  781. class Using: SP_using
  782. {
  783. effects[]=
  784. {
  785. {3,100,60},
  786. {2,10,5},
  787. {5,0.5,10}
  788. };
  789. };
  790. };
  791. };
  792. class SP_Box: SP_items
  793. {
  794. displayName = "Box";
  795. classname = "SP_Box";
  796. model="\SP_items\delivery\SP_Box.p3d";
  797. mass=10;
  798. allowedSlots[]={901,801,701};
  799. };
  800. /////////////Moebel items
  801. class SP_bar_cabinet: SP_items
  802. {
  803. displayName = "Minibar";
  804. classname = "SP_bar_cabinet";
  805. model="\SP_items\furniture\SP_bar_cabinet.p3d";
  806. mass=10;
  807. allowedSlots[]={901,801,701};
  808. class Interactions
  809. {
  810. class Using: SP_using
  811. {
  812. effects[]=
  813. {
  814. {3,100,60},
  815. {2,10,5},
  816. {5,0.5,10}
  817. };
  818. };
  819. };
  820. };
  821. class SP_bed: SP_items
  822. {
  823. displayName = "Queen Doppelbett";
  824. classname = "SP_bed";
  825. model="\SP_items\furniture\SP_bed.p3d";
  826. mass=10;
  827. allowedSlots[]={901,801,701};
  828. class Interactions
  829. {
  830. class Using: SP_using
  831. {
  832. effects[]=
  833. {
  834. {3,100,60},
  835. {2,10,5},
  836. {5,0.5,10}
  837. };
  838. };
  839. };
  840. };
  841. class SP_bed1: SP_items
  842. {
  843. displayName = "Holz Doppelbett";
  844. classname = "SP_bed1";
  845. model="\SP_items\furniture\SP_bed1.p3d";
  846. mass=10;
  847. allowedSlots[]={901,801,701};
  848. class Interactions
  849. {
  850. class Using: SP_using
  851. {
  852. effects[]=
  853. {
  854. {3,100,60},
  855. {2,10,5},
  856. {5,0.5,10}
  857. };
  858. };
  859. };
  860. };
  861. class SP_bed2: SP_items
  862. {
  863. displayName = "Holz Bett";
  864. classname = "SP_bed2";
  865. model="\SP_items\furniture\SP_bed2.p3d";
  866. mass=10;
  867. allowedSlots[]={901,801,701};
  868. class Interactions
  869. {
  870. class Using: SP_using
  871. {
  872. effects[]=
  873. {
  874. {3,100,60},
  875. {2,10,5},
  876. {5,0.5,10}
  877. };
  878. };
  879. };
  880. };
  881. class SP_bookshelf: SP_items
  882. {
  883. displayName = "Buchschrank";
  884. classname = "SP_bookshelf";
  885. model="\SP_items\furniture\SP_bookshelf.p3d";
  886. mass=10;
  887. allowedSlots[]={901,801,701};
  888. class Interactions
  889. {
  890. class Using: SP_using
  891. {
  892. effects[]=
  893. {
  894. {3,100,60},
  895. {2,10,5},
  896. {5,0.5,10}
  897. };
  898. };
  899. };
  900. };
  901. class SP_brush: SP_items
  902. {
  903. displayName = "Klobürste";
  904. classname = "SP_brush";
  905. model="\SP_items\furniture\SP_brush.p3d";
  906. mass=10;
  907. allowedSlots[]={901,801,701};
  908. class Interactions
  909. {
  910. class Using: SP_using
  911. {
  912. effects[]=
  913. {
  914. {3,100,60},
  915. {2,10,5},
  916. {5,0.5,10}
  917. };
  918. };
  919. };
  920. };
  921. class SP_cabinet1: SP_items
  922. {
  923. displayName = "Linker Schrank";
  924. classname = "SP_cabinet1";
  925. model="\SP_items\furniture\SP_cabinet1.p3d";
  926. mass=10;
  927. allowedSlots[]={901,801,701};
  928. class Interactions
  929. {
  930. class Using: SP_using
  931. {
  932. effects[]=
  933. {
  934. {3,100,60},
  935. {2,10,5},
  936. {5,0.5,10}
  937. };
  938. };
  939. };
  940. };
  941. class SP_cabinet2: SP_items
  942. {
  943. displayName = "Rechter Schrank";
  944. classname = "SP_cabinet2";
  945. model="\SP_items\furniture\SP_cabinet2.p3d";
  946. mass=10;
  947. allowedSlots[]={901,801,701};
  948. class Interactions
  949. {
  950. class Using: SP_using
  951. {
  952. effects[]=
  953. {
  954. {3,100,60},
  955. {2,10,5},
  956. {5,0.5,10}
  957. };
  958. };
  959. };
  960. };
  961. class SP_cabinet3: SP_items
  962. {
  963. displayName = "Einfacher Schrank";
  964. classname = "SP_cabinet3";
  965. model="\SP_items\furniture\SP_cabinet3.p3d";
  966. mass=10;
  967. allowedSlots[]={901,801,701};
  968. class Interactions
  969. {
  970. class Using: SP_using
  971. {
  972. effects[]=
  973. {
  974. {3,100,60},
  975. {2,10,5},
  976. {5,0.5,10}
  977. };
  978. };
  979. };
  980. };
  981. class SP_chair1: SP_items
  982. {
  983. displayName = "Klappstuhl";
  984. classname = "SP_chair1";
  985. model="\SP_items\furniture\SP_chair1.p3d";
  986. mass=10;
  987. allowedSlots[]={901,801,701};
  988. class Interactions
  989. {
  990. class Using: SP_using
  991. {
  992. effects[]=
  993. {
  994. {3,100,60},
  995. {2,10,5},
  996. {5,0.5,10}
  997. };
  998. };
  999. };
  1000. };
  1001. class SP_chair2: SP_items
  1002. {
  1003. displayName = "Drehstuhl";
  1004. classname = "SP_chair2";
  1005. model="\SP_items\furniture\SP_chair2.p3d";
  1006. mass=10;
  1007. allowedSlots[]={901,801,701};
  1008. class Interactions
  1009. {
  1010. class Using: SP_using
  1011. {
  1012. effects[]=
  1013. {
  1014. {3,100,60},
  1015. {2,10,5},
  1016. {5,0.5,10}
  1017. };
  1018. };
  1019. };
  1020. };
  1021. class SP_chair3: SP_items
  1022. {
  1023. displayName = "Sessel";
  1024. classname = "SP_chair3";
  1025. model="\SP_items\furniture\SP_chair3.p3d";
  1026. mass=10;
  1027. allowedSlots[]={901,801,701};
  1028. class Interactions
  1029. {
  1030. class Using: SP_using
  1031. {
  1032. effects[]=
  1033. {
  1034. {3,100,60},
  1035. {2,10,5},
  1036. {5,0.5,10}
  1037. };
  1038. };
  1039. };
  1040. };
  1041. class SP_chair4: SP_items
  1042. {
  1043. displayName = "BreiterSessel";
  1044. classname = "SP_chair4";
  1045. model="\SP_items\furniture\SP_chair4.p3d";
  1046. mass=10;
  1047. allowedSlots[]={901,801,701};
  1048. class Interactions
  1049. {
  1050. class Using: SP_using
  1051. {
  1052. effects[]=
  1053. {
  1054. {3,100,60},
  1055. {2,10,5},
  1056. {5,0.5,10}
  1057. };
  1058. };
  1059. };
  1060. };
  1061. class SP_coffeetable1: SP_items
  1062. {
  1063. displayName = "Kaffe Tisch";
  1064. classname = "SP_coffeetable1";
  1065. model="\SP_items\furniture\SP_coffeetable1.p3d";
  1066. mass=10;
  1067. allowedSlots[]={901,801,701};
  1068. class Interactions
  1069. {
  1070. class Using: SP_using
  1071. {
  1072. effects[]=
  1073. {
  1074. {3,100,60},
  1075. {2,10,5},
  1076. {5,0.5,10}
  1077. };
  1078. };
  1079. };
  1080. };
  1081. class SP_coffeetable2: SP_items
  1082. {
  1083. displayName = "moderner Sofa Tisch";
  1084. classname = "SP_coffeetable2";
  1085. model="\SP_items\furniture\SP_coffeetable2.p3d";
  1086. mass=10;
  1087. allowedSlots[]={901,801,701};
  1088. class Interactions
  1089. {
  1090. class Using: SP_using
  1091. {
  1092. effects[]=
  1093. {
  1094. {3,100,60},
  1095. {2,10,5},
  1096. {5,0.5,10}
  1097. };
  1098. };
  1099. };
  1100. };
  1101. class SP_coffeetable3: SP_items
  1102. {
  1103. displayName = "Holz Sofa Tisch";
  1104. classname = "SP_coffeetable3";
  1105. model="\SP_items\furniture\SP_coffeetable3.p3d";
  1106. mass=10;
  1107. allowedSlots[]={901,801,701};
  1108. class Interactions
  1109. {
  1110. class Using: SP_using
  1111. {
  1112. effects[]=
  1113. {
  1114. {3,100,60},
  1115. {2,10,5},
  1116. {5,0.5,10}
  1117. };
  1118. };
  1119. };
  1120. };
  1121. class SP_coffeetable4: SP_items
  1122. {
  1123. displayName = "Runder Sofa Tisch";
  1124. classname = "SP_coffeetable4";
  1125. model="\SP_items\furniture\SP_coffeetable4.p3d";
  1126. mass=10;
  1127. allowedSlots[]={901,801,701};
  1128. class Interactions
  1129. {
  1130. class Using: SP_using
  1131. {
  1132. effects[]=
  1133. {
  1134. {3,100,60},
  1135. {2,10,5},
  1136. {5,0.5,10}
  1137. };
  1138. };
  1139. };
  1140. };
  1141. class SP_cornersofa: SP_items
  1142. {
  1143. displayName = "Eck Sofa";
  1144. classname = "SP_cornersofa";
  1145. model="\SP_items\furniture\SP_cornersofa.p3d";
  1146. mass=10;
  1147. allowedSlots[]={901,801,701};
  1148. class Interactions
  1149. {
  1150. class Using: SP_using
  1151. {
  1152. effects[]=
  1153. {
  1154. {3,100,60},
  1155. {2,10,5},
  1156. {5,0.5,10}
  1157. };
  1158. };
  1159. };
  1160. };
  1161. class SP_diningchair: SP_items
  1162. {
  1163. displayName = "Ess Stuhl";
  1164. classname = "SP_diningchair";
  1165. model="\SP_items\furniture\SP_diningchair.p3d";
  1166. mass=10;
  1167. allowedSlots[]={901,801,701};
  1168. class Interactions
  1169. {
  1170. class Using: SP_using
  1171. {
  1172. effects[]=
  1173. {
  1174. {3,100,60},
  1175. {2,10,5},
  1176. {5,0.5,10}
  1177. };
  1178. };
  1179. };
  1180. };
  1181. class SP_diningtable: SP_items
  1182. {
  1183. displayName = "Ess Tisch";
  1184. classname = "SP_diningtable";
  1185. model="\SP_items\furniture\SP_diningtable.p3d";
  1186. mass=10;
  1187. allowedSlots[]={901,801,701};
  1188. class Interactions
  1189. {
  1190. class Using: SP_using
  1191. {
  1192. effects[]=
  1193. {
  1194. {3,100,60},
  1195. {2,10,5},
  1196. {5,0.5,10}
  1197. };
  1198. };
  1199. };
  1200. };
  1201. class SP_diningtableprops: SP_items
  1202. {
  1203. displayName = "Bedeckter Ess Tisch";
  1204. classname = "SP_diningtableprops";
  1205. model="\SP_items\furniture\SP_diningtableprops.p3d";
  1206. mass=10;
  1207. allowedSlots[]={901,801,701};
  1208. class Interactions
  1209. {
  1210. class Using: SP_using
  1211. {
  1212. effects[]=
  1213. {
  1214. {3,100,60},
  1215. {2,10,5},
  1216. {5,0.5,10}
  1217. };
  1218. };
  1219. };
  1220. };
  1221. class SP_dryingtowel: SP_items
  1222. {
  1223. displayName = "Handtuch Halter";
  1224. classname = "SP_dryingtowel";
  1225. model="\SP_items\furniture\SP_dryingtowel.p3d";
  1226. mass=10;
  1227. allowedSlots[]={901,801,701};
  1228. class Interactions
  1229. {
  1230. class Using: SP_using
  1231. {
  1232. effects[]=
  1233. {
  1234. {3,100,60},
  1235. {2,10,5},
  1236. {5,0.5,10}
  1237. };
  1238. };
  1239. };
  1240. };
  1241. class SP_flasket: SP_items
  1242. {
  1243. displayName = "Side Tisch";
  1244. classname = "SP_flasket";
  1245. model="\SP_items\furniture\SP_flasket.p3d";
  1246. mass=10;
  1247. allowedSlots[]={901,801,701};
  1248. class Interactions
  1249. {
  1250. class Using: SP_using
  1251. {
  1252. effects[]=
  1253. {
  1254. {3,100,60},
  1255. {2,10,5},
  1256. {5,0.5,10}
  1257. };
  1258. };
  1259. };
  1260. };
  1261. class SP_kitchenchair1: SP_items
  1262. {
  1263. displayName = "Küchen Stuhl 1";
  1264. classname = "SP_kitchenchair1";
  1265. model="\SP_items\furniture\SP_kitchenchair1.p3d";
  1266. mass=10;
  1267. allowedSlots[]={901,801,701};
  1268. class Interactions
  1269. {
  1270. class Using: SP_using
  1271. {
  1272. effects[]=
  1273. {
  1274. {3,100,60},
  1275. {2,10,5},
  1276. {5,0.5,10}
  1277. };
  1278. };
  1279. };
  1280. };
  1281. class SP_kitchenchair2: SP_items
  1282. {
  1283. displayName = "Küchen Stuhl 2";
  1284. classname = "SP_kitchenchair2";
  1285. model="\SP_items\furniture\SP_kitchenchair2.p3d";
  1286. mass=10;
  1287. allowedSlots[]={901,801,701};
  1288. class Interactions
  1289. {
  1290. class Using: SP_using
  1291. {
  1292. effects[]=
  1293. {
  1294. {3,100,60},
  1295. {2,10,5},
  1296. {5,0.5,10}
  1297. };
  1298. };
  1299. };
  1300. };
  1301. class SP_kitchenshelf1: SP_items
  1302. {
  1303. displayName = "Küchen Schrank 1";
  1304. classname = "SP_kitchenshelf1";
  1305. model="\SP_items\furniture\SP_kitchenshelf1.p3d";
  1306. mass=10;
  1307. allowedSlots[]={901,801,701};
  1308. class Interactions
  1309. {
  1310. class Using: SP_using
  1311. {
  1312. effects[]=
  1313. {
  1314. {3,100,60},
  1315. {2,10,5},
  1316. {5,0.5,10}
  1317. };
  1318. };
  1319. };
  1320. };
  1321. class SP_kitchenshelf2: SP_items
  1322. {
  1323. displayName = "Küchen Schrank 2";
  1324. classname = "SP_kitchenshelf2";
  1325. model="\SP_items\furniture\SP_kitchenshelf2.p3d";
  1326. mass=10;
  1327. allowedSlots[]={901,801,701};
  1328. class Interactions
  1329. {
  1330. class Using: SP_using
  1331. {
  1332. effects[]=
  1333. {
  1334. {3,100,60},
  1335. {2,10,5},
  1336. {5,0.5,10}
  1337. };
  1338. };
  1339. };
  1340. };
  1341. class SP_kitchenshelf3: SP_items
  1342. {
  1343. displayName = "Küchen Schrank 3";
  1344. classname = "SP_kitchenshelf3";
  1345. model="\SP_items\furniture\SP_kitchenshelf3.p3d";
  1346. mass=10;
  1347. allowedSlots[]={901,801,701};
  1348. class Interactions
  1349. {
  1350. class Using: SP_using
  1351. {
  1352. effects[]=
  1353. {
  1354. {3,100,60},
  1355. {2,10,5},
  1356. {5,0.5,10}
  1357. };
  1358. };
  1359. };
  1360. };
  1361. class SP_kitchenshelfcorner: SP_items
  1362. {
  1363. displayName = "Küchen Eckschrank";
  1364. classname = "SP_kitchenshelfcorner";
  1365. model="\SP_items\furniture\SP_kitchenshelfcorner.p3d";
  1366. mass=10;
  1367. allowedSlots[]={901,801,701};
  1368. class Interactions
  1369. {
  1370. class Using: SP_using
  1371. {
  1372. effects[]=
  1373. {
  1374. {3,100,60},
  1375. {2,10,5},
  1376. {5,0.5,10}
  1377. };
  1378. };
  1379. };
  1380. };
  1381. class SP_kitchentable1: SP_items
  1382. {
  1383. displayName = "Runder Küchen Tisch";
  1384. classname = "SP_kitchentable1";
  1385. model="\SP_items\furniture\SP_kitchentable1.p3d";
  1386. mass=10;
  1387. allowedSlots[]={901,801,701};
  1388. class Interactions
  1389. {
  1390. class Using: SP_using
  1391. {
  1392. effects[]=
  1393. {
  1394. {3,100,60},
  1395. {2,10,5},
  1396. {5,0.5,10}
  1397. };
  1398. };
  1399. };
  1400. };
  1401. class SP_kitchentable2: SP_items
  1402. {
  1403. displayName = "Küchen Tisch";
  1404. classname = "SP_kitchentable2";
  1405. model="\SP_items\furniture\SP_kitchentable2.p3d";
  1406. mass=10;
  1407. allowedSlots[]={901,801,701};
  1408. class Interactions
  1409. {
  1410. class Using: SP_using
  1411. {
  1412. effects[]=
  1413. {
  1414. {3,100,60},
  1415. {2,10,5},
  1416. {5,0.5,10}
  1417. };
  1418. };
  1419. };
  1420. };
  1421. class SP_lamp1: SP_items
  1422. {
  1423. displayName = "Steh Lampe";
  1424. classname = "SP_lamp1";
  1425. model="\SP_items\furniture\SP_lamp1.p3d";
  1426. mass=10;
  1427. allowedSlots[]={901,801,701};
  1428. class Interactions
  1429. {
  1430. class Using: SP_using
  1431. {
  1432. effects[]=
  1433. {
  1434. {3,100,60},
  1435. {2,10,5},
  1436. {5,0.5,10}
  1437. };
  1438. };
  1439. };
  1440. };
  1441. class SP_lamp2: SP_items
  1442. {
  1443. displayName = "Geknickte Steh Lampe";
  1444. classname = "SP_lamp2";
  1445. model="\SP_items\furniture\SP_lamp2.p3d";
  1446. mass=10;
  1447. allowedSlots[]={901,801,701};
  1448. class Interactions
  1449. {
  1450. class Using: SP_using
  1451. {
  1452. effects[]=
  1453. {
  1454. {3,100,60},
  1455. {2,10,5},
  1456. {5,0.5,10}
  1457. };
  1458. };
  1459. };
  1460. };
  1461. class SP_mirror: SP_items
  1462. {
  1463. displayName = "Bad Spiegel";
  1464. classname = "SP_mirror";
  1465. model="\SP_items\furniture\SP_mirror.p3d";
  1466. mass=10;
  1467. allowedSlots[]={901,801,701};
  1468. class Interactions
  1469. {
  1470. class Using: SP_using
  1471. {
  1472. effects[]=
  1473. {
  1474. {3,100,60},
  1475. {2,10,5},
  1476. {5,0.5,10}
  1477. };
  1478. };
  1479. };
  1480. };
  1481. class SP_modularkitchen1: SP_items
  1482. {
  1483. displayName = "1 Modulares Küchen Stück";
  1484. classname = "SP_modularkitchen1";
  1485. model="\SP_items\furniture\SP_modularkitchen1.p3d";
  1486. mass=10;
  1487. allowedSlots[]={901,801,701};
  1488. class Interactions
  1489. {
  1490. class Using: SP_using
  1491. {
  1492. effects[]=
  1493. {
  1494. {3,100,60},
  1495. {2,10,5},
  1496. {5,0.5,10}
  1497. };
  1498. };
  1499. };
  1500. };
  1501. class SP_modularkitchen2: SP_items
  1502. {
  1503. displayName = "2 Modulares Küchen Stück";
  1504. classname = "SP_modularkitchen2";
  1505. model="\SP_items\furniture\SP_modularkitchen2.p3d";
  1506. mass=10;
  1507. allowedSlots[]={901,801,701};
  1508. class Interactions
  1509. {
  1510. class Using: SP_using
  1511. {
  1512. effects[]=
  1513. {
  1514. {3,100,60},
  1515. {2,10,5},
  1516. {5,0.5,10}
  1517. };
  1518. };
  1519. };
  1520. };
  1521. class SP_modularkitchen3: SP_items
  1522. {
  1523. displayName = "3 Modulares Küchen Stück";
  1524. classname = "SP_modularkitchen3";
  1525. model="\SP_items\furniture\SP_modularkitchen3.p3d";
  1526. mass=10;
  1527. allowedSlots[]={901,801,701};
  1528. class Interactions
  1529. {
  1530. class Using: SP_using
  1531. {
  1532. effects[]=
  1533. {
  1534. {3,100,60},
  1535. {2,10,5},
  1536. {5,0.5,10}
  1537. };
  1538. };
  1539. };
  1540. };
  1541. class SP_modularkitchen4: SP_items
  1542. {
  1543. displayName = "4 Modulares Küchen Stück";
  1544. classname = "SP_modularkitchen4";
  1545. model="\SP_items\furniture\SP_modularkitchen4.p3d";
  1546. mass=10;
  1547. allowedSlots[]={901,801,701};
  1548. class Interactions
  1549. {
  1550. class Using: SP_using
  1551. {
  1552. effects[]=
  1553. {
  1554. {3,100,60},
  1555. {2,10,5},
  1556. {5,0.5,10}
  1557. };
  1558. };
  1559. };
  1560. };
  1561. class SP_plasticcase_large: SP_items
  1562. {
  1563. displayName = "Plastik Box";
  1564. classname = "SP_plasticcase_large";
  1565. model="\SP_items\furniture\SP_plasticcase_large.p3d";
  1566. mass=10;
  1567. allowedSlots[]={901,801,701};
  1568. class Interactions
  1569. {
  1570. class Using: SP_using
  1571. {
  1572. effects[]=
  1573. {
  1574. {3,100,60},
  1575. {2,10,5},
  1576. {5,0.5,10}
  1577. };
  1578. };
  1579. };
  1580. };
  1581. class SP_pouf: SP_items
  1582. {
  1583. displayName = "Fuß auflage";
  1584. classname = "SP_pouf";
  1585. model="\SP_items\furniture\SP_pouf.p3d";
  1586. mass=10;
  1587. allowedSlots[]={901,801,701};
  1588. class Interactions
  1589. {
  1590. class Using: SP_using
  1591. {
  1592. effects[]=
  1593. {
  1594. {3,100,60},
  1595. {2,10,5},
  1596. {5,0.5,10}
  1597. };
  1598. };
  1599. };
  1600. };
  1601. class SP_rack1: SP_items
  1602. {
  1603. displayName = "Buchschrank";
  1604. classname = "SP_rack1";
  1605. model="\SP_items\furniture\SP_rack1.p3d";
  1606. mass=10;
  1607. allowedSlots[]={901,801,701};
  1608. class Interactions
  1609. {
  1610. class Using: SP_using
  1611. {
  1612. effects[]=
  1613. {
  1614. {3,100,60},
  1615. {2,10,5},
  1616. {5,0.5,10}
  1617. };
  1618. };
  1619. };
  1620. };
  1621. class SP_rack2: SP_items
  1622. {
  1623. displayName = "Einfacher Buchschrank";
  1624. classname = "SP_rack2";
  1625. model="\SP_items\furniture\SP_rack2.p3d";
  1626. mass=10;
  1627. allowedSlots[]={901,801,701};
  1628. class Interactions
  1629. {
  1630. class Using: SP_using
  1631. {
  1632. effects[]=
  1633. {
  1634. {3,100,60},
  1635. {2,10,5},
  1636. {5,0.5,10}
  1637. };
  1638. };
  1639. };
  1640. };
  1641. class SP_sofa1: SP_items
  1642. {
  1643. displayName = "1 Sofa";
  1644. classname = "SP_sofa1";
  1645. model="\SP_items\furniture\SP_sofa1.p3d";
  1646. mass=10;
  1647. allowedSlots[]={901,801,701};
  1648. class Interactions
  1649. {
  1650. class Using: SP_using
  1651. {
  1652. effects[]=
  1653. {
  1654. {3,100,60},
  1655. {2,10,5},
  1656. {5,0.5,10}
  1657. };
  1658. };
  1659. };
  1660. };
  1661. class SP_sofa2: SP_items
  1662. {
  1663. displayName = "2 Sofa";
  1664. classname = "SP_sofa2";
  1665. model="\SP_items\furniture\SP_sofa2.p3d";
  1666. mass=10;
  1667. allowedSlots[]={901,801,701};
  1668. class Interactions
  1669. {
  1670. class Using: SP_using
  1671. {
  1672. effects[]=
  1673. {
  1674. {3,100,60},
  1675. {2,10,5},
  1676. {5,0.5,10}
  1677. };
  1678. };
  1679. };
  1680. };
  1681. class SP_sofa3: SP_items
  1682. {
  1683. displayName = "3 Sofa";
  1684. classname = "SP_sofa3";
  1685. model="\SP_items\furniture\SP_sofa3.p3d";
  1686. mass=10;
  1687. allowedSlots[]={901,801,701};
  1688. class Interactions
  1689. {
  1690. class Using: SP_using
  1691. {
  1692. effects[]=
  1693. {
  1694. {3,100,60},
  1695. {2,10,5},
  1696. {5,0.5,10}
  1697. };
  1698. };
  1699. };
  1700. };
  1701. class SP_sofa4: SP_items
  1702. {
  1703. displayName = "4 Sofa";
  1704. classname = "SP_sofa4";
  1705. model="\SP_items\furniture\SP_sofa4.p3d";
  1706. mass=10;
  1707. allowedSlots[]={901,801,701};
  1708. class Interactions
  1709. {
  1710. class Using: SP_using
  1711. {
  1712. effects[]=
  1713. {
  1714. {3,100,60},
  1715. {2,10,5},
  1716. {5,0.5,10}
  1717. };
  1718. };
  1719. };
  1720. };
  1721. class SP_sofa5: SP_items
  1722. {
  1723. displayName = "5 Sofa";
  1724. classname = "SP_sofa5";
  1725. model="\SP_items\furniture\SP_sofa5.p3d";
  1726. mass=10;
  1727. allowedSlots[]={901,801,701};
  1728. class Interactions
  1729. {
  1730. class Using: SP_using
  1731. {
  1732. effects[]=
  1733. {
  1734. {3,100,60},
  1735. {2,10,5},
  1736. {5,0.5,10}
  1737. };
  1738. };
  1739. };
  1740. };
  1741. class SP_sofa6: SP_items
  1742. {
  1743. displayName = "6 Sofa";
  1744. classname = "SP_sofa6";
  1745. model="\SP_items\furniture\SP_sofa6.p3d";
  1746. mass=10;
  1747. allowedSlots[]={901,801,701};
  1748. class Interactions
  1749. {
  1750. class Using: SP_using
  1751. {
  1752. effects[]=
  1753. {
  1754. {3,100,60},
  1755. {2,10,5},
  1756. {5,0.5,10}
  1757. };
  1758. };
  1759. };
  1760. };
  1761. class SP_table1: SP_items
  1762. {
  1763. displayName = "Arbeitstisch";
  1764. classname = "SP_table1";
  1765. model="\SP_items\furniture\SP_table1.p3d";
  1766. mass=10;
  1767. allowedSlots[]={901,801,701};
  1768. class Interactions
  1769. {
  1770. class Using: SP_using
  1771. {
  1772. effects[]=
  1773. {
  1774. {3,100,60},
  1775. {2,10,5},
  1776. {5,0.5,10}
  1777. };
  1778. };
  1779. };
  1780. };
  1781. class SP_table2: SP_items
  1782. {
  1783. displayName = "Büro Tisch";
  1784. classname = "SP_table2";
  1785. model="\SP_items\furniture\SP_table2.p3d";
  1786. mass=10;
  1787. allowedSlots[]={901,801,701};
  1788. class Interactions
  1789. {
  1790. class Using: SP_using
  1791. {
  1792. effects[]=
  1793. {
  1794. {3,100,60},
  1795. {2,10,5},
  1796. {5,0.5,10}
  1797. };
  1798. };
  1799. };
  1800. };
  1801. class SP_tvtable1: SP_items
  1802. {
  1803. displayName = "Fernseh Tisch";
  1804. classname = "SP_tvtable1";
  1805. model="\SP_items\furniture\SP_tvtable1.p3d";
  1806. mass=10;
  1807. allowedSlots[]={901,801,701};
  1808. class Interactions
  1809. {
  1810. class Using: SP_using
  1811. {
  1812. effects[]=
  1813. {
  1814. {3,100,60},
  1815. {2,10,5},
  1816. {5,0.5,10}
  1817. };
  1818. };
  1819. };
  1820. };
  1821. class SP_tvtable2: SP_items
  1822. {
  1823. displayName = "Alter Fernseh Schrank";
  1824. classname = "SP_tvtable2";
  1825. model="\SP_items\furniture\SP_tvtable2.p3d";
  1826. mass=10;
  1827. allowedSlots[]={901,801,701};
  1828. class Interactions
  1829. {
  1830. class Using: SP_using
  1831. {
  1832. effects[]=
  1833. {
  1834. {3,100,60},
  1835. {2,10,5},
  1836. {5,0.5,10}
  1837. };
  1838. };
  1839. };
  1840. };
  1841. class SP_Tisch: SP_items
  1842. {
  1843. displayName = "Tisch";
  1844. classname = "SP_Tisch";
  1845. descriptionShort="halt ein Tisch";
  1846. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  1847. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  1848. mass=10;
  1849. allowedSlots[]={901,801,701};
  1850. class Interactions
  1851. {
  1852. class Using: SP_using
  1853. {
  1854. effects[]=
  1855. {
  1856. {3,100,60},
  1857. {2,10,5},
  1858. {5,0.5,10}
  1859. };
  1860. };
  1861. };
  1862. };
  1863. class SP_Drehstuhl: SP_items
  1864. {
  1865. displayName = "Drehstuhl";
  1866. classname = "SP_Drehstuhl";
  1867. descriptionShort="halt ein Drehstuhl";
  1868. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  1869. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  1870. mass=10;
  1871. allowedSlots[]={901,801,701};
  1872. class Interactions
  1873. {
  1874. class Using: SP_using
  1875. {
  1876. effects[]=
  1877. {
  1878. {3,100,60},
  1879. {2,10,5},
  1880. {5,0.5,10}
  1881. };
  1882. };
  1883. };
  1884. };
  1885. class SP_Bett: SP_items
  1886. {
  1887. displayName = "Bett";
  1888. classname = "SP_Bett";
  1889. descriptionShort="halt ein Bett";
  1890. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  1891. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  1892. mass=10;
  1893. allowedSlots[]={901,801,701};
  1894. class Interactions
  1895. {
  1896. class Using: SP_using
  1897. {
  1898. effects[]=
  1899. {
  1900. {3,100,60},
  1901. {2,10,5},
  1902. {5,0.5,10}
  1903. };
  1904. };
  1905. };
  1906. };
  1907. class SP_Kuehlschrank: SP_items
  1908. {
  1909. displayName = "Kuehlschrank";
  1910. classname = "SP_Kuehlschrank";
  1911. descriptionShort="ein kuehler Schrank";
  1912. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  1913. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  1914. mass=10;
  1915. allowedSlots[]={901,801,701};
  1916. class Interactions
  1917. {
  1918. class Using: SP_using
  1919. {
  1920. effects[]=
  1921. {
  1922. {3,100,60},
  1923. {2,10,5},
  1924. {5,0.5,10}
  1925. };
  1926. };
  1927. };
  1928. };
  1929. class SP_Sofa: SP_items
  1930. {
  1931. displayName = "Sofa";
  1932. classname = "SP_Sofa";
  1933. descriptionShort="halt ein Sofa";
  1934. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  1935. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  1936. mass=10;
  1937. allowedSlots[]={901,801,701};
  1938. class Interactions
  1939. {
  1940. class Using: SP_Drinking
  1941. {
  1942. effects[]=
  1943. {
  1944. {3,100,60},
  1945. {2,10,5},
  1946. {5,0.5,10}
  1947. };
  1948. };
  1949. };
  1950. };
  1951. class SP_Wasserspender: SP_items
  1952. {
  1953. displayName = "Wasserspender";
  1954. classname = "SP_Wasserspender";
  1955. descriptionShort="halt ein Wasserspender";
  1956. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  1957. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  1958. mass=10;
  1959. allowedSlots[]={901,801,701};
  1960. class Interactions
  1961. {
  1962. class Using: SP_Drinking
  1963. {
  1964. effects[]=
  1965. {
  1966. {3,100,60},
  1967. {2,10,5},
  1968. {5,0.5,10}
  1969. };
  1970. };
  1971. };
  1972. };
  1973. class SP_Sessel: SP_items
  1974. {
  1975. displayName = "Sessel";
  1976. classname = "SP_Sessel";
  1977. descriptionShort="halt ein Sessel";
  1978. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  1979. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  1980. mass=10;
  1981. allowedSlots[]={901,801,701};
  1982. class Interactions
  1983. {
  1984. class Using: SP_using
  1985. {
  1986. effects[]=
  1987. {
  1988. {3,100,60},
  1989. {2,10,5},
  1990. {5,0.5,10}
  1991. };
  1992. };
  1993. };
  1994. };
  1995. class SP_Kuechentisch: SP_items
  1996. {
  1997. displayName = "Kuechentisch";
  1998. classname = "SP_Kuechentisch";
  1999. descriptionShort="halt ein Kuechentisch";
  2000. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  2001. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  2002. mass=10;
  2003. allowedSlots[]={901,801,701};
  2004. class Interactions
  2005. {
  2006. class Using: SP_using
  2007. {
  2008. effects[]=
  2009. {
  2010. {3,100,60},
  2011. {2,10,5},
  2012. {5,0.5,10}
  2013. };
  2014. };
  2015. };
  2016. };
  2017. class SP_Teppich: SP_items
  2018. {
  2019. displayName = "Teppich";
  2020. classname = "SP_Teppich";
  2021. descriptionShort="halt ein Tepppich";
  2022. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  2023. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  2024. mass=10;
  2025. allowedSlots[]={901,801,701};
  2026. class Interactions
  2027. {
  2028. class Using: SP_using
  2029. {
  2030. effects[]=
  2031. {
  2032. {3,100,60},
  2033. {2,10,5},
  2034. {5,0.5,10}
  2035. };
  2036. };
  2037. };
  2038. };
  2039. class SP_Sitzbank: SP_items
  2040. {
  2041. displayName = "Tisch";
  2042. classname = "SP_Sitzbank";
  2043. descriptionShort="halt ein Tisch";
  2044. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  2045. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  2046. mass=10;
  2047. allowedSlots[]={901,801,701};
  2048. class Interactions
  2049. {
  2050. class Using: SP_using
  2051. {
  2052. effects[]=
  2053. {
  2054. {3,100,60},
  2055. {2,10,5},
  2056. {5,0.5,10}
  2057. };
  2058. };
  2059. };
  2060. };
  2061. class SP_moebelschrank: SP_items
  2062. {
  2063. displayName = "Moebelschrank";
  2064. classname = "SP_moebelschrank";
  2065. descriptionShort="halt ein Moebelschrank";
  2066. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  2067. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  2068. mass=10;
  2069. allowedSlots[]={901,801,701};
  2070. class Interactions
  2071. {
  2072. class Using: SP_using
  2073. {
  2074. effects[]=
  2075. {
  2076. {3,100,60},
  2077. {2,10,5},
  2078. {5,0.5,10}
  2079. };
  2080. };
  2081. };
  2082. };
  2083. class SP_whiteboard: SP_items
  2084. {
  2085. displayName = "Whiteboard";
  2086. classname = "SP_whiteboard";
  2087. descriptionShort="halt ein Whiteboard";
  2088. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  2089. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  2090. mass=10;
  2091. allowedSlots[]={901,801,701};
  2092. class Interactions
  2093. {
  2094. class Using: SP_using
  2095. {
  2096. effects[]=
  2097. {
  2098. {3,100,60},
  2099. {2,10,5},
  2100. {5,0.5,10}
  2101. };
  2102. };
  2103. };
  2104. };
  2105. class SP_Gartentisch: SP_items
  2106. {
  2107. displayName = "Gartentisch";
  2108. classname = "SP_Gartentisch";
  2109. descriptionShort="halt ein Gartentisch";
  2110. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  2111. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  2112. mass=10;
  2113. allowedSlots[]={901,801,701};
  2114. class Interactions
  2115. {
  2116. class Using: SP_using
  2117. {
  2118. effects[]=
  2119. {
  2120. {3,100,60},
  2121. {2,10,5},
  2122. {5,0.5,10}
  2123. };
  2124. };
  2125. };
  2126. };
  2127. class SP_Gartenstuhl: SP_items
  2128. {
  2129. displayName = "Gartenstuhl";
  2130. classname = "SP_Gartenstuhl";
  2131. descriptionShort="halt ein Gartenstuhl";
  2132. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  2133. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  2134. mass=10;
  2135. allowedSlots[]={901,801,701};
  2136. class Interactions
  2137. {
  2138. class Using: SP_using
  2139. {
  2140. effects[]=
  2141. {
  2142. {3,100,60},
  2143. {2,10,5},
  2144. {5,0.5,10}
  2145. };
  2146. };
  2147. };
  2148. };
  2149. class SP_PlasticStuhl: SP_items
  2150. {
  2151. displayName = "Plastik Stuhl";
  2152. classname = "SP_PlasticStuhl";
  2153. descriptionShort="halt ein Plastik Stuhl";
  2154. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  2155. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  2156. mass=10;
  2157. allowedSlots[]={901,801,701};
  2158. class Interactions
  2159. {
  2160. class Using: SP_using
  2161. {
  2162. effects[]=
  2163. {
  2164. {3,100,60},
  2165. {2,10,5},
  2166. {5,0.5,10}
  2167. };
  2168. };
  2169. };
  2170. };
  2171. class SP_Tischlampe: SP_items
  2172. {
  2173. displayName = "Tischlampe";
  2174. classname = "SP_Tischlampe";
  2175. descriptionShort="halt eine Tischlampe";
  2176. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  2177. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  2178. mass=10;
  2179. allowedSlots[]={901,801,701};
  2180. class Interactions
  2181. {
  2182. class Using: SP_using
  2183. {
  2184. effects[]=
  2185. {
  2186. {3,100,60},
  2187. {2,10,5},
  2188. {5,0.5,10}
  2189. };
  2190. };
  2191. };
  2192. };
  2193. class SP_MetallSchrank: SP_items
  2194. {
  2195. displayName = "Metall Schrank";
  2196. classname = "SP_MetallSchrank";
  2197. descriptionShort="halt ein Metall Schrank";
  2198. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  2199. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  2200. mass=10;
  2201. allowedSlots[]={901,801,701};
  2202. class Interactions
  2203. {
  2204. class Using: SP_using
  2205. {
  2206. effects[]=
  2207. {
  2208. {3,100,60},
  2209. {2,10,5},
  2210. {5,0.5,10}
  2211. };
  2212. };
  2213. };
  2214. };
  2215. class SP_HolzSchrank: SP_items
  2216. {
  2217. displayName = "Holzschrank";
  2218. classname = "SP_HolzSchrank";
  2219. descriptionShort="halt ein Holz Schrank";
  2220. model="\A3\Structures_F\Items\Food\BottlePlastic_V1_F.p3d";
  2221. picture="\SP_items\Pictures\Syndicat_Logo.paa";
  2222. mass=10;
  2223. allowedSlots[]={901,801,701};
  2224. class Interactions
  2225. {
  2226. class Using: SP_using
  2227. {
  2228. effects[]=
  2229. {
  2230. {3,100,60},
  2231. {2,10,5},
  2232. {5,0.5,10}
  2233. };
  2234. };
  2235. };
  2236. };
  2237. class SP_ammobox: SP_items
  2238. {
  2239. displayName = "Magazinbox";
  2240. classname = "SP_ammobox";
  2241. descriptionShort="brrr brrr";
  2242. model="\a3\supplies_f_heli\cargonets\cargonet_01_ammo_f.p3d";
  2243. picture="\a3\editorpreviews_f\data\cfgvehicles\i_cargonet_01_ammo_f.jpg";
  2244. mass=10;
  2245. allowedSlots[]={901,801,701};
  2246. class Interactions
  2247. {
  2248. class Using: SP_using
  2249. {
  2250. effects[]=
  2251. {
  2252. {3,100,60},
  2253. {2,10,5},
  2254. {5,0.5,10}
  2255. };
  2256. };
  2257. };
  2258. };
  2259. class SP_box_genequip: SP_items
  2260. {
  2261. displayName = "Boxequipement";
  2262. classname = "SP_box_genequip";
  2263. descriptionShort="halt equipment";
  2264. model="\a3\supplies_f_exp\ammoboxes\equipment_box_f.p3d";
  2265. picture="\a3\editorpreviews_f_exp\data\cfgvehicles\box_gen_equip_f.jpg";
  2266. mass=10;
  2267. allowedSlots[]={901,801,701};
  2268. class Interactions
  2269. {
  2270. class Using: SP_using
  2271. {
  2272. effects[]=
  2273. {
  2274. {3,100,60},
  2275. {2,10,5},
  2276. {5,0.5,10}
  2277. };
  2278. };
  2279. };
  2280. };
  2281. class SP_cargobox: SP_items
  2282. {
  2283. displayName = "Magazinbox";
  2284. classname = "SP_cargobox";
  2285. descriptionShort="brrr brrr";
  2286. model="\a3\supplies_f_heli\cargonets\cargonet_01_box_f.p3d";
  2287. picture="\a3\editorpreviews_f\data\cfgvehicles\i_cargonet_01_ammo_f.jpg";
  2288. mass=10;
  2289. allowedSlots[]={901,801,701};
  2290. class Interactions
  2291. {
  2292. class Using: SP_using
  2293. {
  2294. effects[]=
  2295. {
  2296. {3,100,60},
  2297. {2,10,5},
  2298. {5,0.5,10}
  2299. };
  2300. };
  2301. };
  2302. };
  2303. /////////////Medic Stuff
  2304. class SP_Defibrillator: SP_items
  2305. {
  2306. displayName="Defibrillator";
  2307. classname = "SP_Defibrillator";
  2308. descriptionShort="Geil endlich kann ich mal was sinnvolles tun";
  2309. model="\SP_items\other\SP_Defibrillator.p3d";
  2310. picture="\SP_items\Pictures\SP_Defibrillator.paa";
  2311. mass=20;
  2312. allowedSlots[]={901,801,701};
  2313. };
  2314. /////////////COP Stuff
  2315. class SP_Defusekit: SP_items
  2316. {
  2317. displayName="Defusekit";
  2318. classname = "SP_Defusekit";
  2319. descriptionShort="Geil endlich kann ich mal was sinnvolles tun";
  2320. model="\SP_items\other\SP_defusekit.p3d";
  2321. picture="\SP_items\Pictures\SP_Defusekit.paa";
  2322. mass=20;
  2323. allowedSlots[]={901,801,701};
  2324. };
  2325. class SP_Handschellen: SP_items
  2326. {
  2327. displayName="Handschellen";
  2328. classname = "SP_Handschellen";
  2329. descriptionShort="Zack weg!";
  2330. model="\SP_items\other\SP_Handcuffs.p3d";
  2331. picture="\SP_items\Pictures\SP_Handcuffs.paa";
  2332. mass=10;
  2333. allowedSlots[]={901,801,701};
  2334. };
  2335. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement