MCCTeam / Minecraft-Console-Client

Lightweight console for Minecraft chat and automated scripts
https://mccteam.github.io
Other
1.67k stars 402 forks source link

I want to script or code #2792

Closed xDarkLife55 closed 2 months ago

xDarkLife55 commented 2 months ago

I want to per two minute autobot send message "/repair hand". How can I do that ?

milutinke commented 2 months ago

Use the Script Scheduler chat bot, I've mentioned it in #2790 .

You can add the following task to the Script Scheduler chat bot settings in the MinecraftClient.ini file:

[[ChatBot.ScriptScheduler.TaskList]]
    Task_Name = "Repair Task"
    Trigger_On_First_Login = false
    Trigger_On_Login = false
    Trigger_On_Times = { Enable = false, Times = [ 14:00:00, ] }
    Trigger_On_Interval = { Enable = true, MinTime = 2.0, MaxTime = 2.0 }
    Action = "send /repair hand"

PS: Make sure the client is not running while you change the configuration, otherwise it will override your changes.