Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need macro to autoequip energy ring if monster on screen = 5
#1
Thumbs Up 
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
Reply
#2
500 {Energy ring 4>} Creatures.OnScreen()>=4 [jump] Self.Equip.Ring(3051) Exit() Creatures.OnScreen()<4 {jump} Self.UnEquip.Ring(0) Exit()
Reply
#3
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.
Reply
#4
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!! :/
Reply
#5
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)
Reply
#6
Thank you bro !! +rep
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)