Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.24 KB | None | 0 0
  1. --[[---------------------------------------------------------------------------
  2. DarkRP disabled defaults
  3. ---------------------------------------------------------------------------
  4. DarkRP comes with a bunch of default things:
  5. - a load of modules
  6. - default jobs
  7. - shipments and guns
  8. - entities (like the money printer)
  9. and many more
  10. If you want to disable or replace the default things, you should disable them here
  11. Note: if you want to have e.g. edit the official medic job, you MUST disable the default one in this file!
  12. You can copy the medic from DarkRP and paste it in darkrp_config/jobs.lua
  13. ---------------------------------------------------------------------------]]
  14.  
  15.  
  16. --[[---------------------------------------------------------------------------
  17. The list of modules that are disabled. Set to true to disable, false to enable.
  18. Modules that are not in this list are enabled by default.
  19. In some cases some external addons may overwrite one of the modules below and will expect them to be enabled to work.
  20. In these few cases it will be pretty obvious when you expect something to happen and nothing does.
  21. ---------------------------------------------------------------------------]]
  22. DarkRP.disabledDefaults["modules"] = {
  23. ["afk"] = true,
  24. ["chatsounds"] = false,
  25. ["events"] = false,
  26. ["fpp"] = false,
  27. ["f1menu"] = false,
  28. ["f4menu"] = false,
  29. ["hitmenu"] = false,
  30. ["hud"] = false,
  31. ["hungermod"] = true,
  32. ["playerscale"] = false,
  33. ["sleep"] = false,
  34. ["fadmin"] = false,
  35. }
  36.  
  37.  
  38.  
  39. --[[---------------------------------------------------------------------------
  40. The disabled default jobs. true to disable, false to enable.
  41. NOTE: If you disable a job and remake it, expect things that rely on the job to stop working
  42. e.g. you disable the gundealer and you make a new job as TEAM_GUN. If you want the shipments/door groups/etc. to
  43. work for your custom job, remake them to include your job as well.
  44. ---------------------------------------------------------------------------]]
  45. DarkRP.disabledDefaults["jobs"] = {
  46. ["chief"] = false,
  47. ["citizen"] = false,
  48. ["cook"] = false, --Hungermod only
  49. ["cp"] = false,
  50. ["gangster"] = false,
  51. ["gundealer"] = false,
  52. ["hobo"] = false,
  53. ["mayor"] = false,
  54. ["medic"] = false,
  55. ["mobboss"] = false,
  56. }
  57.  
  58. --[[---------------------------------------------------------------------------
  59. Shipments and pistols
  60. ---------------------------------------------------------------------------]]
  61. DarkRP.disabledDefaults["shipments"] = {
  62. ["AK47"] = false,
  63. ["Desert eagle"] = false,
  64. ["Fiveseven"] = false,
  65. ["Glock"] = false,
  66. ["M4"] = false,
  67. ["Mac 10"] = false,
  68. ["MP5"] = false,
  69. ["P228"] = false,
  70. ["Pump shotgun"] = false,
  71. ["Sniper rifle"] = false,
  72. }
  73.  
  74. --[[---------------------------------------------------------------------------
  75. Entities
  76. ---------------------------------------------------------------------------]]
  77. DarkRP.disabledDefaults["entities"] = {
  78. ["Drug lab"] = false,
  79. ["Gun lab"] = false,
  80. ["Money printer"] = false,
  81. ["Microwave"] = false, --Hungermod only
  82. ["Tip Jar"] = false,
  83. }
  84.  
  85. --[[---------------------------------------------------------------------------
  86. Vehicles
  87. (at the moment there are no default vehicles)
  88. You could use this to disable vehicles you added in the vehicles.lua located in the darkrp_customthings folder.
  89. ---------------------------------------------------------------------------]]
  90. DarkRP.disabledDefaults["vehicles"] = {
  91.  
  92. }
  93.  
  94. --[[---------------------------------------------------------------------------
  95. Food
  96. Food is only enabled when hungermod is enabled (see disabled modules above).
  97. ---------------------------------------------------------------------------]]
  98. DarkRP.disabledDefaults["food"] = {
  99. ["Banana"] = false,
  100. ["Bunch of bananas"] = false,
  101. ["Melon"] = false,
  102. ["Glass bottle"] = false,
  103. ["Pop can"] = false,
  104. ["Plastic bottle"] = false,
  105. ["Milk"] = false,
  106. ["Bottle 1"] = false,
  107. ["Bottle 2"] = false,
  108. ["Bottle 3"] = false,
  109. ["Orange"] = false,
  110. }
  111.  
  112. --[[---------------------------------------------------------------------------
  113. Door groups
  114. ---------------------------------------------------------------------------]]
  115. DarkRP.disabledDefaults["doorgroups"] = {
  116. ["Cops and Mayor only"] = false,
  117. ["Gundealer only"] = false,
  118. }
  119.  
  120.  
  121. --[[---------------------------------------------------------------------------
  122. Ammo packets
  123. ---------------------------------------------------------------------------]]
  124. DarkRP.disabledDefaults["ammo"] = {
  125. ["Pistol ammo"] = false,
  126. ["Rifle ammo"] = false,
  127. ["Shotgun ammo"] = false,
  128. }
  129.  
  130. --[[---------------------------------------------------------------------------
  131. Agendas
  132. ---------------------------------------------------------------------------]]
  133. DarkRP.disabledDefaults["agendas"] = {
  134. ["Gangster's agenda"] = false,
  135. ["Police agenda"] = false,
  136. }
  137.  
  138. --[[---------------------------------------------------------------------------
  139. Chat groups (chat with /g)
  140. Chat groups do not have names, so their index is used instead.
  141. ---------------------------------------------------------------------------]]
  142. DarkRP.disabledDefaults["groupchat"] = {
  143. [1] = false, -- Police group chat (mayor, cp, chief and/or your custom CP teams)
  144. [2] = false, -- Group chat between gangsters and the mobboss
  145. [3] = false, -- Group chat between people of the same team
  146. }
  147.  
  148. --[[---------------------------------------------------------------------------
  149. Jobs that are hitmen
  150. set to true to disable
  151. ---------------------------------------------------------------------------]]
  152. DarkRP.disabledDefaults["hitmen"] = {
  153. ["mobboss"] = false,
  154. }
  155.  
  156. --[[---------------------------------------------------------------------------
  157. Demote groups
  158. When anyone is demote from any job in this group, they will be temporarily banned
  159. from every job in the group
  160. ---------------------------------------------------------------------------]]
  161. DarkRP.disabledDefaults["demotegroups"] = {
  162. ["Cops"] = false,
  163. ["Gangsters"] = false,
  164. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement