Posts: 617
Threads: 61
Joined: Aug 2014
Reputation:
0
500 {Energy ring 4>} Creatures.OnScreen()>=4 [jump] Self.Equip.Ring(3051) Exit() Creatures.OnScreen()<4 {jump} Self.UnEquip.Ring(0) Exit()
Posts: 942
Threads: 58
Joined: Nov 2013
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.
Posts: 7
Threads: 3
Joined: Jul 2015
Reputation:
0
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!! :/
Posts: 942
Threads: 58
Joined: Nov 2013
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)