Tab Party
A very simple addon that allows you to bind a key to cycle your target through party members.
Each time you press the key, you target the next member of your party, finally wrapping back around to yourself.
How to Use
Go to the main wow system menu and choose "Key Bindings". Scroll down and find TabParty. There is a single key binding called "Cycle Party Members". Assign whichever key you wish to this binding.
can someone tell me what i do have to change in this macro .lua file that it just cycles through my party members excluding me. for instance fust cycles through party1 to party2 when i am in a 3 man group. thx
I would also like to know how to do this. Much appreciated if u can.
Hey.
The addon simply counts from "0" to "5", and when it meets "0", it targets the player. Just skip the value zero in the file ...\AddOns\TabParty\TabParty.lua. Open the file in a text editor and replace this:
if lastunit == 0 then
newunit = "player"
else
newunit = "party"..lastunit
end
with this:
if lastunit == 0 then
lastunit = (lastunit + 1)
end
newunit = "party"..lastunit
Also, if you want it to work in 3v3 arenas, replace the "5" with a "3". I am sure there's a better way to go around this, but I can't be bothered going through the API documentation :p
Thanks again
Its exactly what i wanted, people like you make this site possible.
Thanks