chomens-bot-js/config.js

114 lines
2.4 KiB
JavaScript
Raw Normal View History

2022-08-18 22:36:34 -04:00
module.exports = {
version: '1.19.2',
prefixes: [
2023-02-26 04:51:08 -05:00
'*',
2023-03-01 01:10:39 -05:00
'cbot ',
'/cbot '
2022-08-18 22:36:34 -04:00
],
commandsDir: '../commands', // this will be used by the commands.js in the plugins folder so it needs ../
keys: {
normalKey: '<27>iB_D<5F><44><EFBFBD>k<EFBFBD><6B>j8H<38>{?[/ڭ<>f<EFBFBD><>^-=<3D>Ț<EFBFBD><C89A>v]<5D><>g><3E><>=c',
2022-11-27 02:35:28 -05:00
ownerHashKey: 'b)R<><52>nF<6E>CW<43><57><EFBFBD>#<23>\\[<5B>S*8"t^eia<69>Z<EFBFBD><5A>k<EFBFBD><6B><EFBFBD><EFBFBD>K1<4B>8zȢ<7A>'
2022-10-29 20:43:37 -04:00
},
2022-12-04 07:58:22 -05:00
proxy: {
enabled: true,
version: '1.19.2'
2022-12-04 07:58:22 -05:00
},
console: true,
chat: {
messageLength: 100
},
core: {
layers: 3,
refillInterval: 1000 * 60,
customName: [
2022-11-12 04:03:45 -05:00
{
2022-12-05 04:35:54 -05:00
text: 'ChomeNS ',
2022-11-27 02:35:28 -05:00
color: 'yellow'
2022-11-12 04:03:45 -05:00
},
{
text: 'Core',
2022-11-27 02:35:28 -05:00
color: 'green'
2022-12-05 04:35:54 -05:00
},
{
text: '\u2122',
color: 'gold'
2022-11-27 02:35:28 -05:00
}
]
2022-08-18 22:36:34 -04:00
},
self_care: {
prefix: true,
op: true,
cspy: true,
vanish: true,
2023-03-02 02:29:48 -05:00
nickname: true,
socialspy: true,
gamemode: true,
mute: true,
2022-11-27 02:35:28 -05:00
endCredits: true
2022-11-06 05:52:40 -05:00
},
eval: {
2022-11-27 02:35:28 -05:00
serverUrl: 'http://192.168.1.105:4445/'
2022-10-14 04:46:41 -04:00
},
reconnectTimeout: 1000 * 2,
timeoutInterval: 1000 * 40,
self_care_check_interval: 2000,
discord: {
token: 'OTcxNjUwNDU2NzA5Mzk4NTY5.G3lKC2._XQNTTU1Jqmaam_A0JKSe93GP1vFZvDpiXqZzA',
servers: {
2022-11-11 07:03:44 -05:00
'sus.shhnowisnottheti.me': '990140129245020221',
'play.kaboom.pw': '1000355361196355674',
'129.159.58.114': '998945155316973650',
'192.168.1.103': '1002806756885413978',
'kitsune.icu': '1004006678460637315',
2022-12-09 20:37:27 -05:00
'fallback.kitsune.icu': '1050764247518412850',
2023-02-26 04:51:08 -05:00
'chayapak.chipmunk.land': '1010734897796763758',
'play.chipmunk.land': '1042590315464364032',
'mcslot.eu': '1057090538404323338'
2022-08-18 22:36:34 -04:00
},
2022-12-01 05:15:30 -05:00
embedsColors: {
normal: '#FFFF00',
error: '#FF0000'
},
2022-11-27 02:35:28 -05:00
prefix: '!'
2022-08-18 22:36:34 -04:00
},
servers: [
2022-12-17 05:57:24 -05:00
// logging means log to console
2023-03-01 01:10:39 -05:00
{
host: 'play.kaboom.pw',
port: 25565,
kaboom: true,
2023-03-01 07:51:24 -05:00
logging: true,
useChat: false
},
{
host: 'sus.shhnowisnottheti.me',
port: 25565,
kaboom: false,
logging: true,
useChat: true
2023-03-01 01:10:39 -05:00
},
2023-02-26 04:51:08 -05:00
{
2023-03-01 01:10:39 -05:00
host: 'kitsune.icu',
port: 25565,
kaboom: true,
2023-03-01 07:51:24 -05:00
logging: false,
useChat: false
2023-03-01 01:10:39 -05:00
},
{
host: 'play.chipmunk.land',
port: 25565,
kaboom: true,
2023-03-01 07:51:24 -05:00
logging: true,
useChat: false
2023-03-01 01:10:39 -05:00
},
{
host: 'chayapak.chipmunk.land',
port: 25565,
2023-03-01 01:10:39 -05:00
kaboom: true,
2023-03-01 07:51:24 -05:00
logging: true,
useChat: false
}
2022-11-27 02:35:28 -05:00
]
}