BBot - The best bot of the world
Hotkey Macro - Printable Version

+- BBot - The best bot of the world (https://forums.bmega.net)
+-- Forum: Scripts & Macros (https://forums.bmega.net/forum-4.html)
+--- Forum: Requests (https://forums.bmega.net/forum-17.html)
+--- Thread: Hotkey Macro (/thread-19895.html)



Hotkey Macro - Laxus5 - 05-12-2016

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


RE: Hotkey Macro - Catar - 05-12-2016

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


RE: Hotkey Macro - Laxus5 - 05-12-2016

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


RE: Hotkey Macro - Catar - 05-12-2016

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


RE: Hotkey Macro - Laxus5 - 05-12-2016

auto or manual ?

Tibia.KeyDown(36)==1
Killer.Stop()
Cavebot.Stop()
like this?


RE: Hotkey Macro - Laxus5 - 05-12-2016

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