Advertisement
Guest User

Untitled

a guest
Jun 16th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. # Global settings.
  2.  
  3. Global:
  4.  
  5. # Broadcast to everyone when a player is muted or unmuted.
  6.  
  7. Notify: true
  8.  
  9. # Default mute time in minutes when not specified in mute command. (52594900 = perm)
  10.  
  11. DefaultTime: 5
  12.  
  13. # Maximum mute time
  14.  
  15. MaxTime:
  16.  
  17. # Allow admins to see the muted messages
  18.  
  19. AdminListen: false
  20.  
  21. # Default mute reason
  22.  
  23. DefaultReason: None
  24.  
  25. # Permission node for admins when AdminListen is enabled
  26.  
  27. BroadcastNode: mutemanager.listen
  28.  
  29. # Block optional commands when muted
  30.  
  31. BlockCommands: false
  32.  
  33. # Commands that are blocked when a player is muted
  34.  
  35. Commands:
  36.  
  37. - /msg
  38.  
  39. - /tell
  40.  
  41. AllowOfflineMute: false
  42.  
  43. # Nothing to see here
  44.  
  45. Debug: false
  46.  
  47. # Message templates. The following tokens are supported.
  48.  
  49. # %DURATION% - Length of the mute
  50.  
  51. # %REASON% - Reason for the mute
  52.  
  53. # %DURATIONTEXT%
  54.  
  55. # %REASONTEXT%
  56.  
  57. # %AUTHOR% - Name of the muter
  58.  
  59. # %PLAYER% - Name of the muted player
  60.  
  61. Messages:
  62.  
  63. NoPermission: '&cYou do not have permission to use this command!'
  64.  
  65. ZeroSeconds: 0 seconds
  66.  
  67. Minutes: minutes
  68.  
  69. Seconds: seconds
  70.  
  71. Hours: hours
  72.  
  73. Days: days
  74.  
  75. Years: years
  76.  
  77. Forever: forever
  78.  
  79. UnableToUnMute: '&eUnable to unmute &b%PLAYER%&e.'
  80.  
  81. # %REASONTEXT%
  82.  
  83. Reason: '&eReason: &a%REASON%'
  84.  
  85. # %DURATIONTEXT%
  86.  
  87. Duration: '&eDuration: &a%DURATION%'
  88.  
  89. YouHaveBeenMuted: '&eYou have been muted! %DURATIONTEXT% %REASONTEXT%'
  90.  
  91. YouHaveBeenUnMuted: '&eYou have been unmuted!'
  92.  
  93. NoPlayer: 'There is no player by that name online!'
  94.  
  95. PlayerNowMuted: '&b%PLAYER% &eis now muted! %DURATIONTEXT% %REASONTEXT%'
  96.  
  97. PlayerNowUnMuted: '&b%PLAYER% &ehas been unmuted!'
  98.  
  99. YouAreMuted: '&eYou are muted! %DURATIONTEXT% %REASONTEXT%'
  100.  
  101. MaxReason: 'Mute time of &a%TIME% &rminutes exceeds maximum &a%MAX% &rminutes!'
  102.  
  103. Exempt: '&b%PLAYER% &eis exempt from mute!'
  104.  
  105. Database:
  106.  
  107. Enabled: false
  108.  
  109. User: USERNAME
  110.  
  111. Pass: PASSWORD
  112.  
  113. Url: jdbc:mysql://localhost/mutemanager
  114.  
  115. Driver: com.mysql.jdbc.Driver
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement