Help with Macro for ites

Shakyamuni
Exile
Post #1

Help with Macro for ites

by Shakyamuni » Thu Jun 30, 2016 4:13 pm

Hi,

So I wanted to set up my -ites for Kwan.. I would like to make it so the first time I hit the button (let's say it's f4) it equips the pauldron and the next time I hit f4 (or if the pauldron is already equipped) it would /useitem Atkite.

I was going to put each pauldron on it's own button. f4 f5 and f6 (Atkite, Balthite, Darkite)

I have tried numerous times and ways and seem to not be able to get it to function properly.. Can anyone help?

SnowLion
Exile
Post #2

Help with Macro for ites

by SnowLion » Thu Jun 30, 2016 4:46 pm

This should work I think - just need to copy it and change the 2 instances of 'darkite' to the other ones. =)

Code: Select all

f4
{
if @my.shoulders_item >= "Darkite"
	"/useitem shoulder\r"
else
	"/equip darkite pauldron\r"
end if
}

Shakyamuni
Exile
Post #3

Help with Macro for ites

by Shakyamuni » Thu Jun 30, 2016 7:35 pm

Thank you .. perfect :)