Advertisement
Guest User

Untitled

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