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.
-
View User Profile
-
Send Message
Posted Apr 29, 2013Hey.
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
-
View User Profile
-
Send Message
Posted Mar 5, 2012can 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
-
View User Profile
-
Send Message
Posted Dec 15, 2012I would also like to know how to do this. Much appreciated if u can.
-
View User Profile
-
Send Message
Posted Nov 11, 2010Thanks again
-
View User Profile
-
Send Message
Posted Nov 12, 2010-
View User Profile
-
Send Message
Posted Nov 14, 2010Its exactly what i wanted, people like you make this site possible.
-
View User Profile
-
Send Message
Posted Oct 22, 2010Thanks