BBot - The best bot of the world

Full Version: Hotkey Macro
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

i need macro to stop cavebot, stop atacking and stop looting. i want to press Delete on my keyboard and stop/start these three things.

I need to know how crate that macro,
possible that I will still want to assign something.


GL&HF
You can have macro to stop killer, cavebot, but There is no command to stop looter

Find that commands in command list you have on website or in macro editor

You can stop everything by pressing ctrl +shift +pause
well i need to stop cave and atacker without pause everything. ex. i hunt and someone want to kill me. fast i press "del" cave and atacker stop, but heal work Wink understand? Tongue
I do, that's why I told you to check macro commands.

Tibia.KeyDown(VirtualKeyCode) Check if a Key is down in tibiaVirtual-Key Codes Table

Killer.Stop() Stop the Killer
Cavebot.Stop() Stops the Cavebot
auto or manual ?

Tibia.KeyDown(36)==1
Killer.Stop()
Cavebot.Stop()
like this?
100
{CBStop}
VK_KEYUP:=34
Tibia.IsKeyDown(!VK_KEYUP!)==1
Cavebot.Stop()

100
{CBStart}
VK_KEYUP:=33
Tibia.IsKeyDown(!VK_KEYUP!)==1
Cavebot.Start()

but i have problem with Killer Sad