Advertisement
Blue_future

pwi error

Jul 13th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. # Version of the config.
  2. # When updating config, copy the new verison number here.
  3. # Only ever change when adding new config options!
  4. # Used to notify administrators on config updates.
  5. config-version: 4
  6.  
  7. # If true, the server will change player's gamemodes when entering a world
  8. # The gamemode set is configured in the worlds.yml file
  9. manage-gamemodes: true
  10.  
  11. # If true, players will have different inventories for each gamemode
  12. separate-gamemode-inventories: false
  13.  
  14. # If true, any worlds that are not in the worlds.yml configuration file will share the same inventory
  15. share-if-unconfigured: true
  16.  
  17. # All settings for players are here:
  18. player:
  19. # Save and Load players' economy balances. Requires Vault!
  20. economy: false
  21. # Load players' ender chests
  22. ender-chest: true
  23. # Load players' inventory
  24. inventory: true
  25. # All options for player stats are here:
  26. stats:
  27. # Load if a player is able to fly
  28. can-fly: true
  29. # Load the player's display name
  30. display-name: false
  31. # Load a player's exhaustion level
  32. exhaustion: true
  33. # Load how much exp a player has
  34. exp: true
  35. # Load a player's hunger level
  36. food: true
  37. # Load if a player is flying
  38. flying: true
  39. # Load what gamemode a player is in. This is shadow-set to false if
  40. # 'manage-gamemodes' is true, to stop infinite loop
  41. gamemode: false
  42. # Load how much health a player has
  43. health: true
  44. # Load what level the player is
  45. level: true
  46. # Load all the potion effects of the player
  47. potion-effects: true
  48. # Load the saturation level of the player
  49. saturation: true
  50. # Load a player's fall distance
  51. fall-distance: true
  52. # Load the fire ticks a player has
  53. fire-ticks: true
  54. # Load the maximum amount of air a player can have
  55. max-air: true
  56. # Load the current remaining air a player has
  57. remaining-air: true
  58.  
  59. # Config Version 2 below this line #
  60.  
  61. # Configure the amount of time between saves, in seconds
  62. # Default is 5 minutes (300 seconds)
  63. save-interval: 2
  64.  
  65. # Config Version 3 Additions below this line #
  66.  
  67. # Attempt to figure out which world a player last logged off in
  68. # and save/load the correct data if that world is different.
  69. # REQUIRES MC 1.9.2 OR NEWER
  70. load-data-on-join: true
  71.  
  72. # Print out debug messages to the console for every event that happens in PWI
  73. debug-mode: true
  74.  
  75. # Config Version 4 additions below this line #
  76.  
  77. # Disables bypass regardless of permission
  78. # Defaults to false
  79. disable-bypass: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement