Anyone up for a challenge? Need help. - 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: Anyone up for a challenge? Need help. (/thread-5089.html) |
Anyone up for a challenge? Need help. - kingpin - 10-24-2012 I would need some help with this> I want some kind of code/macro to put in that uses knife when 2 monsters around and another weapon when more than 2. and if its possible to make it check constantly if there are more than 2 monsters, to be safe. Thanks, says the kingpin. RE: Anyone up for a challenge? Need help. - kingpin - 10-25-2012 Anyone? RE: Anyone up for a challenge? Need help. - Kimoszin - 10-31-2012 Try Code: 1000 {Weapons} IDknife:=3291 IDother:=9999 AROUND:=2 Creatures.Beside()>=!AROUND! [knife] Self.Equip.LeftHand(!IDother!) Exit() {knife} Self.Equip.LeftHand(!IDknife!) Exit() |