Advertisement
Guest User

Untitled

a guest
Oct 15th, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.25 KB | None | 0 0
  1. #--------------------------------#
  2. # Dreamworld |
  3. #--------------------------------#
  4.  
  5. # All dream settings:
  6. dream:
  7.  
  8. # If no world with this name exists, it will create one.
  9. # If you want to use a custom generator, I suggest you to first generate the dream world with a plugin like Multiverse.
  10. world name: 'dreamworld'
  11.  
  12. # Whether or not animals and monsters shall spawn:
  13. no animal spawning: false
  14. no monster spawning: true
  15.  
  16. # The chance that leaving a bed leads to a dream (between 0 and 100):
  17. chance: 100
  18.  
  19. # The minimal and maximal durations for dreams in seconds:
  20. min duration in seconds: 25
  21. max duration in seconds: 300
  22.  
  23. # Whether or not the player shall spawn at one of the random spawns when he starts dreaming, instead of the dream worlds spawn:
  24. spawn randomly each time: true
  25. random spawns: []
  26.  
  27. # The gamemode, health, hunger and potion effects a player starts with:
  28. gamemode:
  29. apply: true
  30. initial gamemode: 2
  31. health:
  32. apply: true
  33. initial health: 20.0
  34. hunger:
  35. apply: true
  36. initial hunger: 20
  37. potion effects:
  38. apply: true
  39. initial potion effects:
  40. SLOW_DIGGING:
  41. duration: 2147483647
  42. level: 20
  43. JUMP:
  44. duration: 2147483647
  45. level: 10
  46. SPEED:
  47. duration: 2147483647
  48. level: 2
  49. CONFUSION:
  50. duration: 2147483647
  51. level: 1
  52. NIGHT_VISION:
  53. duration: 2147483647
  54. level: 100
  55. STRENGTH:
  56. duration: 2147483647
  57. level: 100
  58.  
  59. # Whether or not the player shall be completely cleared on enter and restored on exit:
  60. clear and restore player: true
  61.  
  62. # Purge saved dream data after this amount of minutes (should be higher than the max dream duration):
  63. purge saved dream data after x minutes: 4320
  64.  
  65. # If the remaining dream seconds are less than those of this setting, the player will skips those remaining seconds if he disconnects or attempts to continue his dream on login:
  66. ignore if remaining seconds is lower than: 10
  67.  
  68. # Whether or not the player's personal visual time shall be modified:
  69. fake client time:
  70. enabled: true
  71.  
  72. # The time to which the client will be set:
  73. time (in ticks): 12000
  74.  
  75. # Set the time randomly instead? These bounds determine how much the time will randomly differ from the time defined above:
  76. random bounds: 1000
  77.  
  78. # The client's time will not change during the dream with this enabled:
  79. fixed time: false
  80.  
  81. # Whether or not it shall rain for the dreaming player:
  82. fake client weather:
  83. raining: false
  84.  
  85. # Disable various stuff for the dreaming player:
  86. disabled:
  87. hunger: true
  88. # Damage settings: If the player dies, he leaves his dream. If the player falls into the void but all damage is disable, he will be respawned at some dream spawn.
  89. fall damage: true
  90. entity damage: true
  91. all damage: true
  92. item dropping: false
  93. item pickup: false
  94. weather: false
  95.  
  96. # A list of allowed commands. All other commands are blocked for non-admin players. Make sure to not put any kind of teleportation command in here:
  97. allowed commands:
  98. - '/list'
  99. - '/msg'
  100. - '/m'
  101. - '/r'
  102. - '/reply'
  103. - '/tell'
  104. - '/whisper'
  105. - '/login'
  106. - '/register'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement