saturnine_nl

centhaph config

May 7th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.45 KB | None | 0 0
  1. Core:
  2. #Print messages to terminal if true (debug)
  3. logEvents: true
  4.  
  5. #Place a sign on the cenotaph if true
  6. cenotaphSign: true
  7.  
  8. #Prevent non-Op players from destroying cenotaphs if true (destroyQuickLoot overrides)
  9. noDestroy: true
  10.  
  11. #Show status messages to the player if true
  12. playerMessage: true
  13.  
  14. #Save Cenotaph listing between server reloads if true
  15. saveCenotaphList: true
  16.  
  17. #Stop Cenotaph creation next to existing chests if true
  18. noInterfere: true
  19.  
  20. #Check for new versions on startup
  21. versionCheck: true
  22.  
  23. #Cenotaph normally checks to make sure it isn't trying to create a chest in the void.
  24. #If you handle or modify the void with another plugin, you can disable that check here.
  25. #This option should be true for most servers.
  26. voidCheck: true
  27.  
  28. #If you are not locking your chests with Lockette or LWC but still want them to be
  29. #protected against Creeper explosions, or you want your chests to be protected even
  30. #after they are unlocked, enable this.
  31. creeperProtection: false
  32.  
  33. #Each line may be one of any custom text OR:
  34. #{name} for player name
  35. #{date} for day of death
  36. #{time} for time of death (server time)
  37. #{reason} for cause of death
  38. #REMEMBER: LINES ARE LIMITED TO 15 CHARACTERS, AND DON'T FORGET THE QUOTES!
  39. Sign:
  40. Line1: "{name}"
  41. Line2: "RIP"
  42. Line3: "{date}"
  43. Line4: "{time}"
  44.  
  45. #For formatting, see http://download.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html
  46. dateFormat: "dd/MM/yyyy"
  47. timeFormat: "hh:mm a"
  48.  
  49. #Disable in the worlds below
  50. disableInWorlds:
  51. - CTM
  52. - hyperion
  53. #- world2
  54.  
  55. Removal:
  56. #Destroy cenotaph on player quickloot if true
  57. destroyQuickLoot: true
  58.  
  59. #Remove cenotaph after removeTime seconds if true
  60. cenotaphRemove: true
  61. removeTime: 1800
  62.  
  63. #Set cenotaph removal time based on player level, with the above removeTime setting the maximum cap
  64. levelBasedRemoval: false
  65. levelBasedTime: 60
  66.  
  67. #Immediately remove cenotaph once it is empty, overriding all other timeout options
  68. #WARNING: THIS IS A PROCESSOR-INTENSIVE OPTION
  69. removeWhenEmpty: false
  70.  
  71. #Never remove a cenotaph unless it is empty
  72. #WARNING: THIS IS A PROCESSOR-INTENSIVE OPTION
  73. keepUntilEmpty: false
  74.  
  75. Security:
  76. LocketteEnable: false
  77. lwcEnable: true
  78.  
  79. #Remove security after securityTimeout seconds
  80. securityRemove: false
  81. securityTimeout: 3600
  82.  
  83. #Set LWC protection to Public instead of removing it after the timeout
  84. lwcPublic: false
  85.  
  86. #Remember, your character limit for the below message plus whatever else is on the line is 15 characters.
  87. DeathMessages:
  88. Monster:
  89. Zombie: "a Zombie"
  90. Skeleton: "a Skeleton"
  91. Spider: "a Spider"
  92. Wolf: "a Wolf"
  93. Creeper: "a Creeper"
  94. Slime: "a Slime"
  95. Ghast: "a Ghast"
  96. PigZombie: "a Pig Zombie"
  97. Giant: "a Giant"
  98. Other: "a Monster"
  99. World:
  100. Cactus: "a Cactus"
  101. Suffocation: "Suffocation"
  102. Fall: "a Fall"
  103. Fire: "a Fire"
  104. Burning: "Burning"
  105. Lava: "Lava"
  106. Drowning: "Drowning"
  107. Lightning: "Lightning"
  108. Explosion:
  109. Misc: "an Explosion"
  110. TNT: "a TNT Explosion"
  111. Misc:
  112. Dispenser: "a Dispenser"
  113. Void: "the Void"
  114. Other: "Unknown"
  115.  
  116. configVer: 13
Advertisement
Add Comment
Please, Sign In to add comment