Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2017
1,063
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. # EasyReports by Ajneb97
  2. # I'm new here in the creation of plugins so it is possible that you can find bugs.
  3. # If so, please contact with me:
  4. # https://www.spigotmc.org/members/ajneb97.43796/
  5. # -> reports-by-player <- The ammount of reports a user can make before they are deleted
  6. # -> new-version-reminder <- If is set to true, a message will be sended to all admins if there is a new version of the plugin.
  7. # -> report-sound (enabled) <- Enable or disable the sound / true = yes / false = no
  8. # -> report-sound (name) <- Name of the sound that the player will hear when a report is made.
  9. # -> report-sound-error <- Player will hear this sound if something is wrong when reporting.
  10. # -> reported-user-sound <- Reported player will hear this sound.
  11. # You need to know that sounds names have changed in 1.9 so be careful with that. Links:
  12. # Sounds 1.8: http://docs.codelanx.com/Bukkit/1.8/org/bukkit/Sound.html
  13. # Sounds 1.9+: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Sound.html
  14. Config:
  15. reports-by-player: 1
  16. new-version-reminder: true
  17. report-sound:
  18. enabled: true
  19. name: NOTE_PLING
  20. pitch: 1
  21. report-sound-error:
  22. enabled: true
  23. name: NOTE_PLING
  24. pitch: 0.1
  25. reported-user-sound:
  26. enabled: true
  27. name: NOTE_PLING
  28. pitch: 0.1
  29. Messages:
  30. prefix: '&4[&cEasyReports&4]'
  31. consoleCommand: '&6Este comando solo puede ser utilizado por un jugador!'
  32. errorReport: '&6Para reportar a un jugador utiliza: &7/erp report <usuario> <razon> &6o &7/report <usuario> <razon>'
  33. errorCheck: '&6Para revisar los reportes utiliza: &7/erp check <usuario> <reporte>'
  34. errorDelete: '&6Para eliminar reportes utiliza: &7/erp delete <usuario> <reporte>'
  35. reportCorrect: '&6Jugador reportado correctamente!'
  36. reportSelf: '&6No puedes reportarte a ti mismo!'
  37. commandNotExists: '&6Ese comando no existe!'
  38. totalUsers: '&aTotal: &c%total%'
  39. reportedUser: '&aReportes del usuario &6%user%&a: &c%total%'
  40. userNotReported: '&6El usuario &a%user% &6no ha sido reportado'
  41. userNoExists: '&6El usuario &a%user% &6has nunca ha jugado en el servidor!'
  42. reportNotExists: '&6Ese reporte no existe!'
  43. reportAlreadyMade: '&6Ya has reportado a ese jugador!'
  44. reportsDeleted: '&6Todos los reportes de &a%user% &6han sido eliminados'
  45. reportDeleted: '&6El reporte &c%report% &6del usuario &a%user% &6ha sido eliminado'
  46. reportMessage: '&6Acabas de ser reportado por &a%user%&6!'
  47. reportNumber: '&aNumero de Reporte: &c%report%'
  48. reportedBy: '&aReportado por:'
  49. noReports: '&6No existen reportes'
  50. reportsLevel: '&7&lINDICE DE REPORTES:'
  51. lowLevel: '&bBAJO'
  52. mediumLevel: '&eMEDIO'
  53. highLevel: '&4ALTO'
  54. checkReports: '&6Usuarios Reportados:'
  55. noPermissions: '&6No tienes permisos para ejecutar ese comando!'
  56. pluginReload: '&6Configuracion Recargada!'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement