I want macro for use ring - 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: I want macro for use ring (/thread-11556.html) |
I want macro for use ring - fearozi - 08-28-2013 I need macro for use ring when I press any hotkey (end -exemple).. have macro??? RE: I want macro for use ring - voonart - 08-29-2013 Cant do it. You can set macro for equip/uneqip when some conditions are meet. RE: I want macro for use ring - dedemano2 - 08-29-2013 (08-28-2013, 08:01 PM)fearozi Wrote: I need macro for use ring when I press any hotkey (end -exemple).. 5000 {Equip Life Ring by C} Self.Inventory.Ring()<>3089 Self.UnEquip.Ring(0) Macro.Wait(20) Self.Equip.Ring(3052) Exit() RE: I want macro for use ring - kamill - 08-30-2013 1000 {equip} Tibia.KeyDown(45) Self.Equip.Ring(3052) 1000 {unequip} Tibia.KeyDown(19) Self.UnEquip.Ring(0) When pressing Insert - equip When pressing Pause\Break - unequip Add these macros and test it. RE: I want macro for use ring - fearozi - 08-31-2013 (08-30-2013, 09:22 AM)kamill Wrote: 1000 {equip} Tibia.KeyDown(45) Self.Equip.Ring(3052) Dont work, I test,and nothing...PS: hotkeys dont work. any people know if this kind of macro, work? ow know one ok? RE: I want macro for use ring - 81432858 - 08-31-2013 1 {equip} Tibia.KeyDown(45)==1 Self.Equip.Ring(3052) 1 {unequip} Tibia.KeyDown(19)==1 Self.UnEquip.Ring(0) RE: I want macro for use ring - kamill - 08-31-2013 (08-31-2013, 03:03 AM)81432858 Wrote: 1 {equip} Tibia.KeyDown(45)==1 Self.Equip.Ring(3052) It should work. |