Ok first Setup your Might and Energy ring in your Hotkeys as Equip item
![[Image: qDGQiP9.png]](http://i.imgur.com/qDGQiP9.png)
Copy and paste this into variables tab
Here is a macro,
Copy it into
and press Done.
[macro]80 {MightEnergy} MightFkey:=!F6! EnerFkey:=!F7! EneID_OFF:=3051 EneID_ON:=3088 MightID:=3048 HP1:=70 HP2:=40 HPOff:=97 CurMP:=Self.Mana%() CurHP:=Self.Health%() coR:=Self.inventory.Ring() !coR!==0 [a1] !CurHP!<=!HP1! [hp1] !CurHP!<=!HP2! [hp2] {ener} !coR!<>!EneID_ON! Tibia.SendKey(!EnerFkey!) exit() {hp2} !coR!<>!MightID! Tibia.SendKey(!MightFkey!) exit() {hp1} exit() {a1} !coR!==!EneID_ON! [a2] !CurHP!>=!HPOff! [hp3] !CurMP!>=5 {off} Self.UnEquip.Ring(0) exit() {hp3} exit() {a2} !coR!==!MightID! [a3] !CurHP!>=!HPOff! [hp4] Label(off) exit() {hp4} !CurHP!<=!HP2! [hp5] Label(ener) exit() {hp5} exit() [/macro]
Edit macro and Setup what Hotkeys you want to use for your rings,
I used F6 and F7 as an example, just change the number if want any other.
MightFkey:=!F6!
EnerFkey:=!F7!
Here is code if anyone wants to look at it
About that Amulet macro,
Just learn how is this one made, and make similar for it....
![[Image: qDGQiP9.png]](http://i.imgur.com/qDGQiP9.png)
Copy and paste this into variables tab
Code:
F1=112
F2=113
F3=114
F4=115
F5=116
F6=117
F7=118
F8=119
F9=120
F10=121
F11=122
F12=123
Here is a macro,
Copy it into
![[Image: 6HokfvU.png]](http://i.imgur.com/6HokfvU.png)
and press Done.
[macro]80 {MightEnergy} MightFkey:=!F6! EnerFkey:=!F7! EneID_OFF:=3051 EneID_ON:=3088 MightID:=3048 HP1:=70 HP2:=40 HPOff:=97 CurMP:=Self.Mana%() CurHP:=Self.Health%() coR:=Self.inventory.Ring() !coR!==0 [a1] !CurHP!<=!HP1! [hp1] !CurHP!<=!HP2! [hp2] {ener} !coR!<>!EneID_ON! Tibia.SendKey(!EnerFkey!) exit() {hp2} !coR!<>!MightID! Tibia.SendKey(!MightFkey!) exit() {hp1} exit() {a1} !coR!==!EneID_ON! [a2] !CurHP!>=!HPOff! [hp3] !CurMP!>=5 {off} Self.UnEquip.Ring(0) exit() {hp3} exit() {a2} !coR!==!MightID! [a3] !CurHP!>=!HPOff! [hp4] Label(off) exit() {hp4} !CurHP!<=!HP2! [hp5] Label(ener) exit() {hp5} exit() [/macro]
Edit macro and Setup what Hotkeys you want to use for your rings,
I used F6 and F7 as an example, just change the number if want any other.
MightFkey:=!F6!
EnerFkey:=!F7!
Here is code if anyone wants to look at it
Code:
MightFkey:=!F6!
EnerFkey:=!F7!
EneID_OFF:=3051
EneID_ON:=3088
MightID:=3048
HP1:=70
HP2:=40
HPOff:=97
CurMP:=Self.Mana%()
CurHP:=Self.Health%()
coR:=Self.inventory.Ring()
!coR!==0 [a1]
!CurHP!<=!HP1! [hp1]
!CurHP!<=!HP2! [hp2]
{ener}
!coR!<>!EneID_ON!
Tibia.SendKey(!EnerFkey!)
exit()
{hp2}
!coR!<>!MightID!
Tibia.SendKey(!MightFkey!)
exit()
{hp1}
exit()
{a1}
!coR!==!EneID_ON! [a2]
!CurHP!>=!HPOff! [hp3]
!CurMP!>=5
{off}
Self.UnEquip.Ring(0)
exit()
{hp3}
exit()
{a2}
!coR!==!MightID! [a3]
!CurHP!>=!HPOff! [hp4]
Label(off)
exit()
{hp4}
!CurHP!<=!HP2! [hp5]
Label(ener)
exit()
{hp5}
exit()
About that Amulet macro,
Just learn how is this one made, and make similar for it....