Advertisement
Guest User

Untitled

a guest
Sep 25th, 2018
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.76 KB | None | 0 0
  1. # This is a template config file
  2. # define your parameter and its value like:
  3. Messages:
  4. ErrorMsg : "&c[InstaWall] : Some error occured."
  5. GiveMsg : "&a[InstaWall] : %amount% of InstaWallBucket for the &e%type% &awas given to %player%."
  6. NoPermissionMsg: "&c[InstaWall] : You do not have a permission to use this bucket."
  7. CannotUseMsg: "&c[InstaWall] : You can only use this in your own claim!"
  8. NoValidMaterial: "&c[InstaWall] : No such material exists."
  9. NoValidAmount: "&c[InstaWall] : Amount is not valid."
  10. NoValidCost: "&c[InstaWall] : Cost is not valid."
  11. BoughtMsg: "&a[InstaWall] : You've bought &e%amount% %type% &ainstawall budcket for &e%cost%&a."
  12. NotEnoughFund: "&c[InstaWall] : Not sufficient fund."
  13. NotWB: "&c[InstaWall] : WorldBorder has not be set in this world!"
  14. IncorrectOption: "&c[InstaWall] : It seems that one of option in config.yml is not set correctly (%option%)."
  15. EnemyNearby: "&c[InstaWall] : You cannot use it when your enemy is nearby."
  16.  
  17. HelpMessages:
  18. banner:
  19. msg: "=== &e[&aInstaWall Commands List (%version%)&e] &r==="
  20. help:
  21. msg: "&a/instawall help : displays this help menu."
  22. reload:
  23. msg: "&a/instawall reload : reloads config file."
  24. permission: "instawall.reload"
  25. debug:
  26. msg: "&a/instawall debug <true|false> : turn on / off the debug mode."
  27. permission: "instawall.debug"
  28. give:
  29. msg: "&a/instawall give <player> <type> <amount> [dir:d|h|u]."
  30. permission: "instawall.give"
  31. buy:
  32. msg: "&a/instawall buy <type> [amount] [dir:d|h|u]."
  33. permission: "instawall.buy"
  34.  
  35.  
  36. # PlayerEmptyBucketEvent priority
  37. # if you have another plugin which might be processing the PlayerEmptyBucketEvent
  38. # before this plugin (that might cause this plugin not to work), then
  39. # you can set this option to lower priority such as HIGH, NORMAL, LOW, LOWEST.
  40. # The default is HIGHEST
  41. PlayerEmptyBucketEventPriority: HIGHEST
  42.  
  43. # the display name for the InstaWall bucket.
  44. # %type% : material type
  45. # %buildtype% : Vertical (top-down), Scafold(bottom-up), Holizontal
  46. #DisplayName: "&%buildtype% &aInstaWall for &b%type%"
  47. DisplayName: "&aInstaWall for &b%type%"
  48.  
  49. # the custom lore
  50. Lore:
  51. - "You can place water/lava"
  52. - "next to a block to start"
  53. - "pouring blocks!"
  54.  
  55. # the interval of material running down. default 20 ticks.
  56. Interval: 20
  57.  
  58. # Only in your own territory
  59. OnlyInOwnTerritory: true
  60. # ASkyBlock, Factions, FactionsUUID, Feudal, GriefPrevention, Kingdoms, LegacyFactions, NovaGuilds, PreciousStone, RedProtect, Residence, Towny, uSkyBlock
  61. TerritoryPlugin: FactionsUUID
  62. #
  63.  
  64. # if this option is true, only a user with instawall.<Material_name>
  65. # can use the insta wall bucket. <Material_name> should be in lower case.
  66. # for instance: instawall.cobblestone, instawall.obsidian
  67. UsePermissionNode: false
  68.  
  69. # disabled world
  70. # you can list the world you would like to disable the instawall bucket.
  71. Disabled:
  72. # - plotworld
  73.  
  74. # disabled worldguard region
  75. # you can list the world you would like to disable the instawall bucket.
  76. DisabledRegions:
  77. - spawn
  78. - pvparea
  79.  
  80. # Bucket type : LAVA_BUCKET, WATER_BUCKET
  81. BucketType: LAVA_BUCKET
  82.  
  83. # leave the source material
  84. # if this option is true, the source material such as Lava/Water will be left behind
  85. LeaveSource: false
  86.  
  87. # if this option is false, the resoruce will not flow like a liquid. It only flow downwords,
  88. # right underneath of the poured block.
  89. LiquidBehavior: true
  90.  
  91. # if this option is true, the empty bucket after using up all
  92. # instawall bucket will automatically be removed.
  93. RemoveEmptyBucket: true
  94.  
  95. # if this option is false, falling block like SAND won't fall.
  96. # the option only affect instawall falling blocks.
  97. # Deprecated
  98. FallingBlockPhysics: false
  99.  
  100. # use glow effect
  101. UseGlowEffect: true
  102.  
  103. # Basic shop capability
  104. #
  105. # [iw-buy] # make sure to pick something unique (not like [buy] like Essentials
  106. # 64 # amount
  107. # WOOL:4 [H] # material type:data value (e.g. Yellow wool). If it has ' H', it indicates horizontal bucket.
  108. # $500 # cost ($ + value)
  109. #
  110. # if you put [iw-buy] in the 1st line, it will be replaced by the string below
  111. BuySign: "[GenBucket]" # Case insensitive
  112. MoneySign: "$"
  113.  
  114. #
  115. # Recipe
  116. # if you want a player to craft his/her own IW bucket, you can specify the recipe here
  117. #
  118. Recipe:
  119.  
  120. #
  121. # Economy support
  122. #
  123. UseEconomy: false
  124. DefaultAmount: 16
  125. Prices: # per bucket.
  126. COBBLESTONE: 10
  127. OBSIDIAN: 100
  128.  
  129. #
  130. # infinite option
  131. #
  132. Infinite: false #defualt faulse
  133.  
  134. #
  135. # If there is any enemy player is in this block radius, you won't be able to use the bucket.
  136. # If the value is set to -1, this function won't be used.
  137. #
  138. EnemyNearByRadius: -1
  139.  
  140. #
  141. # This is the max length of the horizontal
  142. DefaultHorizontalLimit: 256
  143.  
  144. #
  145. # default : true
  146. StopAtLiquid: true
  147. StopAtNonSolid: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement