-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
43 lines (39 loc) · 1.17 KB
/
config.js
File metadata and controls
43 lines (39 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module.exports = {
// Server Connection Details
server: {
host: "play.enterpise.my.id",
port: 25565,
version: "1.21.5" // Updated to match your server version
},
// Bot Configuration
bots: {
count: 20, // Number of bots to spawn
joinDelay: 2000, // Delay between each bot joining (ms)
},
// Naming Strategy
naming: {
type: "random", // "sequential" (Name1, Name2) or "random" (Xy8kL9)
baseName: "CimonBot", // Used for sequential naming
randomLength: 8 // Length of random names
},
// Authentication / On Join Command
auth: {
enabled: true,
// Command to execute after joining.
// useful for /register <password> or /login <password>
command: "/register password123",
delay: 1000 // Time to wait after spawning before sending command (ms)
},
// Spam Configuration
spam: {
enabled: true,
interval: 3000, // Time between messages (ms)
messages: [
"cunk kacunk",
"server kacunk!!",
"kacunk tembus bot",
"najis p2wn",
"najis keepinv"
]
}
};