Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. /**
  2. * Example haxroomie configuration file.
  3. * Opens 2 private room.
  4. *
  5. * Copy this to the haxroomie directory and edit to your liking to
  6. * easily get haxroomie running.
  7. *
  8. * CHANGE THE admin PASSWORD!!!
  9. */
  10.  
  11. let config = {
  12. 'priv1': {
  13. autoStart: true,
  14. roomName: 'Boozus' 24/7 Hax Host',
  15. playerName: '🇮🇹Fab's Dad🇮🇹',
  16. maxPlayers: 20,
  17. public: false,
  18. pluginConfig: {
  19. // get admin priviledges with !auth admin adminpass
  20. 'sav/roles': {
  21. roles: {
  22. admin: 'skizzy',
  23. }
  24. }
  25. }
  26. },
  27. 'priv2': {
  28. autoStart: true,
  29. roomName: 'bod's private room',
  30. playerName: 'host',
  31. maxPlayers: 10,
  32. public: false,
  33. pluginConfig: {
  34. // get admin priviledges with !auth admin adminpass
  35. 'sav/roles': {
  36. roles: {
  37. admin: 'adminpass',
  38. }
  39. }
  40. }
  41. }
  42. };
  43. module.exports = config;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement