Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.18 KB | None | 0 0
  1. # Configuration file
  2.  
  3. general {
  4.  
  5. ##########################################################################################################
  6. # blocks
  7. #--------------------------------------------------------------------------------------------------------#
  8. # Controls what blocks are added by MultiStorage
  9. # Disabling a block after it was added will remove it from the world
  10. ##########################################################################################################
  11.  
  12. blocks {
  13. # Adds: EnderLinked Chests
  14. # IDs: ender_chest, ender_bag
  15. B:addEnderLinkChests=true
  16.  
  17. # Adds: Stackable Chests, and Hidden Chests
  18. # IDs: cloud_storage, stone_storage
  19. B:addStorageBlocks=true
  20.  
  21. # Adds: All Vault Blocks
  22. # IDs: vault
  23. B:addVaultBlocks=true
  24. }
  25.  
  26. ##########################################################################################################
  27. # items
  28. #--------------------------------------------------------------------------------------------------------#
  29. # Controls what items are added by MultiStorage
  30. # Disabling an item after it was added will remove it from the world
  31. ##########################################################################################################
  32.  
  33. items {
  34. # Adds: A bag that accesses a players EnderChest
  35. # NOTE: enableEnderBag/enableEnderLinkBag/addEnderLinkChests all use Id:ender_bag configs only adjust what sub items are available
  36. B:enableEnderBag=true
  37.  
  38. # Adds: EnderLinked Bags
  39. # NOTE: enableEnderBag/enableEnderLinkBag/addEnderLinkChests all use Id:ender_bag configs only adjust what sub items are available
  40. B:enableEnderLinkBag=true
  41. }
  42.  
  43. ##########################################################################################################
  44. # settings
  45. #--------------------------------------------------------------------------------------------------------#
  46. #
  47. ##########################################################################################################
  48.  
  49. settings {
  50.  
  51. ##########################################################################################################
  52. # enderpocket
  53. #--------------------------------------------------------------------------------------------------------#
  54. #
  55. ##########################################################################################################
  56.  
  57. enderpocket {
  58. #
  59. I:CreativePositionLeft=38
  60.  
  61. #
  62. I:CreativePositionTop=6
  63.  
  64. #
  65. I:InventoryPositionLeft=80
  66.  
  67. #
  68. I:InventoryPositionTop=48
  69.  
  70. # Adds a button to the player inventory enabling access their Ender Chest
  71. B:enableEnderPocket=false
  72. }
  73.  
  74. ##########################################################################################################
  75. # vault
  76. #--------------------------------------------------------------------------------------------------------#
  77. #
  78. ##########################################################################################################
  79.  
  80. vault {
  81. # By default only completed vaults are Wither Proof. When this is enabled vault blocks always are.
  82. # Warning: While you can suffocate kill a Wither in a 5x5x5 vault its advised not to, as it is inside the top blocks and attacking it can push through them
  83. B:alwaysWitherProof=false
  84.  
  85. # Adds Vault Block crafting recipes
  86. # 0 = Only doors and concrete are craftable, everything else must be poured in world
  87. B:enableVaultWallRecipes=false
  88.  
  89. # Sets who has permission to place a Vault Door.
  90. # 0 = No One, 1 = OP's Only, 2 = OP's and Creative Players, 3 = Everyone
  91. # NOTE: Does not disable/remove existing Vaults
  92. # Min: 0
  93. # Max: 3
  94. I:permissionVault=3
  95.  
  96. # Sets if Vault Blocks can be picked up.
  97. # 0 = Never, 1 = With SilkTouch, 2 = Always
  98. # Min: 0
  99. # Max: 2
  100. I:pickupVaultBlocks=1
  101.  
  102. # These items are used to make normal vault walls
  103. S:wallItems_Base <
  104. minecraft:iron_bars
  105. >
  106.  
  107. # These items are used to make Forge or Tesla power vault walls
  108. S:wallItems_Caps <
  109. enderio:itemPowerConduit@2
  110. teslacoils:blockRelayCoil
  111. >
  112.  
  113. # These items are used to make EU power pass vault walls
  114. S:wallItems_EU <
  115. ic2:cable@1
  116. >
  117.  
  118. # These items are used to make fluid pass vault walls
  119. S:wallItems_Fluid <
  120. minecraft:cauldron
  121. >
  122.  
  123. # These items are used to make item pass vault walls
  124. S:wallItems_Item <
  125. minecraft:hopper
  126. >
  127.  
  128. # These items are used to make RF power pass vault walls
  129. S:wallItems_RF <
  130. buildcraft|transport:item.buildcraftPipe.pipepowerdiamond
  131. immersiveengineering:connector@5
  132. >
  133.  
  134. # These items are used to make redstone pass vault walls
  135. S:wallItems_Redstone <
  136. ore:blockRedstone
  137. >
  138.  
  139. # These items are used to make windowed vault walls
  140. S:wallItems_Window <
  141. ore:blockGlass
  142. >
  143.  
  144. ##########################################################################################################
  145. # logs
  146. #--------------------------------------------------------------------------------------------------------#
  147. #
  148. ##########################################################################################################
  149.  
  150. logs {
  151. # Log when a player added to the access list
  152. B:logAdded=true
  153.  
  154. # Log when a player is demoted from a vault admin
  155. B:logDemoted=true
  156.  
  157. # Log when a player enters a vault
  158. B:logEntry=true
  159.  
  160. # Log when a player leaves a vault
  161. B:logExit=true
  162.  
  163. # Sets the size, in Kilobytes, a log file can be before it gets split.
  164. # '-1' disables log files completely, '0' disables splitting
  165. # Note: The default is 63 because notepad has trouble opening files that are 64k or larger
  166. # Min: -1
  167. # Max: 32767
  168. I:logFileSize=63
  169.  
  170. # Log when a player is promoted to a vault admin
  171. B:logPromoted=true
  172.  
  173. # Log when a player removed from the access list
  174. B:logRemoved=true
  175. }
  176.  
  177. }
  178.  
  179. ##########################################################################################################
  180. # enderlink
  181. #--------------------------------------------------------------------------------------------------------#
  182. #
  183. ##########################################################################################################
  184.  
  185. enderlink {
  186. # With this disabled chests are essentially locked to the crafted color as dyes will no longer work
  187. B:enableInWorldRecoloring=true
  188.  
  189. ##########################################################################################################
  190. # upgrade_items
  191. #--------------------------------------------------------------------------------------------------------#
  192. # Items used to upgrade the EnderLinkChests
  193. ##########################################################################################################
  194.  
  195. upgrade_items {
  196. # Items Listed upgrade storage capacity by 9
  197. S:LargeCapacity <
  198. minecraft:ender_eye
  199. >
  200.  
  201. # Items Listed are used to make the chests personal
  202. S:Personal <
  203. ore:gemDiamond
  204. >
  205.  
  206. # Items Listed upgrade storage capacity by 3
  207. S:SmallCapacity <
  208. ore:enderpearl
  209. >
  210.  
  211. # Items Listed are used to make the chests team chests
  212. S:Team <
  213. ore:gemEmerald
  214. >
  215. }
  216.  
  217. ##########################################################################################################
  218. # upgrade_settings
  219. #--------------------------------------------------------------------------------------------------------#
  220. #
  221. ##########################################################################################################
  222.  
  223. upgrade_settings {
  224. # Maximum capacity an EnderChest holds
  225. # Min: 9
  226. # Max: 54
  227. I:CapacityMax=27
  228.  
  229. # Minimum capacity an EnderChest holds
  230. # Min: 9
  231. # Max: 27
  232. I:CapacityMin=9
  233. }
  234.  
  235. ##########################################################################################################
  236. # access_settings
  237. #--------------------------------------------------------------------------------------------------------#
  238. #
  239. ##########################################################################################################
  240.  
  241. access_settings {
  242. # Enables the linking of bags to personal chests.
  243. # Does not effect bags that are already linked to personal chests
  244. B:allowPersonalBags=true
  245.  
  246. # Enables the creation of personal chests, if disabled chests can not set personal.
  247. # Does not effect chests that are already set as personal
  248. B:allowPersonalChests=true
  249.  
  250. # Enables the usage of public bags, if disabled bags must be linked to an upgraded chest before use
  251. B:allowPublicBags=true
  252.  
  253. # Enables the usage of public chests, if disabled chests must be upgraded before use
  254. B:allowPublicChests=true
  255.  
  256. # Enables the linking of bags to team chests.
  257. # Does not effect bags that are already linked to team chests
  258. B:allowTeamBags=true
  259.  
  260. # Enables the creation of team chests, if disabled chests can not be set team.
  261. # Does not effect chests that are already set as team
  262. B:allowTeamChests=true
  263.  
  264. # Personal chests can be used with automation.
  265. B:enableAutomationPersonal=true
  266.  
  267. # Public chests can be used with automation.
  268. B:enableAutomationPublic=true
  269.  
  270. # Team chests can be used with automation.
  271. B:enableAutomationTeam=true
  272.  
  273. # While true a Personal chest can only be edited (upgrade, move, etc) by the owner
  274. B:lockPersonalEdit=true
  275.  
  276. # While true only the owner can link a bag to their chests
  277. B:lockPersonalLink=true
  278.  
  279. # While true only the owner can use the chest
  280. B:lockPersonalUse=false
  281.  
  282. # While true a Team chest can only be edited (upgrade, move, etc) by a team member
  283. B:lockTeamEdit=true
  284.  
  285. # While true only a team member can link a bag to team chests
  286. B:lockTeamLink=true
  287.  
  288. # While true only a team member can use the chest
  289. B:lockTeamUse=false
  290. }
  291.  
  292. ##########################################################################################################
  293. # color_values
  294. #--------------------------------------------------------------------------------------------------------#
  295. # Color Values for Bands,
  296. # Format: Decimal Values (0 to 16,777,215)
  297. # You can use this website to get the decimal value of any color:
  298. # http://www.colorhexa.com
  299. # Or by using the Color Mixer from this website:
  300. # http://www.mathsisfun.com/hexadecimal-decimal-colors.html
  301. ##########################################################################################################
  302.  
  303. color_values {
  304. # Min: 0
  305. # Max: 16777215
  306. I:black=2500134
  307.  
  308. # Min: 0
  309. # Max: 16777215
  310. I:blue=3292826
  311.  
  312. # Min: 0
  313. # Max: 16777215
  314. I:brown=5650466
  315.  
  316. # Min: 0
  317. # Max: 16777215
  318. I:cyan=3373205
  319.  
  320. # Min: 0
  321. # Max: 16777215
  322. I:gray=4605510
  323.  
  324. # Min: 0
  325. # Max: 16777215
  326. I:green=3821086
  327.  
  328. # Min: 0
  329. # Max: 16777215
  330. I:light_blue=8296912
  331.  
  332. # Min: 0
  333. # Max: 16777215
  334. I:light_gray=11120559
  335.  
  336. # Min: 0
  337. # Max: 16777215
  338. I:lime=4832573
  339.  
  340. # Min: 0
  341. # Max: 16777215
  342. I:magenta=12411333
  343.  
  344. # Min: 0
  345. # Max: 16777215
  346. I:orange=14517579
  347.  
  348. # Min: 0
  349. # Max: 16777215
  350. I:pink=14195370
  351.  
  352. # Min: 0
  353. # Max: 16777215
  354. I:purple=8996546
  355.  
  356. # Min: 0
  357. # Max: 16777215
  358. I:red=10828341
  359.  
  360. # Min: 0
  361. # Max: 16777215
  362. I:white=16777215
  363.  
  364. # Min: 0
  365. # Max: 16777215
  366. I:yellow=12892206
  367. }
  368.  
  369. }
  370.  
  371. }
  372.  
  373. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement