Need help for 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: Need help for Macro (/thread-14636.html) |
Need help for Macro - dionatandias - 04-14-2014 I need a macro that team dwarven ring with Wyvern on the screen, and unequip if you are not on the screen RE: Need help for Macro - raphaelignacio - 04-14-2014 1000 {Dwarven Ring Use} Creatures.ByRangeName(6, Wyvern) [else] Self.Equip.Ring(3097) {else} Self.Inventory.Ring()==3097 Self.UnEquip.Ring(0) RE: Need help for Macro - dionatandias - 04-14-2014 I tested it, but it is equipping even if nothing on the screen he is pulling ring RE: Need help for Macro - raphaelignacio - 04-14-2014 (04-14-2014, 02:11 AM)dionatandias Wrote: I tested it, but it is equipping even if nothing on the screen he is pulling ring Code: 1000 {Dwarven Ring Use} Creatures.ByRangeName(6, Wyvern)==1 [else] Self.Equip.Ring(3097) {else} Self.Inventory.Ring()==3097 Self.UnEquip.Ring(0) RE: Need help for Macro - dionatandias - 04-14-2014 Now he is equipping exactly when he sees the wyvern but it does not remove the ring more RE: Need help for Macro - mr. Kris - 04-14-2014 Code: 500 {Dwarven Ring} Creatures.ByRangeName(6, Wyvern)>=1 [jump] Self.Equip.Ring(3097) Exit() Creatures.ByRangeName(6, Wyvern)==0 {jump} Self.UnEquip.Ring(0) Exit() Code: Creatures.ByRangeName(6, Wyvern)>=1 Tested RE: Need help for Macro - dionatandias - 04-14-2014 worth + repp! thx |