BBot - The best bot of the world
Need macro to autoequip energy ring if monster on screen = 5 - 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 macro to autoequip energy ring if monster on screen = 5 (/thread-18207.html)



Need macro to autoequip energy ring if monster on screen = 5 - shottyx - 07-04-2015

As the title says, actually I am leveling up in a spawn where I'm fine until some jerk lure me 5-4 minos at oramond.. Can someone help me creating a macro which auto equip utamo ring if HP is on X(40% less hp) or when monsters on screen are over 4?

Also too!! I tried to use the SOFT BOOTS macro posted in here but didnt work for me, he just take off soft boots and never wear them again.. Angel


RE: Need macro to autoequip energy ring if monster on screen = 5 - Srox - 07-04-2015

500 {Energy ring 4>} Creatures.OnScreen()>=4 [jump] Self.Equip.Ring(3051) Exit() Creatures.OnScreen()<4 {jump} Self.UnEquip.Ring(0) Exit()


RE: Need macro to autoequip energy ring if monster on screen = 5 - kaiquegabriel - 07-04-2015

Equip energy ring when 4+
Code:
500 {put ring} Creatures.Beside()=>4 Self.Equip.Ring(3051)

Remove energy ring when 3-
Code:
500 {remove ring} Creatures.Beside()=<3 Self.UnEquip.Ring(0)

Equip energy ring when health 40%-
Code:
500 {health 40%- ering} Self.Health%()<40 Self.Equip.Ring(3051)

Unequip energy ring when health 40%+
Code:
500 {health 40%+ remove ring} Self.Health%()>99 Self.UnEquip.Ring(0)

Add all and active auto macros.


RE: Need macro to autoequip energy ring if monster on screen = 5 - shottyx - 07-04-2015

Thanks bro, both of you!! one last thing!! Can you help me out with a equip/unequip soft boot Macro? I tried one at the guides but it didn't work out!! :/


RE: Need macro to autoequip energy ring if monster on screen = 5 - kaiquegabriel - 07-04-2015

Equip soft when mana 600-
Code:
3000 {equipsoft} Self.Mana=<600 Self.Equip.Boots(6529)

Change soft to boh when mana 700+
Code:
3000 {unequipsoft} Self.Mana=>700 Self.Equip.Boots(3079)

only change value of mana (600 ~ 700), if want another boots, not boh, change id (3079)


RE: Need macro to autoequip energy ring if monster on screen = 5 - shottyx - 07-04-2015

Thank you bro !! +rep