Advertisement
Guest User

Untitled

a guest
Oct 21st, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.76 KB | None | 0 0
  1. -- DO NOT TOUCH THIS SHIT??
  2. ENT.Type = "anim";
  3. ENT.Base = "omnishop_npcbase";
  4. ENT.Type = "ai";
  5. ENT.PrintName = "OmniShop NPC";
  6. ENT.Author = "Pat";
  7. -- You can touch now
  8.  
  9. -- Config
  10. -- What model do you want the NPC to be?
  11. ENT.model = "models/Humans/Group03/Male_04.mdl";
  12.  
  13. --[[
  14. [categoryId (ONLY NUMBERS)] = { -- lowest number = the first (from left -> right)
  15. catName = "Category" -- category name
  16. { -- start of new item
  17. model = true, -- if true then we use a model, otherwise we use a image (material)
  18. img = "path", -- if model is true then we use a model path, otherwise we use a material path.
  19. price = 10, -- how much does it cost to buy?
  20. name = "name", -- name of item
  21. desc = "desc", -- description for the item
  22. func = function, -- refer to a OmniShop.funcs function.
  23. reward = "reward", -- what reward? Either a "string" or a number. For food/props this is the model.
  24. vip = true, -- true/false. VIP (donator) item or not
  25. level = 10, -- what level should be required to buy this item?
  26. allowedTeams = {
  27. TEAM_CITIZEN,
  28. TEAM_CIVILPROTECTION
  29. }, -- what teams is allowed to buy this?
  30. wrongTeamMsg = "Only Citizens/CPs!", -- message in menu/notification if they cant buy it because of their team.
  31. energy = 20 -- how much energy does it food give?
  32. }
  33. }, -- end of item
  34. },
  35.  
  36. Default funcs you can refer to is
  37. OmniShop.funcs.buyGun
  38. OmniShop.funcs.buyRank
  39. OmniShop.funcs.buyHealth
  40. OmniShop.funcs.buyArmor
  41. OmniShop.funcs.buyPS1Points
  42. OmniShop.funcs.buyPS1Item
  43. OmniShop.funcs.buyPS2StandardPoints
  44. OmniShop.funcs.buyPS2PremiumPoints
  45. OmniShop.funcs.buyPS2Item
  46. OmniShop.funcs.buyExperience
  47. OmniShop.funcs.buyLevel
  48. OmniShop.funcs.buyFood
  49. OmniShop.funcs.buyProp
  50. OmniShop.funcs.buyEntity
  51.  
  52. To create more functions go to:
  53. garrysmod/addons/omni_shop/lua/omnishop/item_functions.lua
  54. ]]
  55.  
  56. ENT.config = {
  57. [1] = {
  58. catName = "Gun Dealer";
  59. {
  60. model = true;
  61. img = "models/weapons/w_colt_python.mdl";
  62. price = 1200;
  63. name = "Python";
  64. desc = "Robert's";
  65. func = OmniShop.funcs.buyGun;
  66. reward = "m9k_coltpython";
  67. vip = false;
  68. },
  69.  
  70. {
  71. model = true;
  72. img = "models/weapons/s_dmgf_co1911.mdl";
  73. price = 1500;
  74. name = "Python";
  75. desc = "Got";
  76. func = OmniShop.funcs.buyGun;
  77. reward = "m9k_colt1911";
  78. vip = false;
  79. },
  80. {
  81. model = true;
  82. img = "models/weapons/w_luger_p08.mdl";
  83. price = 1000;
  84. name = "Luger";
  85. desc = "A";
  86. func = OmniShop.funcs.buyGun;
  87. reward = "m9k_luger";
  88. vip = false;
  89. },
  90. {
  91. model = true;
  92. img = "models/weapons/w_hk45c.mdl";
  93. price = 1500;
  94. name = "Hk45c";
  95. desc = "Quick";
  96. func = OmniShop.funcs.buyGun;
  97. reward = "m9k_hk45";
  98. vip = false;
  99. },
  100. {
  101. model = true;
  102. img = "models/weapons/w_sw_model_500.mdl";
  103. price = 5500;
  104. name = "S&W 500";
  105. desc = "Hand";
  106. func = OmniShop.funcs.buyGun;
  107. reward = "m9k_model500";
  108. vip = false;
  109. },
  110. {
  111. model = true;
  112. img = "models/weapons/w_m29_satan.mdl";
  113. price = 6660;
  114. name = "M29 Satan";
  115. desc = "He'll";
  116. func = OmniShop.funcs.buyGun;
  117. reward = "m9k_m29satan";
  118. vip = false;
  119. },
  120. {
  121. model = true;
  122. img = "models/weapons/w_beretta_m92.md";
  123. price = 1400;
  124. name = "Baretta";
  125. desc = "He'll";
  126. func = OmniShop.funcs.buyGun;
  127. reward = "m9k_m92baretta";
  128. vip = false;
  129. },
  130. {
  131. model = true;
  132. img = "models/weapons/w_model_3_rus.mdl";
  133. price = 4000;
  134. name = "S&W Model 3 Russian";
  135. desc = "He'll";
  136. func = OmniShop.funcs.buyGun;
  137. reward = "m9k_model3russian";
  138. vip = false;
  139. },
  140. {
  141. model = true;
  142. img = "models/weapons/w_masada_acr.mdl";
  143. price = 4000;
  144. name = "Acr";
  145. desc = "He'll";
  146. func = OmniShop.funcs.buyGun;
  147. reward = "m9k_acr";
  148. vip = false;
  149. },
  150. {
  151. model = true;
  152. img = "models/weapons/w_amd_65.mdl";
  153. price = 5000;
  154. name = "AMD 65";
  155. desc = "He'll";
  156. func = OmniShop.funcs.buyGun;
  157. reward = "m9k_amd65";
  158. vip = false;
  159. },
  160. {
  161. model = true;
  162. img = "models/weapons/w_fn_fal.mdl";
  163. price = 5500;
  164. name = "FN FAL";
  165. desc = "He'll";
  166. func = OmniShop.funcs.buyGun;
  167. reward = "m9k_fal";
  168. vip = false;
  169. },
  170. {
  171. model = true;
  172. img = "models/weapons/w_snip_m14sp.mdl";
  173. price = 5000;
  174. name = "M14";
  175. desc = "He'll";
  176. func = OmniShop.funcs.buyGun;
  177. reward = "m9k_m9k_m14sp";
  178. vip = false;
  179. },
  180. {
  181. model = true;
  182. img = "models/weapons/w_dmg_m16ag.mdl";
  183. price = 5700;
  184. name = "M16 Scoped Single";
  185. desc = "He'll";
  186. func = OmniShop.funcs.buyGun;
  187. reward = "m9k_m16a4_acog";
  188. vip = false;
  189. },
  190. {
  191. model = true;
  192. img = "models/weapons/w_hk_416.mdl";
  193. price = 5000;
  194. name = "HK 16";
  195. desc = "He'll";
  196. func = OmniShop.funcs.buyGun;
  197. reward = "m9k_m416";
  198. vip = false;
  199. },
  200. {
  201. model = true;
  202. img = "models/weapons/w_fn_scar_h.mdl";
  203. price = 7000;
  204. name = "M29 Scar";
  205. desc = "He'll";
  206. func = OmniShop.funcs.buyGun;
  207. reward = "m9k_scar";
  208. vip = false;
  209. },
  210. {
  211. model = true;
  212. img = "models/weapons/w_imi_tar21.mdl";
  213. price = 5000;
  214. name = "TAR-21";
  215. desc = "He'll";
  216. func = OmniShop.funcs.buyGun;
  217. reward = "m9k_tar21";
  218. vip = false;
  219. },
  220. {
  221. model = true;
  222. img = "models/weapons/w_dmg_vally.mdl";
  223. price = 5500;
  224. name = "Val";
  225. desc = "He'll";
  226. func = OmniShop.funcs.buyGun;
  227. reward = "m9k_val";
  228. vip = false;
  229. },
  230. {
  231. model = true;
  232. img = "models/weapons/w_dmg_vikhr.mdl";
  233. price = 5000;
  234. name = "SR-3M Vikhrz";
  235. desc = "He'll";
  236. func = OmniShop.funcs.buyGun;
  237. reward = "m9k_vikhr";
  238. vip = false;
  239. },
  240. {
  241. model = true;
  242. img = "models/weapons/w_winchester_1887.mdl";
  243. price = 6000;
  244. name = "1887 Winchester";
  245. desc = "He'll";
  246. func = OmniShop.funcs.buyGun;
  247. reward = "m9k_1887winchester";
  248. vip = false;
  249. },
  250. {
  251. model = true;
  252. img = "models/weapons/w_double_barrel_shotgun.mdl";
  253. price = 10000;
  254. name = "Double Barrel";
  255. desc = "He'll";
  256. func = OmniShop.funcs.buyGun;
  257. reward = "m9k_dbarrel";
  258. vip = false;
  259. },
  260. {
  261. model = true;
  262. img = "models/weapons/w_pancor_jackhammer.mdl";
  263. price = 8000;
  264. name = "Jack Hammer";
  265. desc = "He'll";
  266. func = OmniShop.funcs.buyGun;
  267. reward = "m9k_jackhammer";
  268. vip = false;
  269. },
  270. {
  271. model = true;
  272. img = "models/weapons/w_striker_12g.mdl";
  273. price = 9000;
  274. name = "Striker 12";
  275. desc = "He'll";
  276. func = OmniShop.funcs.buyGun;
  277. reward = "m9k_striker12";
  278. vip = false;
  279. },
  280. {
  281. model = true;
  282. img = "models/weapons/w_winchester_1873.mdl";
  283. price = 4000;
  284. name = "Winchester 73";
  285. desc = "He'll";
  286. func = OmniShop.funcs.buyGun;
  287. reward = "m9k_winchester73";
  288. vip = false;
  289. },
  290. {
  291. model = true;
  292. img = "models/weapons/w_benelli_m3.mdl";
  293. price = 6000;
  294. name = "Benelli M3";
  295. desc = "He'll";
  296. func = OmniShop.funcs.buyGun;
  297. reward = "m9k_m3";
  298. vip = false;
  299. },
  300. {
  301. model = true;
  302. img = "models/weapons/w_ithaca_m37.mdl";
  303. price = 7000;
  304. name = "Ithaca M37";
  305. desc = "He'll";
  306. func = OmniShop.funcs.buyGun;
  307. reward = "m9k_ithacam37";
  308. vip = false;
  309. },
  310. {
  311. model = true;
  312. img = "models/weapons/w_mossberg_590.mdl";
  313. price = 7000;
  314. name = "Mossberg";
  315. desc = "He'll";
  316. func = OmniShop.funcs.buyGun;
  317. reward = "m9k_mossberg590";
  318. vip = false;
  319. },
  320. {
  321. model = true;
  322. img = "models/weapons/w_barret_m82.mdl";
  323. price = 12000;
  324. name = "Barret M82";
  325. desc = "He'll";
  326. func = OmniShop.funcs.buyGun;
  327. reward = "m9k_barret_m82";
  328. vip = false;
  329. },
  330. {
  331. model = true;
  332. img = "models/weapons/w_barrett_m98b.mdl";
  333. price = 11000;
  334. name = "Barret M98B";
  335. desc = "He'll";
  336. func = OmniShop.funcs.buyGun;
  337. reward = "m9k_m29satan";
  338. vip = false;
  339. },
  340. {
  341. model = true;
  342. img = "models/weapons/w_svt_40.mdl";
  343. price = 11000;
  344. name = "SVT 40";
  345. desc = "He'll";
  346. func = OmniShop.funcs.buyGun;
  347. reward = "m9k_svt40";
  348. vip = false;
  349. },
  350. {
  351. model = true;
  352. img = "models/weapons/w_dragunov_svu.mdl";
  353. price = 12000;
  354. name = "Dragunov SVU";
  355. desc = "He'll";
  356. func = OmniShop.funcs.buyGun;
  357. reward = "m9k_svu";
  358. vip = false;
  359. },
  360. {
  361. model = true;
  362. img = "models/weapons/w_svd_dragunov.mdl";
  363. price = 13000;
  364. name = "SVD Dragunov";
  365. desc = "He'll";
  366. func = OmniShop.funcs.buyGun;
  367. reward = "m9k_dragunov";
  368. vip = false;
  369. },
  370. {
  371. model = true;
  372. img = "models/weapons/w_snp_int.mdl";
  373. price = 14000;
  374. name = "Intervention";
  375. desc = "He'll";
  376. func = OmniShop.funcs.buyGun;
  377. reward = "m9k_intervention";
  378. vip = false;
  379. },
  380. {
  381. model = true;
  382. img = "models/weapons/w_hk_psg1.mdl";
  383. price = 9000;
  384. name = "PSG-1";
  385. desc = "He'll";
  386. func = OmniShop.funcs.buyGun;
  387. reward = "m9k_psg1";
  388. vip = false;
  389. },
  390. {
  391. model = true;
  392. img = "models/weapons/w_fg42.mdl";
  393. price = 6000;
  394. name = "FG42";
  395. desc = "He'll";
  396. func = OmniShop.funcs.buyGun;
  397. reward = "m9k_fg42";
  398. vip = false;
  399. },
  400. {
  401. model = true;
  402. img = "models/weapons/w_m60_machine_gun.mdl";
  403. price = 9000;
  404. name = "M60";
  405. desc = "He'll";
  406. func = OmniShop.funcs.buyGun;
  407. reward = "m9k_m60";
  408. vip = false;
  409. },
  410. };
  411. [3] = {
  412. catName = "Black Market Dealer";
  413. {
  414. model = true;
  415. img = "models/weapons/w_sb.mdl";
  416. price = 500000;
  417. name = "C4";
  418. desc = "He'll";
  419. func = OmniShop.funcs.buyGun;
  420. reward = "destructive_c4";
  421. vip = false;
  422. },
  423. {
  424. model = true;
  425. img = "models/weapons/v_rif_akmp.mdl";
  426. price = 85000;
  427. name = "AK Beast";
  428. desc = "He'll";
  429. func = OmniShop.funcs.buyGun;
  430. reward = "ak47_beast";
  431. vip = false;
  432. },
  433. {
  434. model = true;
  435. img = "models/weapons/v_snip_xxbow.mdl";
  436. price = 100000;
  437. name = "Crossbow";
  438. desc = "He'll";
  439. func = OmniShop.funcs.buyGun;
  440. reward = "scout_xbow";
  441. vip = false;
  442. },
  443. {
  444. model = true;
  445. img = "models/weapons/w_smg_lmp.mdl";
  446. price = 90000;
  447. name = "AR-1 Guitar";
  448. desc = "He'll";
  449. func = OmniShop.funcs.buyGun;
  450. reward = "m4_guitar";
  451. vip = false;
  452. },
  453. {
  454. model = true;
  455. img = "models/weapons/v_rl7.mdl";
  456. price = 1000000000;
  457. name = "Davy Crocket";
  458. desc = "He'll";
  459. func = OmniShop.funcs.buyGun;
  460. reward = "m9k_davy_crockett";
  461. vip = false;
  462. },
  463. {
  464. model = true;
  465. img = "models/weapons/w_m61_fraggynade.mdl";
  466. price = 25000;
  467. name = "Frag Grenade";
  468. desc = "He'll";
  469. func = OmniShop.funcs.buyGun;
  470. reward = "m9k_m61_frag";
  471. vip = false;
  472. },
  473. {
  474. model = true;
  475. img = "models/weapons/w_sticky_grenade.mdl";
  476. price = 50000;
  477. name = "Sticky Grenade";
  478. desc = "He'll";
  479. func = OmniShop.funcs.buyGun;
  480. reward = "m9k_sticky_grenade";
  481. vip = false;
  482. },
  483. {
  484. model = true;
  485. img = "models/weapons/w_acc_int_aw50.mdl";
  486. price = 5000000;
  487. name = "Skullsmasher";
  488. desc = "He'll";
  489. func = OmniShop.funcs.buyGun;
  490. reward = "skullsmasher";
  491. vip = false;
  492. },
  493. {
  494. model = true;
  495. img = "models/weapons/w_knife_t.mdl";
  496. price = 5000;
  497. name = "Lockpick";
  498. desc = "He'll";
  499. func = OmniShop.funcs.buyGun;
  500. reward = "pro_lockpick_update";
  501. vip = false;
  502. },
  503. {
  504. model = true;
  505. img = "couldn't find";
  506. price = 85000;
  507. name = "Mosin";
  508. desc = "He'll";
  509. func = OmniShop.funcs.buyGun;
  510. reward = "grub_ro_mosin";
  511. vip = false;
  512. },
  513. {
  514. model = true;
  515. img = "models/weapons/v_smg_ppsh1.mdl";
  516. price = 90000;
  517. name = "PPSH";
  518. desc = "He'll";
  519. func = OmniShop.funcs.buyGun;
  520. reward = "grub_ro_ppsh_stick";
  521. vip = false;
  522. },
  523. {
  524. model = true;
  525. img = "models/weapons/w_c4.mdl";
  526. price = 150000;
  527. name = "PTRS";
  528. desc = "He'll";
  529. func = OmniShop.funcs.buyGun;
  530. reward = "m9k_m29satan";
  531. vip = false;
  532. },
  533. {
  534. model = true;
  535. img = "models/weapons/v_sanctum2_ar.mdl";
  536. price = 150000;
  537. name = "Sanctum Rifle";
  538. desc = "He'll";
  539. func = OmniShop.funcs.buyGun;
  540. reward = "sanctum2_ar";
  541. vip = false;
  542. },
  543. {
  544. model = true;
  545. img = "models/weapons/v_sanctum2_sg.mdl";
  546. price = 160000;
  547. name = "Sanctum Shotgun";
  548. desc = "He'll";
  549. func = OmniShop.funcs.buyGun;
  550. reward = "sanctum2_sg";
  551. vip = false;
  552. },
  553. {
  554. model = true;
  555. img = "models/weapons/v_sanctum2_smg.mdl";
  556. price = 130000;
  557. name = "Sanctum SMG";
  558. desc = "He'll";
  559. func = OmniShop.funcs.buyGun;
  560. reward = "sanctum2_smg";
  561. vip = false;
  562. },
  563. {
  564. model = true;
  565. img = "models/weapons/v_sanctum2_sr.mdl";
  566. price = 180000;
  567. name = "Sanctum Sniper";
  568. desc = "He'll";
  569. func = OmniShop.funcs.buyGun;
  570. reward = "sanctum2_sr";
  571. vip = false;
  572. },
  573. {
  574. model = true;
  575. img = "models/weapons/v_sanctum2_tr.mdl";
  576. price = 170000;
  577. name = "Sanctum TR";
  578. desc = "He'll";
  579. func = OmniShop.funcs.buyGun;
  580. reward = "sanctum2_tr";
  581. vip = false;
  582. },
  583. {
  584. model = true;
  585. img = "models/serioussam2/weapons/w_autoshotgun.mdl";
  586. price = 150000;
  587. name = "Sam AutoShotty";
  588. desc = "He'll";
  589. func = OmniShop.funcs.buyGun;
  590. reward = "weapon_ss2_autoshotgun";
  591. vip = false;
  592. },
  593. {
  594. model = true;
  595. img = "models/serioussam2/weapons/w_colt.mdl";
  596. price = 120000;
  597. name = "Sam Colt";
  598. desc = "He'll";
  599. func = OmniShop.funcs.buyGun;
  600. reward = "weapon_ss2_colt";
  601. vip = false;
  602. },
  603. {
  604. model = true;
  605. img = "models/serioussam2/weapons/w_doubleshotgun.mdl";
  606. price = 180000;
  607. name = "Sam Double Shotty";
  608. desc = "He'll";
  609. func = OmniShop.funcs.buyGun;
  610. reward = "weapon_ss2_doubleshotgun";
  611. vip = false;
  612. },
  613. {
  614. model = true;
  615. img = "models/serioussam2/weapons/w_circularsaw.mdl";
  616. price = 100000;
  617. name = "Sam Chainsaw";
  618. desc = "He'll";
  619. func = OmniShop.funcs.buyGun;
  620. reward = "weapon_ss2_circularsaw";
  621. vip = false;
  622. },
  623. {
  624. model = true;
  625. img = "models/serioussam2/weapons/w_cannon.mdl";
  626. price = 1000000;
  627. name = "Sam Cannon";
  628. desc = "He'll";
  629. func = OmniShop.funcs.buyGun;
  630. reward = "weapon_ss2_cannon";
  631. vip = false;
  632. },
  633. {
  634. model = true;
  635. img = "models/serioussam2/weapons/w_uzi.mdl";
  636. price = 160000;
  637. name = "Sam Uzi";
  638. desc = "He'll";
  639. func = OmniShop.funcs.buyGun;
  640. reward = "weapon_ss2_uzi";
  641. vip = false;
  642. },
  643. {
  644. model = true;
  645. img = "models/serioussam2/weapons/w_grenadelauncher.mdl";
  646. price = 160000;
  647. name = "Sam Plasma Rifle";
  648. desc = "He'll";
  649. func = OmniShop.funcs.buyGun;
  650. reward = "weapon_ss2_plasmarifle";
  651. vip = false;
  652. },
  653. {
  654. model = true;
  655. img = "models/serioussam2/weapons/v_minigun.mdl";
  656. price = 300000;
  657. name = "Sam Minigun";
  658. desc = "He'll";
  659. func = OmniShop.funcs.buyGun;
  660. reward = "weapon_ss2_minigun";
  661. vip = false;
  662. },
  663. {
  664. model = true;
  665. img = "models/serioussam2/weapons/v_rocketlauncher.mdl";
  666. price = 500000;
  667. name = "Sam RPG";
  668. desc = "He'll";
  669. func = OmniShop.funcs.buyGun;
  670. reward = "weapon_ss2_rocketlauncher";
  671. vip = false;
  672. },
  673. {
  674. model = true;
  675. img = "models/weapons/w_knife_t.mdl";
  676. price = 100000;
  677. name = "Shadow Knife";
  678. desc = "He'll";
  679. func = OmniShop.funcs.buyGun;
  680. reward = "shadow_knife";
  681. vip = false;
  682. },
  683. };
  684.  
  685. [2] = {
  686. catName = "High Tech Dealer (VIP)";
  687. {
  688. model = true;
  689. img = "models/haloreach/weapons/dmr.mdl";
  690. price = 300000;
  691. name = "DMR";
  692. desc = "He'll";
  693. func = OmniShop.funcs.buyGun;
  694. reward = "hr_swep_dmr";
  695. vip = True;
  696. },
  697. {
  698. model = true;
  699. img = "models/weapons/m45_tactical_shotgun.mdl";
  700. price = 600000;
  701. name = "Halo Shotgun";
  702. desc = "He'll";
  703. func = OmniShop.funcs.buyGun;
  704. reward = "hr_swep_shotgun";
  705. vip = True;
  706. },
  707. {
  708. model = true;
  709. img = "models/haloreach/weapons/assault_from_reach.mdl";
  710. price = 600000;
  711. name = "Halo AR";
  712. desc = "He'll";
  713. func = OmniShop.funcs.buyGun;
  714. reward = "hr_swep_assault_rifle";
  715. vip = True;
  716. },
  717. {
  718. model = true;
  719. img = "models/haloreach/m6g_magnum/magnum.mdl";
  720. price = 150000;
  721. name = "Halo Magnum";
  722. desc = "He'll";
  723. func = OmniShop.funcs.buyGun;
  724. reward = "hr_swep_magnum";
  725. vip = True;
  726. },
  727. {
  728. model = true;
  729. img = "models/haloreach/weapons/dmr.mdl";
  730. price = 600000;
  731. name = "Needle Rifle";
  732. desc = "He'll";
  733. func = OmniShop.funcs.buyGun;
  734. reward = "hr_swep_needle_rifle";
  735. vip = True;
  736. },
  737. {
  738. model = true;
  739. img = "models/covenant/needler.mdl";
  740. price = 500000;
  741. name = "Needler";
  742. desc = "He'll";
  743. func = OmniShop.funcs.buyGun;
  744. reward = "hr_swep_needler";
  745. vip = True;
  746. },
  747. {
  748. model = true;
  749. img = "models/prifle.mdl";
  750. price = 500000;
  751. name = "Halo Plasma Rifle";
  752. desc = "He'll";
  753. func = OmniShop.funcs.buyGun;
  754. reward = "hr_swep_plasma_rifle";
  755. vip = True;
  756. },
  757. {
  758. model = true;
  759. img = "models/spartanlasero.mdl";
  760. price = 3000000;
  761. name = "Spartan Laser";
  762. desc = "He'll";
  763. func = OmniShop.funcs.buyGun;
  764. reward = "hr_swep_spartan_laser";
  765. vip = True;
  766. },
  767. {
  768. model = true;
  769. img = "models/weapons/w_pistol.mdl";
  770. price = 300000;
  771. name = "Energy Sword";
  772. desc = "He'll";
  773. func = OmniShop.funcs.buyGun;
  774. reward = "halo_weapon_h4_sword";
  775. vip = True;
  776. },
  777. {
  778. model = true;
  779. img = "models/weapons/synbf3/v_a280.mdl";
  780. price = 40000;
  781. name = "A280";
  782. desc = "He'll";
  783. func = OmniShop.funcs.buyGun;
  784. reward = "weapon_752bf3_a280";
  785. vip = True;
  786. },
  787. {
  788. model = true;
  789. img = "models/weapons/synbf3/v_dh17.mdl";
  790. price = 60000;
  791. name = "DH17";
  792. desc = "He'll";
  793. func = OmniShop.funcs.buyGun;
  794. reward = "weapon_752bf3_dh17";
  795. vip = True;
  796. },
  797. {
  798. model = true;
  799. img = "models/weapons/synbf3/v_dl44.mdl";
  800. price = 50000;
  801. name = "DLT20A";
  802. desc = "He'll";
  803. func = OmniShop.funcs.buyGun;
  804. reward = "weapon_752bf3_dl44";
  805. vip = True;
  806. },
  807. {
  808. model = true;
  809. img = "models/weapons/synbf3/v_e11.mdl";
  810. price = 50000;
  811. name = "E11";
  812. desc = "He'll";
  813. func = OmniShop.funcs.buyGun;
  814. reward = "weapon_752bf3_e11";
  815. vip = True;
  816. },
  817. {
  818. model = true;
  819. img = "models/weapons/synbf3/v_ee3.mdlq";
  820. price = 30000;
  821. name = "EE3";
  822. desc = "He'll";
  823. func = OmniShop.funcs.buyGun;
  824. reward = "weapon_752bf3_ee3";
  825. vip = True;
  826. },
  827. {
  828. model = true;
  829. img = "models/weapons/synbf3/v_rt97c.mdl";
  830. price = 40000;
  831. name = "RT97C";
  832. desc = "He'll";
  833. func = OmniShop.funcs.buyGun;
  834. reward = "weapon_752bf3_rt97c";
  835. vip = True;
  836. },
  837. {
  838. model = true;
  839. img = "models/weapons/synbf3/v_scoutblaster.mdl";
  840. price = 10000;
  841. name = "Scout Blaster";
  842. desc = "He'll";
  843. func = OmniShop.funcs.buyGun;
  844. reward = "weapon_752bf3_scoutblaster";
  845. vip = True;
  846. },
  847. {
  848. model = true;
  849. img = "models/weapons/synbf3/v_se14c.mdl";
  850. price = 50000;
  851. name = "SE14C";
  852. desc = "He'll";
  853. func = OmniShop.funcs.buyGun;
  854. reward = "weapon_752bf3_se14c";
  855. vip = True;
  856. },
  857. {
  858. model = true;
  859. img = "models/weapons/synbf3/v_t21.mdl";
  860. price = 60000;
  861. name = "T21";
  862. desc = "He'll";
  863. func = OmniShop.funcs.buyGun;
  864. reward = "weapon_752bf3_t21";
  865. vip = True;
  866. },
  867. {
  868. model = true;
  869. img = "models/weapons/w_pistol.mdl";
  870. price = 50000;
  871. name = "lightsaber";
  872. desc = "He'll";
  873. func = OmniShop.funcs.buyGun;
  874. reward = "weapon_lightsaber";
  875. vip = True;
  876. },
  877. {
  878. model = true;
  879. img = "models/weapons/w_pistol.mdl";
  880. price = 50000;
  881. name = "Laser Pistol";
  882. desc = "He'll";
  883. func = OmniShop.funcs.buyGun;
  884. reward = "weapon_laserpistol";
  885. vip = True;
  886. },
  887. {
  888. model = true;
  889. img = "models/weapons/w_pistol.mdl";
  890. price = 3000000;
  891. name = "Laser Minigun";
  892. desc = "He'll";
  893. func = OmniShop.funcs.buyGun;
  894. reward = "weapon_lasermgun";
  895. vip = True;
  896. },
  897. };
  898. };
  899.  
  900. -- VIP groups.
  901. -- The first group written down here is the rank that the will error message will show.
  902. ENT.vipGroups = {
  903. ["admin"] = { vip = false, modifier = 2 }; -- CUZ YOU HATE YOUR ADMINS!
  904. ["donator"] = { vip = true, modifier = 0.90 };
  905. ["superdonator"] = { vip = true, modifier = 0.75 };
  906. ["superadmin"] = { vip = true, modifier = 0.50 };
  907. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement