Advertisement
Guest User

Untitled

a guest
Apr 18th, 2013
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 KB | None | 0 0
  1. global-only:
  2. # Message to player when they don't have permission
  3. no-perm: 'You do not have permission'
  4.  
  5. # Sent when something does not exist
  6. # params: Item <item>
  7. not-exist: '<item> does not exist.'
  8.  
  9. global:
  10. # Message to player when a player joins game
  11. # params: Player <player>; Game <game>
  12. join-message: '<player> has joined the game <game>.'
  13.  
  14. # Message to player when a player rejoins game
  15. # params: Player <player>; Game <game>
  16. rejoin-message: '<player> has rejoined the game <game>'
  17.  
  18. # Message to player when a player leaves game
  19. # params: Player <player>; Game <game>
  20. leave-message: '<player> has left the game <game>.'
  21.  
  22. # Message to player when a player quit game
  23. # params: Player <player>; Game <game>
  24. quit-message: '<player> has quit the game <game>.'
  25.  
  26. # Message to player when a player vote game
  27. # params: Player <player>; Game <game>
  28. vote-message: '<player> is ready to play <game>. Type /hg vote when you are ready to play.'
  29.  
  30. # If death-messages is configured in config.yml, then one of these will be played randomly on kill,
  31. # params: Killed <killed>; Killer <killer>; Game <game>
  32. kill-messages:
  33. - '<killed> was killed in <game> by <killer>'
  34.  
  35. # If death-messages is configured in config.yml, then one of these will be played randomly on death,
  36. # params: Player <player>; Cause <cause>; Game <game>
  37. death-messages:
  38. - '<player> died in <game>'
  39.  
  40. # Message when there is not a winner
  41. no-winner: 'Strangely, there was no winner left.'
  42.  
  43. # Message when someone wins
  44. # params: Player <player>; Game <game>
  45. win: '<player> has won the game <game>! Congratulations!'
  46.  
  47. # Message when a game is already counting down
  48. # params: Game <game>
  49. already-counting-down: '<game> is already counting down.'
  50.  
  51. # Message when a game is not enabled
  52. # params: Game <game>
  53. not-enabled: '<game> is currently not enabled.'
  54.  
  55. # Message when a game is not running
  56. # params: Game <game>
  57. not-running: '<game> is not running.'
  58.  
  59. # Message when a game is running
  60. # params: Game <game>
  61. running: '<game> is an already running game.'
  62.  
  63. # Message when not in a game
  64. not-in-game: 'You are not in a game.'
  65.  
  66. # Message when in a game
  67. # params: Game <game>
  68. in-game: 'You are in <game>.'
  69.  
  70. # Message after voting
  71. voted: 'You have voted that you are ready.'
  72.  
  73. # Deathcause for non PVP deaths
  74. # eg:
  75. # deathcause:
  76. # skeletonarcher: 'Skeleton with a bow'
  77. #
  78. # Possible keys are: zombie, creeper, spider, cavespider,enderman, silverfish, magmacube, slime, wolf, igzobie, irongolum, giant, skeletonmelee, witherskeleton
  79. # skeletonarcher, arrow, snowman, ghast, blaze, wither, fireball, tnt, drowning, starvation, cactus, unknown, fire, lava, lightning, poison, suffocation
  80. # void, fall, suicide, potionofharming, withereffect, anvil
  81.  
  82. # These names have to match the ones in the config.yml to work properly
  83. setups:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement