Advertisement
Guest User

Untitled

a guest
Nov 16th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.37 KB | None | 0 0
  1. --[[
  2. _____ __ __
  3. / ____| /\ | \/ |
  4. | (___ / \ | \ / |
  5. \___ \ / /\ \ | |\/| |
  6. ____) / ____ \| | | |
  7. __|_____/_/ \_\_| _|_|
  8. / ____| / _(_)
  9. | | ___ _ __ | |_ _ __ _
  10. | | / _ \| '_ \| _| |/ _` |
  11. | |___| (_) | | | | | | | (_| |
  12. \_____\___/|_| |_|_| |_|\__, |
  13. __/ |
  14. |___/
  15. --]]
  16.  
  17. --[[
  18.  
  19. VERSION 2.22
  20. - Added Modules Folder
  21. - IsAdmin and IsSuperAdmin integration
  22. - !clearragdolls, !clearcorpses and !cleardecals implemented
  23. - add prometheus plugin (since its drag and drop to plugin folder)
  24. - Updated Cloak ability so weapons aren't viewed
  25. - Small changes to !model and !scale with bone manipulation
  26. - Reports setting to close them overtime
  27. - Adverts system
  28.  
  29. --]]
  30. -- Ignore!
  31. SAM_Settings = SAM_Settings or {}
  32.  
  33. if SERVER then -- DO NOT REMOVE THIS IF YOU WANT TO KEEP UR SQL SECURE THX
  34.  
  35. -- Use MySQL?
  36. SAM_Settings.MySQL = true
  37. -- If above false, ignore these.
  38. SAM_Settings.DBHOST = "elhs.co"
  39. SAM_Settings.DBPORT = 3306
  40. SAM_Settings.DBNAME = "refinedr_admin"
  41. SAM_Settings.DBUSER = "refinedr_sam"
  42. SAM_Settings.DBPASS = "markaaronschmidtnigger"
  43.  
  44. end
  45.  
  46. -- Chat Prefix
  47. SAM_Settings.Prefix = "[] "
  48. -- Staff Chat Prefix
  49. SAM_Settings.PrefixStaffChat = "[Staff] "
  50. -- RGB Format
  51. SAM_Settings.PrefixColor = Color(255,100,100)
  52.  
  53. -- Command Prefix
  54. SAM_Settings.CmdPrefix = "!"
  55.  
  56. -- Can ranks with same weight target each other!
  57. SAM_Settings.AllowSameRankCmds = true
  58.  
  59. -- Content Pack, Donation and Group Steam Links (Leave blank to not use)
  60. SAM_Settings.SWorkshop = "https://refinedroleplay.com/workshop"
  61. SAM_Settings.SGroup = "http://refinedroleplay.com/steamgroup"
  62. SAM_Settings.DSite = "https://refinedroleplay.com"
  63.  
  64. SAM_Settings.Adverts = {
  65. -- { "Community Name", Community Name Colour, "Message", Color, Frequency (in seconds) }
  66. { "Refined Roleplay", Color( 255, 255, 255 ), "Check our website! " .. SAM_Settings.DSite, Color( 148,0,211), 180 },
  67. { "Refined Roleplay", Color( 255, 255, 255 ), "Check our steam group! " .. SAM_Settings.SGroup, Color( 148,0,211 ), 270 },
  68. }
  69.  
  70. SAM_Settings.ReportDecayTime = 0
  71.  
  72. -- Rank Names
  73. SAM_Settings.Ranks = {
  74.  
  75. -- "*" Represents ALL Permissions
  76. -- Every use has access to !help, it will show a description for commands they have access to.
  77. -- For the sake of MySQL ensure that the default rank is at the top of this list!
  78.  
  79. {
  80. name = "user", -- Name
  81. weight = 100, -- Lower weights cannot target higher weights
  82. -- For the below options, these rely on darkrp allowing everyone to spawn them (Found it darkrp settings)
  83. prop_limit = 0, -- This ranks maximum amount of props
  84. entity_limit = 0, -- This ranks maximum amount of entities
  85. npc_limit = 0, -- This ranks maximum amount of npcs
  86. vehicle_limit = 0, -- This ranks maximum amount of vehicles
  87. -- Side note: The below commands depend on DARKRP, if darkrp lets them spawn with it then they WILL spawn with it.
  88. physgun = false, -- Spawn with physics gun?
  89. toolgun = false, -- Spawn with toolgun?
  90. touch_others_props = false, -- Touch other peoples props?
  91. darkrp_fpp_admin = false, -- Give all permissions to darkrp related and FPP?
  92. isAdmin = false, -- what it should return on SAM:IsAdmin( ply )
  93. isSuperAdmin = false, -- what it should return on SAM:IsSuperAdmin( ply )
  94. permissions = {
  95. "sam.steam", -- Permission (See Below)
  96. "sam.donate",
  97. },
  98. },
  99.  
  100.  
  101.  
  102.  
  103. {
  104. name = "trialmoderator",
  105. weight = 110,
  106. prop_limit = 0,
  107. entity_limit = 0,
  108. npc_limit = 0,
  109. vehicle_limit = 0,
  110. physgun = false,
  111. toolgun = false,
  112. touch_others_props = false,
  113. darkrp_fpp_admin = false,
  114. isAdmin=false,
  115. isSuperAdmin=false,
  116. permissions = {
  117. "sam.steam",
  118. "sam.freeze",
  119. "sam.unfreeze",
  120. "sam.bring",
  121. "sam.goto",
  122. "sam.return",
  123. "sam.report",
  124.  
  125. },
  126. },
  127.  
  128.  
  129. {
  130. name = "moderator",
  131. weight = 119,
  132. prop_limit = 0,
  133. entity_limit = 0,
  134. npc_limit = 0,
  135. vehicle_limit = 0,
  136. physgun = false,
  137. toolgun = false,
  138. touch_others_props = false,
  139. darkrp_fpp_admin = false,
  140. isAdmin=false,
  141. isSuperAdmin=false,
  142. permissions = {
  143. "sam.steam",
  144. "sam.donate",
  145. "sam.freeze",
  146. "sam.unfreeze",
  147. "sam.bring",
  148. "sam.goto",
  149. "sam.return",
  150. "sam.kick",
  151. "sam.mute",
  152. "sam.unmute",
  153. "sam.vmute",
  154. "sam.unvmute",
  155. "sam.report",
  156. },
  157. },
  158.  
  159. {
  160. name = "administrator",
  161. weight = 130,
  162. prop_limit = 999999999,
  163. entity_limit = 99999999,
  164. npc_limit = 99999999,
  165. vehicle_limit = 99999999,
  166. physgun = true,
  167. toolgun = true,
  168. touch_others_props = true,
  169. darkrp_fpp_admin = false,
  170. isAdmin=true,
  171. isSuperAdmin=false,
  172. permissions = {
  173. "sam.steam",
  174. "sam.freeze",
  175. "sam.bring",
  176. "sam.goto",
  177. "sam.return",
  178. "sam.kick",
  179. "sam.mute",
  180. "sam.unmute",
  181. "sam.vmute",
  182. "sam.unvmute",
  183. "sam.ban",
  184. "sam.spawn",
  185. "sam.noclip",
  186. "sam.hp",
  187. "sam.cloak",
  188. "sam.god",
  189. "sam.strip",
  190. "same.model",
  191. "sam.pickupply",
  192. "sam.scale",
  193. "sam.clearragdolls",
  194. "sam.clearcorpses",
  195. "sam.cleardecals",
  196. "sam.report",
  197.  
  198. },
  199. },
  200.  
  201. {
  202. name = "senioradministrator",
  203. weight = 140,
  204. prop_limit = 999999999,
  205. entity_limit = 99999999999,
  206. npc_limit = 999999999,
  207. vehicle_limit = 99999999,
  208. physgun = true,
  209. toolgun = true,
  210. touch_others_props = true,
  211. darkrp_fpp_admin = false,
  212. isAdmin=true,
  213. isSuperAdmin=false,
  214. permissions = {
  215. "sam.steam",
  216. "sam.freeze",
  217. "sam.unfreeze",
  218. "sam.bring",
  219. "sam.goto",
  220. "sam.send",
  221. "sam.return",
  222. "sam.kick",
  223. "sam.mute",
  224. "sam.unmute",
  225. "sam.vmute",
  226. "sam.unvmute",
  227. "sam.ban",
  228. "sam.spawn",
  229. "sam.noclip",
  230. "sam.hp",
  231. "sam.armor",
  232. "sam.cloak",
  233. "sam.god" ,
  234. "sam.strip" ,
  235. "sam.permban",
  236. "sam.tempban",
  237. "sam.unban",
  238. "sam.maplist",
  239. "sam.map",
  240. "sam.report",
  241. "sam.pickupply",
  242. "sam.model",
  243. "sam.scale",
  244. "sam.clearragdolls",
  245. "sam.clearcorpses",
  246. "sam.cleardecals",
  247.  
  248. },
  249. },
  250.  
  251. {
  252. name = "headadministrator",
  253. weight = 155,
  254. prop_limit = 9999999999,
  255. entity_limit = 999999999,
  256. npc_limit = 99999999,
  257. vehicle_limit = 99999999,
  258. physgun = true,
  259. toolgun = true,
  260. touch_others_props = true,
  261. darkrp_fpp_admin = false,
  262. isAdmin=true,
  263. isSuperAdmin=false,
  264. permissions = {
  265. "sam.steam",
  266. "sam.freeze",
  267. "sam.unfreeze",
  268. "sam.bring",
  269. "sam.goto",
  270. "sam.return",
  271. "sam.kick",
  272. "sam.mute",
  273. "sam.unmute",
  274. "sam.vmute",
  275. "sam.send",
  276. "sam.unvmute",
  277. "sam.ban",
  278. "sam.spawn",
  279. "sam.noclip",
  280. "sam.hp",
  281. "sam.armor",
  282. "sam.cloak",
  283. "sam.god",
  284. "sam.strip" ,
  285. "sam.permban",
  286. "sam.setuser",
  287. "sam.unban" ,
  288. "sam.maplist",
  289. "sam.map",
  290. "sam.setuser",
  291. "sam.report",
  292. "sam.pickupply",
  293. "sam.scale",
  294. "sam.model",
  295. "sam.admin",
  296. "sam.slay",
  297. "sam.ip",
  298. "sam.clearragdolls",
  299. "sam.clearcorpses",
  300. "sam.cleardecals",
  301. },
  302. },
  303.  
  304.  
  305. {
  306. name = "chiefadministrator",
  307. weight = 160,
  308. prop_limit = 999999999,
  309. entity_limit = 99999999,
  310. npc_limit = 999999999,
  311. vehicle_limit = 99999999,
  312. physgun = true,
  313. toolgun = true,
  314. touch_others_props = true,
  315. darkrp_fpp_admin = false,
  316. isAdmin=true,
  317. isSuperAdmin=false,
  318. permissions = {
  319. "*",
  320. },
  321. },
  322.  
  323.  
  324. {
  325. name = "communityliaison",
  326. weight = 390,
  327. prop_limit = 999999999,
  328. entity_limit = 999999999,
  329. npc_limit = 999999999,
  330. vehicle_limit = 9999999,
  331. physgun = true,
  332. toolgun = true,
  333. touch_others_props = true,
  334. darkrp_fpp_admin = true,
  335. isAdmin=true,
  336. isSuperAdmin=true,
  337. permissions = {
  338. "*",
  339. },
  340. },
  341.  
  342. {
  343. name = "developmentliaison",
  344. weight = 400,
  345. prop_limit = 999999999,
  346. entity_limit = 999999999,
  347. npc_limit = 999999999,
  348. vehicle_limit = 9999999,
  349. physgun = true,
  350. toolgun = true,
  351. touch_others_props = true,
  352. darkrp_fpp_admin = true,
  353. isAdmin = false,
  354. isSuperAdmin = true,
  355. permissions = {
  356. "*",
  357. },
  358. },
  359.  
  360.  
  361.  
  362. ----------------GAMEMASTERS-----------
  363.  
  364. {
  365. name = "trialmoderatorgm",
  366. weight = 110,
  367. prop_limit = 9999,
  368. entity_limit = 99999,
  369. npc_limit = 99999,
  370. vehicle_limit = 99999,
  371. physgun = true,
  372. toolgun = true,
  373. touch_others_props = true,
  374. darkrp_fpp_admin = false,
  375. isAdmin=false,
  376. isSuperAdmin=false,
  377. permissions = {
  378. "sam.steam",
  379. "sam.freeze",
  380. "sam.bring" ,
  381. "sam.goto" ,
  382. "sam.return",
  383. "sam.report",
  384. "sam.cloak",
  385. "sam.noclip",
  386. "sam.maplist",
  387. "sam.map",
  388. "sam.pickupply",
  389. "sam.model",
  390. "sam.hp",
  391. "sam.clearragdolls",
  392. "sam.clearcorpses",
  393. "sam.cleardecals",
  394.  
  395. },
  396. },
  397.  
  398.  
  399. {
  400. name = "moderatorgm",
  401. weight = 119,
  402. prop_limit = 999999,
  403. entity_limit = 99999,
  404. npc_limit = 999999,
  405. vehicle_limit = 999999,
  406. physgun = false,
  407. toolgun = false,
  408. touch_others_props = true,
  409. darkrp_fpp_admin = false,
  410. isAdmin=false,
  411. isSuperAdmin=false,
  412. permissions = {
  413. "sam.steam",
  414. "sam.steam",
  415. "sam.donate",
  416. "sam.freeze",
  417. "sam.bring" ,
  418. "sam.goto" ,
  419. "sam.return" ,
  420. "sam.report",
  421. "sam.kick" ,
  422. "sam.mute" ,
  423. "sam.unmute" ,
  424. "sam.vmute" ,
  425. "sam.unvmute",
  426. "sam.report",
  427. "sam.hp",
  428. "sam.armor",
  429. "sam.noclip",
  430. "sam.map",
  431. "sam.maplist",
  432. "sam.pickupply",
  433. "sam.model",
  434. "sam.scale",
  435. "sam.clearragdolls",
  436. "sam.clearcorpses",
  437. "sam.cleardecals",
  438.  
  439.  
  440. },
  441. },
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450. {
  451. name = "gamemaster",
  452. weight = 120,
  453. prop_limit = 9999999,
  454. entity_limit = 9999999,
  455. npc_limit = 9999999,
  456. vehicle_limit = 9999999,
  457. physgun = true,
  458. toolgun = true,
  459. touch_others_props = true,
  460. darkrp_fpp_admin = false,
  461. isAdmin=false,
  462. isSuperAdmin=false,
  463. permissions = {
  464. "sam.steam",
  465. "sam.bring" ,
  466. "sam.cloak",
  467. "sam.noclip",
  468. "sam.freeze",
  469. "sam.unfreeze",
  470. "sam.report",
  471. "sam.goto" ,
  472. "sam.return",
  473. "sam.kick" ,
  474. "sam.maplist",
  475. "sam.map",
  476. "sam.pickupply",
  477. "sam.god",
  478. "sam.hp",
  479. "sam.armor",
  480. "sam.scale",
  481. "sam.model",
  482. "sam.report",
  483. "sam.clearragdolls",
  484. "sam.clearcorpses",
  485. "sam.cleardecals",
  486. },
  487. },
  488.  
  489. {
  490. name = "seniorgamemaster",
  491. weight = 120,
  492. prop_limit = 9999999,
  493. entity_limit = 9999999,
  494. npc_limit = 9999999,
  495. vehicle_limit = 9999999,
  496. physgun = true,
  497. toolgun = true,
  498. touch_others_props = true,
  499. darkrp_fpp_admin = false,
  500. isAdmin=true,
  501. isSuperAdmin=false,
  502. permissions = {
  503. "sam.steam",
  504. "sam.bring" ,
  505. "sam.cloak",
  506. "sam.freeze",
  507. "sam.unfreeze",
  508. "sam.kick" ,
  509. "sam.noclip",
  510. "sam.goto" ,
  511. "sam.return" ,
  512. "sam.report",
  513. "sam.maplist",
  514. "sam.map",
  515. "sam.pickupply",
  516. "sam.god",
  517. "sam.hp",
  518. "sam.armor",
  519. "sam.scale",
  520. "sam.model",
  521. "sam.clearragdolls",
  522. "sam.clearcorpses",
  523. "sam.cleardecals",
  524. },
  525. },
  526.  
  527.  
  528. {
  529. name = "leadgamemaster",
  530. weight = 135,
  531. prop_limit = 99999999,
  532. entity_limit = 9999999,
  533. npc_limit = 9999999,
  534. vehicle_limit = 9999999,
  535. physgun = true,
  536. toolgun = true,
  537. touch_others_props = true,
  538. darkrp_fpp_admin = true,
  539. isAdmin=true,
  540. isSuperAdmin=false,
  541. permissions = {
  542. "sam.steam",
  543. "sam.bring",
  544. "sam.goto",
  545. "sam.return" ,
  546. "sam.freeze",
  547. "sam.unfreeze",
  548. "sam.maplist",
  549. "sam.map",
  550. "sam.kick",
  551. "sam.report",
  552. "sam.noclip",
  553. "sam.hp",
  554. "sam.armor",
  555. "sam.god",
  556. "sam.cloak",
  557. "sam.pickupply",
  558. "sam.model",
  559. "sam.clearragdolls",
  560. "sam.clearcorpses",
  561. "sam.cleardecals",
  562. },
  563. },
  564.  
  565.  
  566.  
  567. -----------------------
  568.  
  569.  
  570.  
  571. {
  572. name = "supporter", -- Name
  573. weight = 100, -- Lower weights cannot target higher weights
  574. -- For the below options, these rely on darkrp allowing everyone to spawn them (Found it darkrp settings)
  575. prop_limit = 0, -- This ranks maximum amount of props
  576. entity_limit = 0, -- This ranks maximum amount of entities
  577. npc_limit = 0, -- This ranks maximum amount of npcs
  578. vehicle_limit = 0, -- This ranks maximum amount of vehicles
  579. -- Side note: The below commands depend on DARKRP, if darkrp lets them spawn with it then they WILL spawn with it.
  580. physgun = false, -- Spawn with physics gun?
  581. toolgun = false, -- Spawn with toolgun?
  582. touch_others_props = false, -- Touch other peoples props?
  583. darkrp_fpp_admin = false, -- Give all permissions to darkrp related and FPP?
  584. isAdmin = false, -- what it should return on SAM:IsAdmin( ply )
  585. isSuperAdmin = false, -- what it should return on SAM:IsSuperAdmin( ply )
  586. permissions = {
  587. "sam.steam", -- Permission (See Below)
  588. "sam.donate",
  589. },
  590. },
  591.  
  592.  
  593. {
  594. name = "juniorsupporter", -- Name
  595. weight = 100, -- Lower weights cannot target higher weights
  596. -- For the below options, these rely on darkrp allowing everyone to spawn them (Found it darkrp settings)
  597. prop_limit = 0, -- This ranks maximum amount of props
  598. entity_limit = 0, -- This ranks maximum amount of entities
  599. npc_limit = 0, -- This ranks maximum amount of npcs
  600. vehicle_limit = 0, -- This ranks maximum amount of vehicles
  601. -- Side note: The below commands depend on DARKRP, if darkrp lets them spawn with it then they WILL spawn with it.
  602. physgun = false, -- Spawn with physics gun?
  603. toolgun = false, -- Spawn with toolgun?
  604. touch_others_props = false, -- Touch other peoples props?
  605. darkrp_fpp_admin = false, -- Give all permissions to darkrp related and FPP?
  606. isAdmin = false, -- what it should return on SAM:IsAdmin( ply )
  607. isSuperAdmin = false, -- what it should return on SAM:IsSuperAdmin( ply )
  608. permissions = {
  609. "sam.steam", -- Permission (See Below)
  610. "sam.donate",
  611. },
  612. },
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627.  
  628. -----------------
  629. {
  630. name = "mod",
  631. weight = 200,
  632. prop_limit = 50,
  633. entity_limit = 0,
  634. npc_limit = 0,
  635. vehicle_limit = 0,
  636. physgun = true,
  637. toolgun = true,
  638. touch_others_props = false,
  639. darkrp_fpp_admin = false,
  640. isAdmin = false, -- what it should return on SAM:IsAdmin( ply )
  641. isSuperAdmin = false, -- what it should return on SAM:IsSuperAdmin( ply )
  642. permissions = {
  643. "sam.freeze",
  644. "sam.jail",
  645. "sam.jailtp",
  646. "sam.unjail",
  647. "sam.report",
  648. "sam.ban",
  649. "sam.kick",
  650. "sam.spawn",
  651. "sam.mute",
  652. "sam.vmute",
  653. "sam.tempvmute",
  654. "sam.tempmute",
  655. "sam.unmute",
  656. "sam.unvmute",
  657. "sam.bring",
  658. "sam.goto",
  659. "sam.return",
  660. },
  661. },
  662.  
  663. {
  664. name = "admin",
  665. weight = 300,
  666. prop_limit = 50,
  667. entity_limit = 10,
  668. npc_limit = 10,
  669. vehicle_limit = 10,
  670. physgun = true,
  671. toolgun = true,
  672. touch_others_props = true,
  673. darkrp_fpp_admin = false,
  674. isAdmin = true, -- what it should return on SAM:IsAdmin( ply )
  675. isSuperAdmin = false, -- what it should return on SAM:IsSuperAdmin( ply )
  676. permissions = {
  677. "sam.freeze",
  678. "sam.jail",
  679. "sam.jailtp",
  680. "sam.unjail",
  681. "sam.report",
  682. "sam.ban",
  683. "sam.kick",
  684. "sam.spawn",
  685. "sam.mute",
  686. "sam.vmute",
  687. "sam.tempvmute",
  688. "sam.tempmute",
  689. "sam.unmute",
  690. "sam.unvmute",
  691. "sam.bring",
  692. "sam.goto",
  693. "sam.return",
  694. "sam.noclip",
  695. "sam.nolag",
  696. "sam.pickupply",
  697. },
  698. },
  699.  
  700. {
  701. name = "superadmin",
  702. weight = 400,
  703. prop_limit = 10000,
  704. entity_limit = 1000,
  705. npc_limit = 1000,
  706. vehicle_limit = 1000,
  707. physgun = true,
  708. toolgun = true,
  709. touch_others_props = true,
  710. darkrp_fpp_admin = true,
  711. isAdmin = true, -- what it should return on SAM:IsAdmin( ply )
  712. isSuperAdmin = true, -- what it should return on SAM:IsSuperAdmin( ply )
  713. permissions = {
  714. "*",
  715. },
  716. },
  717.  
  718. }
  719.  
  720. --[[
  721. // All Permissions (See README.MD to description on each command or do !help in game)
  722. Misc:
  723. - armor = sam.armor
  724. - hp = sam.hp
  725. - cloak = sam.cloak
  726. - god = sam.god
  727. - slay = sam.slay
  728. - strip = sam.strip
  729. - scale = sam.scale
  730. - speed = sam.speed
  731. - giveammo = sam.giveammo
  732. - steam = sam.steam
  733. - model = sam.model
  734. - donate = sam.donate
  735. - Ability to pick up players = sam.pickupply
  736. - infammo - sam.infammo
  737. - limammo - sam.limammo
  738.  
  739. Utilities:
  740. - ip = sam.ip
  741. - clearchat = sam.clearchat
  742. - stopsound = sam.stopsound
  743. - spawn = sam.spawn
  744. - setuser = sam.setuser
  745. - maplist = sam.maplist
  746. - map = sam.map
  747. - freeze = sam.freeze
  748. - noclip = sam.noclip
  749. - kick = sam.kick
  750. - admin = sam.admin
  751. - nolag = sam.nolag
  752. - mute = sam.mute
  753. - tempmute = sam.tempmute
  754. - vmute = sam.vmute
  755. - tempvmute = sam.tempvmute
  756. - unmute = sam.unmute
  757. - unvmute = sam.unvmute
  758. - report = sam.report
  759. - jail = sam.jail
  760. - jailtp = sam.jailtp
  761. - unjail = sam.unjail
  762. - permban = sam.permban
  763. - tempban = sam.tempban
  764. - unban = sam.unban
  765. - clear ragdolls = sam.clearragdolls
  766. - clear corpses - sam.clearcorpses
  767. - clear decals - sam.cleardecals
  768.  
  769. Positional:
  770. - bring = sam.bring
  771. - goto = sam.goto
  772. - send = sam.send
  773. - return = sam.return
  774.  
  775. DarkRP:
  776. - givemoney = sam.givemoney
  777. - removemoney = sam.removemoney
  778. - setmoney = sam.setmoney
  779. - remove = sam.remove
  780.  
  781. --]]
  782.  
  783. SAM_Settings.CmdEchoes = {
  784.  
  785. -- DarkRP Commands || true to echo, false not to echo.
  786. ["givemoney"] = true,
  787. ["removemoney"] = true,
  788. ["setmoney"] = true,
  789. ["remove"] = true,
  790.  
  791. -- Misc Commands
  792. ["armor"] = true,
  793. ["hp"] = true,
  794. ["cloak"] = true,
  795. ["god"] = true,
  796. ["slay"] = true,
  797. ["strip"] = true,
  798. ["scale"] = true,
  799. ["speed"] = true,
  800. ["giveammo"] = true,
  801. ["model"] = true,
  802. ["infammo"] = true,
  803. ["limammo"] = true,
  804.  
  805. -- Positional Commands
  806. ["bring"] = true,
  807. ["goto"] = true,
  808. ["send"] = true,
  809. ["return"] = true,
  810.  
  811. -- Utility Commands
  812. ["clearchat"] = true,
  813. ["stopsound"] = true,
  814. ["spawn"] = true,
  815. ["setuser"] = true,
  816. ["freeze"] = true,
  817. ["kick"] = true,
  818. ["admin"] = true,
  819. ["nolag"] = true, -- This one is adverted to staff
  820. ["nolageveryone"] = true, -- This one is adverted to the whole server
  821. ["mute"] = true,
  822. ["tempmute"] = true,
  823. ["vmute"] = true,
  824. ["tempvmute"] = true,
  825. ["unmute"] = true,
  826. ["unvmute"] = true,
  827. ["jail"] = true,
  828. ["jailtp"] = true,
  829. ["unjail"] = true,
  830. ["ban"] = true, -- This covers ALL ban commands
  831. ["unban"] = true,
  832.  
  833. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement