Skip to content

Commit f8e2f2d

Browse files
committed
docs: multiple join commands
1 parent d205bd7 commit f8e2f2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This will connect 30 bots to server at 192.168.0.189:25565 with delay 4000-5000
3030
## ⚡ Options
3131
`-c <count>` The count of bots to connect, default is 1
3232
`-d <min> <max>` Set the minimum and maximum connection delay range in ms, default is 4000-5000
33-
`-j <message>` The message or command to send on join, does not work with `-m` or `-x` option
33+
`-j <message>` Messages or commands to send on join, separated by `&&`, does not work with `-m` or `-x` option
3434
`-p <prefix>` Custom bot nickname prefix eg. `BOT_`
3535
`-r` Generate real looking nicknames instead of random ones
3636
`-n` Do not use color in terminal - useful when the terminal does not support it

src/main/java/me/creepermaxcz/mcbots/Main.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static void main(String[] args) throws Exception {
6767
options.addOption("p", "prefix", true, "bot nick prefix");
6868
options.addOption("m", "minimal", false, "minimal run without any listeners");
6969
options.addOption("x", "most-minimal", false, "minimal run without any control, just connect the bots");
70-
options.addOption("j", "join-msg", true, "join message / command");
70+
options.addOption("j", "join-msg", true, "join messages / commands, separated by &&");
7171

7272
options.addOption("l", "proxy-list", true, "Path or URL to proxy list file with proxy:port on every line");
7373
options.addOption("t", "proxy-type", true, "Proxy type: SOCKS4 or SOCKS5");

0 commit comments

Comments
 (0)