Advertisement
Guest User

Untitled

a guest
Aug 12th, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. #Configuration file for PvPTimer version 1.1
  2. #Please refer to http://dev.bukkit.org/server-mods/pvptimer/pages/configuration
  3. #for more information on the configuration.
  4.  
  5. #NOTE: For numerical values, please only use whole numbers!
  6.  
  7. #What language file should the plugin use?
  8. #Languages are located in /PvPTimer/lang
  9. language: 'English'
  10.  
  11. #Time amount to protect players on first join, respawn, consecutive joins, and teleport.
  12. #Set any to 0 to disable the protection for that type.
  13. timeAmounts:
  14. newPlayers: 30m
  15. default:
  16. respawn: 1s
  17. join: 0s
  18. teleport: 0s
  19. worldChange:
  20. defaultValue: 10s
  21. world: 20s
  22. world_nether: 20s
  23. modrank:
  24. respawn: 1m
  25. join: 1m
  26. teleport: 20s
  27. worldChange:
  28. defaultValue: 20s
  29. world: 1m
  30. world_the_end: 30s
  31.  
  32. #Defines the amount of time between each protection check.
  33. #Low intervals can cause lag, but will result in more accurate protection times. Checking every second is NOT recommended!
  34. checkEvery: 10s
  35.  
  36. #Defines the amount of time between each save to disk.
  37. #High intervals are recommended, as saving isn't required to be done very often.
  38. saveEvery: 30m
  39.  
  40. #Exclude specific worlds from any protection.
  41. excludedWorlds: [world_excluded1, world_excluded2]
  42.  
  43. #Types of entity damage to disallow.
  44. #'player': disable PvP damage only
  45. #'all': disable all entity damage sources (mob damage, etc.), however this does not protect from environmental damage (i.e. falling)
  46. damageType: 'player'
  47.  
  48. #Allows picking up items while protected
  49. allowPickup: true
  50.  
  51. #Allows using containers while protected
  52. allowContainer: true
  53.  
  54. #Help this plugin by sending anonymous stats to MCStats.
  55. #Note that if the main Metrics settings are disabled then this will not take effect.
  56. #Gathered stats are publicly available at http://mcstats.org/plugin/PvPTimer
  57. enableMetrics: true
  58.  
  59. #Wether or not to check for updates
  60. checkForUpdates: true
  61.  
  62. #DO NOT ALTER THESE VALUES! It will screw up your configuration!
  63. #This helps the plugin migrate configurations when updating PvPTimer
  64. revision: 2
  65. migratedFrom: -1
  66.  
  67. #Thanks for using PvPTimer :)
  68. #Please consider donating if you like this plugin, would help me tons!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement