Advertisement
Guest User

Untitled

a guest
Aug 21st, 2011
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. Core:
  2. #Print messages to terminal if true (debug)
  3. logEvents: false
  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: false
  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: false
  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: "{reason}"
  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: "MM/dd/yyyy"
  47. timeFormat: "hh:mm:ss a"
  48.  
  49. Removal:
  50. #Destroy cenotaph on player quickloot if true
  51. destroyQuickLoot: true
  52.  
  53. #Remove cenotaph after removeTime seconds if true
  54. cenotaphRemove: false
  55. removeTime: 3600
  56.  
  57. #Immediately remove cenotaph once it is empty, overriding all other timeout options
  58. #WARNING: THIS IS A PROCESSOR-INTENSIVE OPTION
  59. removeWhenEmpty: true
  60.  
  61. #Never remove a cenotaph unless it is empty
  62. #WARNING: THIS IS A PROCESSOR-INTENSIVE OPTION
  63. keepUntilEmpty: false
  64.  
  65. Security:
  66. LocketteEnable: true
  67. lwcEnable: false
  68.  
  69. #Remove security after securityTimeout seconds
  70. securityRemove: true
  71. securityTimeout: 28800
  72.  
  73. #Set LWC protection to Public instead of removing it after the timeout
  74. lwcPublic: false
  75.  
  76. #Remember, your character limit for the below message plus whatever else is on the line is 15 characters.
  77. DeathMessages:
  78. Monster:
  79. Zombie: "a Zombie"
  80. Skeleton: "a Skeleton"
  81. Spider: "a Spider"
  82. Wolf: "a Wolf"
  83. Creeper: "a Creeper"
  84. Slime: "a Slime"
  85. Ghast: "a Ghast"
  86. PigZombie: "a Pig Zombie"
  87. Giant: "a Giant"
  88. Other: "a Monster"
  89. World:
  90. Cactus: "a Cactus"
  91. Suffocation: "Suffocation"
  92. Fall: "a Fall"
  93. Fire: "a Fire"
  94. Burning: "Burning"
  95. Lava: "Lava"
  96. Drowning: "Drowning"
  97. Lightning: "Lightning"
  98. Explosion:
  99. Misc: "an Explosion"
  100. TNT: "a TNT Explosion"
  101. Misc:
  102. Dispenser: "a Dispenser"
  103. Void: "the Void"
  104. Other: "Unknown"
  105.  
  106. configVer: 12
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement