Advertisement
Guest User

disabled_defaults.lua

a guest
Jan 31st, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.90 KB | None | 0 0
  1. /*---------------------------------------------------------------------------
  2. /*---------------------------------------------------------------------------
  3. DarkRP disabled defaults
  4. ---------------------------------------------------------------------------
  5.  
  6. DarkRP comes with a bunch of default things:
  7. - a load of modules
  8. - default jobs
  9. - shipments and guns
  10. - entities (like the money printer)
  11. and many more
  12.  
  13. If you want to disable or replace the default things, you should disable them here
  14.  
  15. Note: if you want to have e.g. edit the official medic job, you MUST disable the default one in this file!
  16. You can copy the medic from DarkRP and paste it in darkrp_config/jobs.lua
  17. ---------------------------------------------------------------------------*/
  18.  
  19.  
  20. /*---------------------------------------------------------------------------
  21. The list of modules that are disabled. Set to true to disable, false to enable.
  22. Modules that are not in this list are enabled by default.
  23. ---------------------------------------------------------------------------*/
  24. DarkRP.disabledDefaults["modules"] = {
  25. ["afk"] = true,
  26. ["chatsounds"] = false,
  27. ["events"] = false,
  28. ["fpp"] = false,
  29. ["f1menu"] = false,
  30. ["f4menu"] = false,
  31. ["hitmenu"] = false,
  32. ["hud"] = false,
  33. ["hungermod"] = true,
  34. ["playerscale"] = false,
  35. ["sleep"] = false,
  36. ["voterestrictions"] = true,
  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"] = false,
  67. ["Desert eagle"] = false,
  68. ["Fiveseven"] = false,
  69. ["Glock"] = false,
  70. ["M4"] = false,
  71. ["Mac 10"] = false,
  72. ["MP5"] = false,
  73. ["P228"] = false,
  74. ["Pump shotgun"] = false,
  75. ["Sniper rifle"] = false,
  76. }
  77.  
  78. /*---------------------------------------------------------------------------
  79. Entities
  80. ---------------------------------------------------------------------------*/
  81. DarkRP.disabledDefaults["entities"] = {
  82. ["Drug lab"] = false,
  83. ["Gun lab"] = false,
  84. ["Money printer"] = false,
  85. ["Microwave"] = false, --Hungermod only
  86. }
  87.  
  88. /*---------------------------------------------------------------------------
  89. Vehicles
  90. (at the moment there are no default vehicles)
  91. ---------------------------------------------------------------------------*/
  92. DarkRP.disabledDefaults["vehicles"] = {
  93.  
  94. }
  95.  
  96. /*---------------------------------------------------------------------------
  97. Food
  98. Food is only enabled when hungermod is enabled (see disabled modules above).
  99. ---------------------------------------------------------------------------*/
  100. DarkRP.disabledDefaults["food"] = {
  101. ["Banana"] = false,
  102. ["Bunch of bananas"] = false,
  103. ["Melon"] = false,
  104. ["Glass bottle"] = false,
  105. ["Pop can"] = false,
  106. ["Plastic bottle"] = false,
  107. ["Milk"] = false,
  108. ["Bottle 1"] = false,
  109. ["Bottle 2"] = false,
  110. ["Bottle 3"] = false,
  111. ["Orange"] = false,
  112. }
  113.  
  114. /*---------------------------------------------------------------------------
  115. Door groups
  116. ---------------------------------------------------------------------------*/
  117. DarkRP.disabledDefaults["doorgroups"] = {
  118. ["Cops and Mayor only"] = true,
  119. ["Gundealer only"] = true,
  120. }
  121.  
  122.  
  123. /*---------------------------------------------------------------------------
  124. Ammo packets
  125. ---------------------------------------------------------------------------*/
  126. DarkRP.disabledDefaults["ammo"] = {
  127. ["Pistol ammo"] = false,
  128. ["Rifle ammo"] = false,
  129. ["Shotgun ammo"] = false,
  130. }
  131.  
  132. /*---------------------------------------------------------------------------
  133. Agendas
  134. ---------------------------------------------------------------------------*/
  135. DarkRP.disabledDefaults["agendas"] = {
  136. ["Gangster's agenda"] = true,
  137. ["Police agenda"] = true,
  138. }
  139.  
  140. /*---------------------------------------------------------------------------
  141. Chat groups (chat with /g)
  142. Chat groups do not have names, so their index is used instead.
  143. ---------------------------------------------------------------------------*/
  144. DarkRP.disabledDefaults["groupchat"] = {
  145. [1] = true, -- Police group chat (mayor, cp, chief and/or your custom CP teams)
  146. [2] = true, -- Group chat between gangsters and the mobboss
  147. }
  148.  
  149. /*---------------------------------------------------------------------------
  150. Jobs that are hitmen
  151. set to true to disable
  152. ---------------------------------------------------------------------------*/
  153. DarkRP.disabledDefaults["hitmen"] = {
  154. ["mobboss"] = true,
  155. }
  156.  
  157. /*---------------------------------------------------------------------------
  158. Demote groups
  159. When anyone is demote from any job in this group, they will be temporarily banned
  160. from every job in the group
  161. ---------------------------------------------------------------------------*/
  162. DarkRP.disabledDefaults["demotegroups"] = {
  163. ["Cops"] = true,
  164. ["Gangsters"] = true,
  165. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement