Advertisement
nick191821971782

Untitled

Jul 17th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. const path = require('path');
  2.  
  3. let config = {
  4. room: {
  5. autoStart: true,
  6. roomName: `Nick's Test Pub`,
  7. noPlayer: true,
  8. maxPlayers: 30,
  9. public: false,
  10. roomScript: path.join(__dirname, '..', 'nick', 'room1.js'),
  11. repositories: [
  12. {
  13. type: 'github',
  14. repository: 'morko/hhm-sala-plugins',
  15. },
  16. {
  17. type: 'github',
  18. repository: 'XHerna/hhm-plugins',
  19. },
  20. ],
  21. pluginConfig: {
  22. 'sav/roles': {
  23. roles: {
  24. admin: `n1ckscr1b`,
  25. host: `n1ckscr1b`
  26. }
  27. },
  28. 'hr/ban-protection': {
  29. protectedRoles: [
  30. 'admin',
  31. 'host'
  32. ],
  33. allowOnlyProtectedRolesToBan: true,
  34. violationMessage: 'You can not ban that player!',
  35. banTheBanners: false
  36. },
  37. 'hr/always-one-admin': {},
  38. 'hr/win-streak': {},
  39. 'hr/simple-commands': {},
  40. 'hr/kickban': {},
  41. },
  42. },
  43. };
  44. module.exports = config;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement