Advertisement
KimonK

Untitled

Dec 18th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.00 KB | None | 0 0
  1.  
  2. DarkRP.createShipment("IMI Desert Eagle", {
  3. model = "models/weapons/w_pist_deagle.mdl",
  4. entity = "cw_deagle",
  5. price = 1000, // Price for a shipment
  6. amount = 10, // How many in a shipment
  7. separate = true,
  8. pricesep = 100, // Price of individual guns
  9. noship = false,
  10. allowed = {TEAM_GUN}, // Allowed teams
  11. })
  12.  
  13.  
  14. DarkRP.createShipment("MR96", {
  15. model = "models/weapons/w_357.mdl",
  16. entity = "cw_mr96",
  17. price = 1000, // Price for a shipment
  18. amount = 10, // How many in a shipment
  19. separate = true,
  20. pricesep = 100, // Price of individual guns
  21. noship = false,
  22. allowed = {TEAM_GUN}, // Allowed teams
  23. })
  24.  
  25.  
  26. DarkRP.createShipment("G3A3", {
  27. model = "models/weapons/w_snip_g3sg1.mdl",
  28. entity = "cw_g3a3",
  29. price = 1000, // Price for a shipment
  30. amount = 10, // How many in a shipment
  31. separate = true,
  32. pricesep = 100, // Price of individual guns
  33. noship = false,
  34. allowed = {TEAM_GUN}, // Allowed teams
  35. })
  36.  
  37.  
  38. DarkRP.createShipment("L115", {
  39. model = "models/weapons/w_cstm_l96.mdl",
  40. entity = "cw_l115",
  41. price = 1000, // Price for a shipment
  42. amount = 10, // How many in a shipment
  43. separate = true,
  44. pricesep = 100, // Price of individual guns
  45. noship = false,
  46. allowed = {TEAM_GUN}, // Allowed teams
  47. })
  48.  
  49.  
  50. DarkRP.createShipment("Smoke Grenade", {
  51. model = "models/weapons/w_eq_smokegrenade.mdl",
  52. entity = "cw_smoke_grenade",
  53. price = 1000, // Price for a shipment
  54. amount = 10, // How many in a shipment
  55. separate = true,
  56. pricesep = 100, // Price of individual guns
  57. noship = false,
  58. allowed = {TEAM_GUN}, // Allowed teams
  59. })
  60.  
  61.  
  62. DarkRP.createShipment("AK-74", {
  63. model = "models/weapons/w_rif_ak47.mdl",
  64. entity = "cw_ak74",
  65. price = 1000, // Price for a shipment
  66. amount = 10, // How many in a shipment
  67. separate = true,
  68. pricesep = 100, // Price of individual guns
  69. noship = false,
  70. allowed = {TEAM_GUN}, // Allowed teams
  71. })
  72.  
  73.  
  74. DarkRP.createShipment("Frag Grenade", {
  75. model = "models/weapons/w_cw_fraggrenade_thrown.mdl",
  76. entity = "cw_frag_grenade",
  77. price = 1000, // Price for a shipment
  78. amount = 10, // How many in a shipment
  79. separate = true,
  80. pricesep = 100, // Price of individual guns
  81. noship = false,
  82. allowed = {TEAM_GUN}, // Allowed teams
  83. })
  84.  
  85.  
  86. DarkRP.createShipment("HK MP5", {
  87. model = "models/weapons/w_smg_mp5.mdl",
  88. entity = "cw_mp5",
  89. price = 1000, // Price for a shipment
  90. amount = 10, // How many in a shipment
  91. separate = true,
  92. pricesep = 100, // Price of individual guns
  93. noship = false,
  94. allowed = {TEAM_GUN}, // Allowed teams
  95. })
  96.  
  97.  
  98. DarkRP.createShipment("Flash Grenade", {
  99. model = "models/weapons/w_eq_flashbang.mdl",
  100. entity = "cw_flash_grenade",
  101. price = 1000, // Price for a shipment
  102. amount = 10, // How many in a shipment
  103. separate = true,
  104. pricesep = 100, // Price of individual guns
  105. noship = false,
  106. allowed = {TEAM_GUN}, // Allowed teams
  107. })
  108.  
  109.  
  110. DarkRP.createShipment("AR-15", {
  111. model = "models/weapons/w_rif_m4a1.mdl",
  112. entity = "cw_ar15",
  113. price = 1000, // Price for a shipment
  114. amount = 10, // How many in a shipment
  115. separate = true,
  116. pricesep = 100, // Price of individual guns
  117. noship = false,
  118. allowed = {TEAM_GUN}, // Allowed teams
  119. })
  120. DarkRP.createShipment("M1 Carbine", {
  121. model = "models/weapons/w_khri_m1car.mdl",
  122. entity = "khr_m1carbine",
  123. price = 1000, // Price for a shipment
  124. amount = 10, // How many in a shipment
  125. separate = true,
  126. pricesep = 100, // Price of individual guns
  127. noship = false,
  128. allowed = {TEAM_GUN}, // Allowed teams
  129. })
  130.  
  131.  
  132. DarkRP.createShipment("Stevens M620", {
  133. model = "models/weapons/w_khri_stevenm62.mdl",
  134. entity = "khr_m620",
  135. price = 1000, // Price for a shipment
  136. amount = 10, // How many in a shipment
  137. separate = true,
  138. pricesep = 100, // Price of individual guns
  139. noship = false,
  140. allowed = {TEAM_GUN}, // Allowed teams
  141. })
  142.  
  143.  
  144. DarkRP.createShipment("M92FS", {
  145. model = "models/weapons/w_pist_elite_single.mdl",
  146. entity = "khr_m92fs",
  147. price = 1000, // Price for a shipment
  148. amount = 10, // How many in a shipment
  149. separate = true,
  150. pricesep = 100, // Price of individual guns
  151. noship = false,
  152. allowed = {TEAM_GUN}, // Allowed teams
  153. })
  154.  
  155.  
  156. DarkRP.createShipment("OTs-33 Pernach", {
  157. model = "models/weapons/w_pist_glock18.mdl",
  158. entity = "khr_ots33",
  159. price = 1000, // Price for a shipment
  160. amount = 10, // How many in a shipment
  161. separate = true,
  162. pricesep = 100, // Price of individual guns
  163. noship = false,
  164. allowed = {TEAM_GUN}, // Allowed teams
  165. })
  166.  
  167.  
  168. DarkRP.createShipment("MP5A4", {
  169. model = "models/weapons/w_smg_mp5.mdl",
  170. entity = "khr_mp5a4",
  171. price = 1000, // Price for a shipment
  172. amount = 10, // How many in a shipment
  173. separate = true,
  174. pricesep = 100, // Price of individual guns
  175. noship = false,
  176. allowed = {TEAM_GUN}, // Allowed teams
  177. })
  178.  
  179.  
  180. DarkRP.createShipment("FN FAL", {
  181. model = "models/weapons/w_snip_g3sg1.mdl",
  182. entity = "khr_fnfal",
  183. price = 1000, // Price for a shipment
  184. amount = 10, // How many in a shipment
  185. separate = true,
  186. pricesep = 100, // Price of individual guns
  187. noship = false,
  188. allowed = {TEAM_GUN}, // Allowed teams
  189. })
  190.  
  191.  
  192. DarkRP.createShipment("Sterling L2A3", {
  193. model = "models/weapons/w_smg_mp5.mdl",
  194. entity = "khr_l2a3",
  195. price = 1000, // Price for a shipment
  196. amount = 10, // How many in a shipment
  197. separate = true,
  198. pricesep = 100, // Price of individual guns
  199. noship = false,
  200. allowed = {TEAM_GUN}, // Allowed teams
  201. })
  202.  
  203.  
  204. DarkRP.createShipment("MP5A5", {
  205. model = "models/weapons/w_smg_mp5.mdl",
  206. entity = "khr_mp5a5",
  207. price = 1000, // Price for a shipment
  208. amount = 10, // How many in a shipment
  209. separate = true,
  210. pricesep = 100, // Price of individual guns
  211. noship = false,
  212. allowed = {TEAM_GUN}, // Allowed teams
  213. })
  214.  
  215.  
  216. DarkRP.createShipment("CZ-52", {
  217. model = "models/weapons/w_pist_p228.mdl",
  218. entity = "khr_cz52",
  219. price = 1000, // Price for a shipment
  220. amount = 10, // How many in a shipment
  221. separate = true,
  222. pricesep = 100, // Price of individual guns
  223. noship = false,
  224. allowed = {TEAM_GUN}, // Allowed teams
  225. })
  226.  
  227.  
  228. DarkRP.createShipment("SKS", {
  229. model = "models/weapons/w_rif_ak47.mdl",
  230. entity = "khr_sks",
  231. price = 1000, // Price for a shipment
  232. amount = 10, // How many in a shipment
  233. separate = true,
  234. pricesep = 100, // Price of individual guns
  235. noship = false,
  236. allowed = {TEAM_GUN}, // Allowed teams
  237. })
  238.  
  239.  
  240. DarkRP.createShipment("KRISS Vector", {
  241. model = "models/weapons/w_smg_ump45.mdl",
  242. entity = "khr_vector",
  243. price = 1000, // Price for a shipment
  244. amount = 10, // How many in a shipment
  245. separate = true,
  246. pricesep = 100, // Price of individual guns
  247. noship = false,
  248. allowed = {TEAM_GUN}, // Allowed teams
  249. })
  250.  
  251.  
  252. DarkRP.createShipment("Ruger P345", {
  253. model = "models/weapons/w_pist_usp.mdl",
  254. entity = "khr_p345",
  255. price = 1000, // Price for a shipment
  256. amount = 10, // How many in a shipment
  257. separate = true,
  258. pricesep = 100, // Price of individual guns
  259. noship = false,
  260. allowed = {TEAM_GUN}, // Allowed teams
  261. })
  262.  
  263.  
  264. DarkRP.createShipment("MP-153", {
  265. model = "models/weapons/w_khri_bmp153.mdl",
  266. entity = "khr_mp153",
  267. price = 1000, // Price for a shipment
  268. amount = 10, // How many in a shipment
  269. separate = true,
  270. pricesep = 100, // Price of individual guns
  271. noship = false,
  272. allowed = {TEAM_GUN}, // Allowed teams
  273. })
  274.  
  275.  
  276. DarkRP.createShipment("CZ-75B", {
  277. model = "models/weapons/w_pist_p228.mdl",
  278. entity = "khr_cz75",
  279. price = 1000, // Price for a shipment
  280. amount = 10, // How many in a shipment
  281. separate = true,
  282. pricesep = 100, // Price of individual guns
  283. noship = false,
  284. allowed = {TEAM_GUN}, // Allowed teams
  285. })
  286.  
  287.  
  288. DarkRP.createShipment("SR-2 Veresk", {
  289. model = "models/weapons/w_smg_tmp.mdl",
  290. entity = "khr_veresk",
  291. price = 1000, // Price for a shipment
  292. amount = 10, // How many in a shipment
  293. separate = true,
  294. pricesep = 100, // Price of individual guns
  295. noship = false,
  296. allowed = {TEAM_GUN}, // Allowed teams
  297. })
  298.  
  299.  
  300. DarkRP.createShipment("Neostead 2000", {
  301. model = "models/weapons/w_shot_m3super90.mdl",
  302. entity = "khr_ns2000",
  303. price = 1000, // Price for a shipment
  304. amount = 10, // How many in a shipment
  305. separate = true,
  306. pricesep = 100, // Price of individual guns
  307. noship = false,
  308. allowed = {TEAM_GUN}, // Allowed teams
  309. })
  310.  
  311.  
  312. DarkRP.createShipment("Ruger Mk3", {
  313. model = "models/weapons/w_pist_fiveseven.mdl",
  314. entity = "khr_rugermk3",
  315. price = 1000, // Price for a shipment
  316. amount = 10, // How many in a shipment
  317. separate = true,
  318. pricesep = 100, // Price of individual guns
  319. noship = false,
  320. allowed = {TEAM_GUN}, // Allowed teams
  321. })
  322.  
  323.  
  324. DarkRP.createShipment("SR-1M", {
  325. model = "models/weapons/w_pist_p228.mdl",
  326. entity = "khr_sr1m",
  327. price = 1000, // Price for a shipment
  328. amount = 10, // How many in a shipment
  329. separate = true,
  330. pricesep = 100, // Price of individual guns
  331. noship = false,
  332. allowed = {TEAM_GUN}, // Allowed teams
  333. })
  334.  
  335.  
  336. DarkRP.createShipment("444 Raging Bull", {
  337. model = "models/weapons/w_357.mdl",
  338. entity = "khr_rgnbull",
  339. price = 1000, // Price for a shipment
  340. amount = 10, // How many in a shipment
  341. separate = true,
  342. pricesep = 100, // Price of individual guns
  343. noship = false,
  344. allowed = {TEAM_GUN}, // Allowed teams
  345. })
  346.  
  347.  
  348. DarkRP.createShipment("SIG P226", {
  349. model = "models/weapons/w_pist_p228.mdl",
  350. entity = "khr_p226",
  351. price = 1000, // Price for a shipment
  352. amount = 10, // How many in a shipment
  353. separate = true,
  354. pricesep = 100, // Price of individual guns
  355. noship = false,
  356. allowed = {TEAM_GUN}, // Allowed teams
  357. })
  358.  
  359.  
  360. DarkRP.createShipment("Pistolet Ruby", {
  361. model = "models/weapons/w_pist_p228.mdl",
  362. entity = "khr_ruby",
  363. price = 1000, // Price for a shipment
  364. amount = 10, // How many in a shipment
  365. separate = true,
  366. pricesep = 100, // Price of individual guns
  367. noship = false,
  368. allowed = {TEAM_GUN}, // Allowed teams
  369. })
  370.  
  371.  
  372. DarkRP.createShipment("FMG-9", {
  373. model = "models/weapons/w_smg_tmp.mdl",
  374. entity = "khr_fmg9",
  375. price = 1000, // Price for a shipment
  376. amount = 10, // How many in a shipment
  377. separate = true,
  378. pricesep = 100, // Price of individual guns
  379. noship = false,
  380. allowed = {TEAM_GUN}, // Allowed teams
  381. })
  382.  
  383.  
  384. DarkRP.createShipment("CZ-858", {
  385. model = "models/weapons/w_rif_ak47.mdl",
  386. entity = "khr_cz858",
  387. price = 1000, // Price for a shipment
  388. amount = 10, // How many in a shipment
  389. separate = true,
  390. pricesep = 100, // Price of individual guns
  391. noship = false,
  392. allowed = {TEAM_GUN}, // Allowed teams
  393. })
  394.  
  395.  
  396. DarkRP.createShipment("GSh-18", {
  397. model = "models/weapons/w_pist_glock18.mdl",
  398. entity = "khr_gsh18",
  399. price = 1000, // Price for a shipment
  400. amount = 10, // How many in a shipment
  401. separate = true,
  402. pricesep = 100, // Price of individual guns
  403. noship = false,
  404. allowed = {TEAM_GUN}, // Allowed teams
  405. })
  406.  
  407.  
  408. DarkRP.createShipment("TOZ-194", {
  409. model = "models/weapons/w_khri_khrtoz194.mdl",
  410. entity = "khr_toz194",
  411. price = 1000, // Price for a shipment
  412. amount = 10, // How many in a shipment
  413. separate = true,
  414. pricesep = 100, // Price of individual guns
  415. noship = false,
  416. allowed = {TEAM_GUN}, // Allowed teams
  417. })
  418. DarkRP.createShipment("MP-443 Grach", {
  419. model = "models/weapons/w_pist_glock18.mdl",
  420. entity = "khr_grach",
  421. price = 1000, // Price for a shipment
  422. amount = 10, // How many in a shipment
  423. separate = true,
  424. pricesep = 100, // Price of individual guns
  425. noship = false,
  426. allowed = {TEAM_GUN}, // Allowed teams
  427. })
  428.  
  429.  
  430. DarkRP.createShipment("HCAR", {
  431. model = "models/weapons/w_snip_g3sg1.mdl",
  432. entity = "khr_hcar",
  433. price = 1000, // Price for a shipment
  434. amount = 10, // How many in a shipment
  435. separate = true,
  436. pricesep = 100, // Price of individual guns
  437. noship = false,
  438. allowed = {TEAM_GUN}, // Allowed teams
  439. })
  440.  
  441.  
  442. DarkRP.createShipment("AK-103", {
  443. model = "models/weapons/w_rif_ak47.mdl",
  444. entity = "khr_ak103",
  445. price = 1000, // Price for a shipment
  446. amount = 10, // How many in a shipment
  447. separate = true,
  448. pricesep = 100, // Price of individual guns
  449. noship = false,
  450. allowed = {TEAM_GUN}, // Allowed teams
  451. })
  452.  
  453.  
  454. DarkRP.createShipment("S&W 629", {
  455. model = "models/weapons/w_357.mdl",
  456. entity = "khr_629",
  457. price = 1000, // Price for a shipment
  458. amount = 10, // How many in a shipment
  459. separate = true,
  460. pricesep = 100, // Price of individual guns
  461. noship = false,
  462. allowed = {TEAM_GUN}, // Allowed teams
  463. })
  464.  
  465.  
  466. DarkRP.createShipment("AEK-971", {
  467. model = "models/weapons/w_rif_aek97.mdl",
  468. entity = "khr_aek971",
  469. price = 1000, // Price for a shipment
  470. amount = 10, // How many in a shipment
  471. separate = true,
  472. pricesep = 100, // Price of individual guns
  473. noship = false,
  474. allowed = {TEAM_GUN}, // Allowed teams
  475. })
  476.  
  477.  
  478. DarkRP.createShipment("FN P90", {
  479. model = "models/weapons/w_smg_p90.mdl",
  480. entity = "khr_p90",
  481. price = 1000, // Price for a shipment
  482. amount = 10, // How many in a shipment
  483. separate = true,
  484. pricesep = 100, // Price of individual guns
  485. noship = false,
  486. allowed = {TEAM_GUN}, // Allowed teams
  487. })
  488.  
  489.  
  490. DarkRP.createShipment("TT-33 Tokarev", {
  491. model = "models/weapons/w_pist_p228.mdl",
  492. entity = "khr_tokarev",
  493. price = 1000, // Price for a shipment
  494. amount = 10, // How many in a shipment
  495. separate = true,
  496. pricesep = 100, // Price of individual guns
  497. noship = false,
  498. allowed = {TEAM_GUN}, // Allowed teams
  499. })
  500.  
  501.  
  502. DarkRP.createShipment("MP-40", {
  503. model = "models/weapons/w_smg_ump45.mdl",
  504. entity = "khr_mp40",
  505. price = 1000, // Price for a shipment
  506. amount = 10, // How many in a shipment
  507. separate = true,
  508. pricesep = 100, // Price of individual guns
  509. noship = false,
  510. allowed = {TEAM_GUN}, // Allowed teams
  511. })
  512.  
  513.  
  514. DarkRP.createShipment("Desert Eagle", {
  515. model = "models/weapons/w_pist_deagle.mdl",
  516. entity = "khr_deagle",
  517. price = 1000, // Price for a shipment
  518. amount = 10, // How many in a shipment
  519. separate = true,
  520. pricesep = 100, // Price of individual guns
  521. noship = false,
  522. allowed = {TEAM_GUN}, // Allowed teams
  523. })
  524. DarkRP.createShipment("Remington 870 Police", {
  525. model = "models/weapons/wpoliceremington.mdl",
  526. entity = "cw_policeremington",
  527. price = 1000, // Price for a shipment
  528. amount = 10, // How many in a shipment
  529. separate = true,
  530. pricesep = 100, // Price of individual guns
  531. noship = false,
  532. allowed = {TEAM_GUN}, // Allowed teams
  533. })
  534.  
  535.  
  536. DarkRP.createShipment("Remington Tactical", {
  537. model = "models/weapons/w_shot_remington.mdl",
  538. entity = "cw_remingtontac",
  539. price = 1000, // Price for a shipment
  540. amount = 10, // How many in a shipment
  541. separate = true,
  542. pricesep = 100, // Price of individual guns
  543. noship = false,
  544. allowed = {TEAM_GUN}, // Allowed teams
  545. })
  546.  
  547.  
  548. DarkRP.createShipment("Mossberg 590", {
  549. model = "models/weapons/w_shot_mossberg5.mdl",
  550. entity = "cw_mossberg",
  551. price = 1000, // Price for a shipment
  552. amount = 10, // How many in a shipment
  553. separate = true,
  554. pricesep = 100, // Price of individual guns
  555. noship = false,
  556. allowed = {TEAM_GUN}, // Allowed teams
  557. })
  558.  
  559.  
  560. DarkRP.createShipment("Spas-12", {
  561. model = "models/weapons/w_franchispas.mdl",
  562. entity = "cw_spas12",
  563. price = 1000, // Price for a shipment
  564. amount = 10, // How many in a shipment
  565. separate = true,
  566. pricesep = 100, // Price of individual guns
  567. noship = false,
  568. allowed = {TEAM_GUN}, // Allowed teams
  569. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement