Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2011
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.42 KB | None | 0 0
  1. # ----- Standard plugin features
  2.  
  3. # Show the death messages on the server
  4. show-deathnotify: 'true'
  5.  
  6. # Allow players to access the deathtp command
  7. allow-deathtp: 'true'
  8.  
  9. # Show kill or death streaks read in from killstreak.txt and deathstreak.txt
  10. show-streaks: 'true'
  11.  
  12. # Item ID of the item you must have in your hand to teleport.  Will remove 1 of these when the command is given.  Leave 0 for free teleports.
  13. charge-item: 0
  14.  
  15. # ----- Death Messages
  16.  
  17. # Must contain at least 1 line.  If there are more, it will appear randomly when a person dies.
  18. # %n for player who died
  19. # %a name of player who attacked in pvp deaths
  20. # %i for item a player was using to kill someone else
  21. #
  22. # Colors
  23. #
  24. # §0   Black
  25. # §1   Navy
  26. # §2   Green
  27. # §3   Blue
  28. # §4   Red
  29. # §5   Purple
  30. # §6   Gold
  31. # §7   LightGray
  32. # §8   Gray
  33. # §9   DarkPurple
  34. # §a   LightGreen
  35. # §b   LightBlue
  36. # §c   Rose
  37. # §d   LightPurple
  38. # §e   Yellow
  39. # §f       White
  40.  
  41. fall:
  42.  - '§4%n has fallen to their death.'
  43.  - '§4%n leaped before looking.'
  44.  
  45. drowning:
  46.  - '§4%n tried to breath water. LOL'
  47.  
  48. fire:
  49.  - '§4%n was burned at the steak. Mmmmm... steak....'
  50.  
  51. fire_tick:
  52.  - '§4%n Got hit by a small spark. And died.  No, really.'
  53.  
  54. lava:
  55.  - '§4%n tried swimming in lava.'
  56.  
  57. creeper:
  58.  - '§4%n was hugged by a creeper'
  59.  
  60. skeleton:
  61.  - '§4A skeleton shot %n to death.'
  62.  
  63. spider:
  64.  - '§4%n was overtaken by the spiders.'
  65.  
  66. zombie:
  67.  - '§4%n was punched to death by zombies.'
  68.  
  69. pvp:
  70.  - '§4%a killed %n using a(n) %i.'
  71.  
  72. block_explosion:
  73.  - '§4Careful %n, TnT goes boom.'
  74.  
  75. contact:
  76.  - '§4%n got raped by a cactus.'
  77.  
  78. ghast:
  79.  - '§4%n was blown to bits by a ghast.'
  80.  
  81. slime:
  82.  - '§4A rare slime found %n.  %n didnt win.'
  83.  
  84. suffocation:
  85.  - '§4%n suffocated.'
  86.  
  87. pigzombie:
  88.  - '§4%n lost the fight against a zombie pig.'
  89.  
  90. unknown:
  91.  - '§4%n died from unknown causes.'
  92.  
  93. # ----- Streaks
  94.  
  95. # format <#of kills> <text to display> %n = player getting the message (in this case, the one on a killstreak).
  96.  
  97. killstreak:
  98.  - '5:§2[%n] Killing Spree!'
  99.  - '10:§2[%n] Rampage!'
  100.  - '15:§2[%n] Dominating!'
  101.  - '20:§2[%n]Unstoppable!'
  102.  - '25:§2[%n]God Like!'
  103.  
  104. # format <#of kills> <text to display> %n = player getting the message (in this case, the one on a deathstreak).
  105.  
  106. deathstreak:
  107.  - '5:§b%n is getting killed out there.'
  108.  - '10:§bDude, %n, craft a sword or something.'
  109.  - '15:§b%n is dead more than alive.'
  110.  - '20:§b%n is just pathetic.'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement