Advertisement
nick191821971782

Untitled

Jan 18th, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. let config = {
  2. room: {
  3. autoStart: true,
  4. roomName: `Bod's Test Pub || 24/7 || Friends Only`,
  5. playerName: `bot`,
  6. maxPlayers: 16,
  7. public: false,
  8. repositories: [
  9. {
  10. type: 'github',
  11. repository: 'morko/hhm-sala-plugins',
  12. },
  13. {
  14. type: 'github',
  15. repository: 'XHerna/hhm-plugins',
  16. },
  17. ],
  18. pluginConfig: {
  19. 'sav/roles': {
  20. roles: {
  21. admin: `imb0ds1`,
  22. host: `imb0ds1`
  23. }
  24. },
  25. 'hr/ban-protection': {
  26. protectedRoles: [
  27. 'admin',
  28. 'host'
  29. ],
  30. allowOnlyProtectedRolesToBan: true,
  31. violationMessage: 'You can not ban that player!',
  32. banTheBanners: false
  33. },
  34. 'hr/afk-monitor': {
  35. adminsOnly: true,
  36. maxIdleTime: 5 * 60,
  37. maxIdleTimeWhenPlaying: 20,
  38. maxAdminIdleTime: 20,
  39. warnBefore: 7,
  40. kickMessage: 'AFK',
  41. debug: false
  42. },
  43. 'hr/always-one-admin': {},
  44. 'hr/win-streak': {},
  45. 'hr/simple-commands': {},
  46. 'hr/kickban': {},
  47. 'tut/stats': {},
  48. 'tut/3def': {},
  49. 'tut/gamereview': {},
  50. },
  51. },
  52. };
  53. module.exports = config;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement