Advertisement
Guest User

Untitled

a guest
Jan 17th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. let config = {
  2. priv: {
  3. autoStart: true,
  4. roomName: `pub`,
  5. playerName: `bod`,
  6. maxPlayers: 20,
  7. public: false,
  8. repositories: [
  9. // salamini's repository from https://github.com/morko/hhm-sala-plugins
  10. {
  11. type: 'github',
  12. repository: 'morko/hhm-sala-plugins',
  13. },
  14. ],
  15. pluginConfig: {
  16. // uncomment the 'sav/roles' if you want admin passwords
  17. 'sav/roles': {
  18. roles: {
  19. // get admin priviledges with !auth admin adminpass
  20. admin: `imb0ds`,
  21. // get host priviledges with !auth host hostpass
  22. host: `imb0d$`
  23. }
  24. },
  25. // keeps track of banned players and has some commands for players with
  26. // admin or host priviledges
  27. 'hr/kickban': {},
  28. 'hr/simple-commands': {},
  29. },
  30. },
  31. };
  32. module.exports = config;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement