BBot - The best bot of the world
killer.stop problem - Printable Version

+- BBot - The best bot of the world (https://forums.bmega.net)
+-- Forum: Support (https://forums.bmega.net/forum-6.html)
+--- Forum: Support & Help (https://forums.bmega.net/forum-8.html)
+--- Thread: killer.stop problem (/thread-19896.html)



killer.stop problem - Laxus5 - 05-12-2016

Hi,

i try to create macro

100
{Kill Start}
VK_KEYUP:=36
Tibia.IsKeyDown(!VK_KEYUP!)==1
Killer.Start()

e.g if i change Killer.Start to Cavebot.Start it works but i dont know why Killer.Start dont work Sad

Help plax Big Grin


RE: killer.stop problem - Catar - 05-12-2016

Put
exit()

At the end of each macro


RE: killer.stop problem - Laxus5 - 05-12-2016

you mean :

100
{Kill Start}
VK_KEYUP:=36
Tibia.IsKeyDown(!VK_KEYUP!)==1
Killer.Start()
exit()


RE: killer.stop problem - Catar - 05-12-2016

Bot will finish killing creatures it attacks first


You had same name of variable.


100
{CBStop}
VK_KEYDOW:=34
Tibia.IsKeyDown(!VK_KEYDOW!)==1
Cavebot.Stop()
Killer.Stop()
exit()

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


RE: killer.stop problem - Laxus5 - 05-12-2016

i mark active in Cavebot and attacker in Killer
when i use macro, Cavebot is stop but Killer not. i dont know why.
Cavebot working Killer now. Unless when atacking monsters, macro worn when?


RE: killer.stop problem - Catar - 05-12-2016

As I said, it will keep attacking ask monsters he already saw.until screen is clear of monsters.

You can try adding Self.Stop() under Killer.Stop()