HELP! How can I make my bot put sword in hand, when I run out of spears? - 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: HELP! How can I make my bot put sword in hand, when I run out of spears? (/thread-5471.html) |
HELP! How can I make my bot put sword in hand, when I run out of spears? - Benjyon - 11-21-2012 I've been trying to figure out, how to make my bot, put sword in hand, if I run out of spears. But I can't figure it out. Can someone give me a macro, or explain to me, how to do it. I give reputation to helpers.! RE: HELP! How can I make my bot put sword in hand, when I run out of spears? - Allmighty - 11-21-2012 Use script's 100 % afk RE: HELP! How can I make my bot put sword in hand, when I run out of spears? - Kimoszin - 11-25-2012 WIKI: wiki.bmega.net/doku.php?id=macros_commands Code: 1000 {Spear->Sword} SWORD:=3297 SPEAR:=3277 Misc.ItemCountEx(!SPEAR!)<=0 [else] Self.Equip.LeftHand(!SWORD!) Exit() {else} Self.Equip.LeftHand(!SPEAR!) Exit() RE: HELP! How can I make my bot put sword in hand, when I run out of spears? - Benjyon - 11-25-2012 (11-25-2012, 05:18 PM)Kimoszin Wrote: WIKI: wiki.bmega.net/doku.php?id=macros_commands Thank you very much. Rep for you |