Advertisement
nick191821971782

Untitled

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