i forgor it only works on chipmunk (?)
This commit is contained in:
parent
7ae30028f8
commit
d0c46ee143
3 changed files with 4 additions and 1 deletions
|
@ -164,6 +164,7 @@ public class Configuration {
|
||||||
public String serverName;
|
public String serverName;
|
||||||
public boolean useCore = true;
|
public boolean useCore = true;
|
||||||
public boolean useChat = false;
|
public boolean useChat = false;
|
||||||
|
public boolean coreCommandSpy = false;
|
||||||
public int reconnectDelay = 2000;
|
public int reconnectDelay = 2000;
|
||||||
public boolean removeNamespaces = false;
|
public boolean removeNamespaces = false;
|
||||||
public int chatQueueDelay = 125;
|
public int chatQueueDelay = 125;
|
||||||
|
|
|
@ -99,7 +99,7 @@ public class SelfCarePlugin extends Bot.Listener {
|
||||||
|
|
||||||
// core
|
// core
|
||||||
else if (selfCares.cspy && !cspy && kaboom) {
|
else if (selfCares.cspy && !cspy && kaboom) {
|
||||||
if (bot.options.useChat) bot.chat.sendCommandInstantly("/commandspy:commandspy on");
|
if (bot.options.useChat || !bot.options.coreCommandSpy) bot.chat.sendCommandInstantly("commandspy:commandspy on");
|
||||||
else bot.core.run("commandspy:commandspy " + bot.username + " on");
|
else bot.core.run("commandspy:commandspy " + bot.username + " on");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -128,6 +128,7 @@ bots:
|
||||||
# serverName - name it whatever you like, it will be used as server name in trusted broadcast and in console
|
# serverName - name it whatever you like, it will be used as server name in trusted broadcast and in console
|
||||||
# useCore - if enabled it just sends the command using chat instead of using core. recommended to enable useChat too when this is enabled
|
# useCore - if enabled it just sends the command using chat instead of using core. recommended to enable useChat too when this is enabled
|
||||||
# useChat - when the bot tellraws it will chat instead of using the core to run tellraw
|
# useChat - when the bot tellraws it will chat instead of using the core to run tellraw
|
||||||
|
# coreCommandSpy - set to true if server supports enabling player's commandspy though command block
|
||||||
# removeNamespaces - when the bot sends a command it will remove like `minecraft:` for example if set to true
|
# removeNamespaces - when the bot sends a command it will remove like `minecraft:` for example if set to true
|
||||||
# coreRateLimit - will ignore commands if reached the ratelimit
|
# coreRateLimit - will ignore commands if reached the ratelimit
|
||||||
|
|
||||||
|
@ -138,6 +139,7 @@ bots:
|
||||||
serverName: 'Localhost'
|
serverName: 'Localhost'
|
||||||
useCore: true
|
useCore: true
|
||||||
useChat: false
|
useChat: false
|
||||||
|
coreCommandSpy: false
|
||||||
reconnectDelay: 2000
|
reconnectDelay: 2000
|
||||||
removeNamespaces: false
|
removeNamespaces: false
|
||||||
chatQueueDelay: 125
|
chatQueueDelay: 125
|
||||||
|
|
Loading…
Reference in a new issue