Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. ## BYTE RPG config File
  2.  
  3. ## Welcome to the RPG plugin designed for www.byte.org.uk be careful how you edit the following details use a yaml editor if you do have to edit this file.
  4.  
  5.  
  6. ################## Bar and scoreboards ###################
  7.  
  8. ##Use the BYTE scoreboard
  9. byteScoreboardEnabled: false
  10.  
  11. ##whether to use BarAPI or BossBar for thirst bar
  12. useBarAPI: false
  13. useBossBarAPI: false
  14. barAPIMessage: Your thirst
  15.  
  16. ##use scoreboard stats for thirst level
  17. useScoreboardStats: false
  18.  
  19. ##use xp bar as thirst bar
  20. useXpScore: true
  21.  
  22. ##use actionbar for messages
  23. actionBarEnabled: false
  24.  
  25. ##use worldguard regions for no thirst (mycellenium spread deny)
  26. useWorldGuard: true
  27.  
  28. ################## world settings #########################
  29.  
  30. ##Enabled worlds
  31. worlds:
  32. - MineZ
  33.  
  34. ################## Thirst check settings #################
  35.  
  36. ##Time in ticks between each thirst check
  37. timeBetweenChecks: 1200
  38.  
  39. ##Amount in % thirst is reduced each check
  40. normal: 5
  41. savannah: 5
  42. desert: 5
  43. jungle: 5
  44. nether: 5
  45.  
  46. ################## Thirst levels ##################
  47.  
  48. ##levels at which messages sent in %
  49. thirsty: 25
  50. parched: 15
  51. dehydrated: 5
  52.  
  53.  
  54.  
  55. ################# Custom Items ##########################
  56.  
  57. ##enable / disable custom crafting
  58. boiledWaterEnabled: false
  59. snowWaterEnabled: false
  60.  
  61. ##custom item names for boiled and snow melted water
  62. boiledWaterName: Boiled Water
  63. boiledWaterLore: Water boiled in a furnace
  64. snowWaterName: Pure Water
  65. snowWaterLore: Water melted from snow
  66.  
  67. ##custom items above refresh rate
  68.  
  69. boiledWaterRefresh: 25
  70. snowWaterRefresh: 30
  71.  
  72. ##objects & liquid that replenishes plus percentage gained
  73. items:
  74. 373: 50
  75.  
  76.  
  77. ################### MECHANICS #########################
  78.  
  79. ##how much damage is caused on dehydration (double)
  80. damage: 1.0
  81.  
  82. ##how many water bottles you can stack
  83. bottleStack: 1
  84.  
  85. ##refresh the player if they eneter water
  86. refreshOnSwim: false
  87.  
  88. ##change to how much thirst is given after death 0 to 100 only
  89. restoreThirstOnDeath: 100
  90.  
  91. ##armorWeightplugin - reduce thirst on player weight
  92. armorWeightEnabled: false
  93.  
  94. ##amount armorweight plugin additionally reduces thirst per check per 20 armour weight, full integer only
  95.  
  96. weightModifier: 1
  97.  
  98.  
  99.  
  100. ################## Thirst MESSAGES ##################
  101.  
  102. ##messages for each thirst level above
  103.  
  104. thirstyMessage: Im getting a little thirsty..
  105.  
  106. parchedMessage: Im getting very thirsty..
  107.  
  108. dehydratedMessage: I need to drink now!!!
  109.  
  110. dyingMessage: You are so thirsty, you are dying.
  111.  
  112. fullyRefreshedMessage: You are fully refreshed
  113.  
  114. itemConsumeMessage: Thirst +
  115.  
  116. mustBeAPlayerToUseCommandMessage: You must be a player to use this command.
  117.  
  118. thirstNotEnabledInThisWorldMessage: Thirst is not enabled in this world.
  119.  
  120. youAreMagicallyRefreshedMessage: You are magically refreshed.
  121.  
  122. youDoNotHavePermissionMessage: You do not have permissions to do this.
  123.  
  124. notARecogniedPlayerMessage: Not a recognised player.
  125.  
  126. youAreNotThirstyMessage: You are not thirsty.
  127.  
  128. youAreNotTooThirstyMessage: You are not too thirsty.
  129.  
  130.  
  131. ######### prefix for thirst infomation message scoreboard etc
  132.  
  133. messagePrefix: Thirst
  134.  
  135.  
  136.  
  137. ########################## CRAFTING RECIPIES ###################
  138.  
  139.  
  140. ##Enabled recipes
  141. recipes: []
  142.  
  143. eggpotion:
  144. 1: AIR
  145. 2: AIR
  146. 3: AIR
  147. 4: AIR
  148. 5: EGG
  149. 6: AIR
  150. 7: AIR
  151. 8: POTION
  152. 9: AIR
  153. product: POTION
  154. name: eggywater
  155. description: horrible egg mix.
  156. refreshRate: 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement