Advertisement
nick191821971782

Untitled

Jun 24th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. let config = {
  2. 'priv': {
  3. autoStart: true,
  4. roomName: `Retired nibbas pub`,
  5. playerName: `bods' bot`,
  6. maxPlayers: 20,
  7. public: false,
  8. repositories: [
  9. {
  10. type: `github`,
  11. repository: `morko/hhm-sala-plugins`
  12. }
  13. ],
  14. pluginConfig: {
  15. 'sav/roles': {
  16. roles: {
  17. admin: `durag`,
  18. host: `durag2`
  19. }
  20. },
  21. 'hr/pause': {
  22. pauseWhenPlayerLeaves: true,
  23. allowPlayersToPause: false,
  24. maxPauseTimes: 1,
  25. },
  26. 'hr/always-one-admin': {
  27. },
  28. 'hr/afk-monitor': {
  29. // If true, then only admins will be monitored.
  30. adminsOnly: false,
  31. // Max time player can be AFK.
  32. maxIdleTime: 5 * 60,
  33. // Max time player can be AFK when he is playing.
  34. maxIdleTimeWhenPlaying: 20,
  35. // Max time admins can be AFK when they are required to take action.
  36. maxAdminIdleTime: 20,
  37. // How many seconds beforehand to warn the player before getting kicked.
  38. warnBefore: 7,
  39. // Message to send to player when he is kicked.
  40. kickMessage: 'AFK',
  41. // Enables debugging messages to console (use only if developing).
  42. debug: false
  43. }
  44. }
  45. }
  46. };
  47. module.exports = config;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement