| Updated: | 06-15-09 03:57 AM |
| Created: | 12-17-08 01:01 PM |
| Downloads: | 1,656 |
| Favorites: | 50 |
| MD5: |
File Name |
Version |
Size |
Author |
Date |
r6 |
2kB |
yess |
12-18-08 10:13 PM |
|
r4 |
2kB |
yess |
12-17-08 01:01 PM |
![]() |
Comment Options |
|
|
|
|
This unfortunately doesn't work for me at all. Actually every time I opened the options to make sure I'd set my tabards it created a new entry in my gui. Also even though it listed the tabards I'd selected it never switched them upon entering heroics (I didn't try with regular or raids).
![]()
__________________
Krendis, level 85 Prot Paladin Simkin level 85 Combat Rogue Inardescoo, level 85 Arcane Mage |
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 14
Uploads: 0
|
great addon
![]() ![]() ![]() |
|
|
|
|
|
|
This addon rules!! Thanks!
![]() |
|
|
|
|
|
||
![]() I told a friend its done and he's like "OK but what if you get a dc in an instance and log in again?" The addon will think you are entering an instance and set the OriginalTabard to the one you are wearing. But you are wearing the InstanceTabard already... There are several ways to check for that too but we did come up with other problems like when you change your tabard an then logout. Now on your next login the event PLAYER_ENTERING_WORLD will fire and the addon will equip your old tabard because it thinks you left an instance and the new one was never saved before. Or it will take off your tabard if there isn't a saved one. That's why I thought it would be easier to register the event for inventory updates and save it that way. I had a version where you can set the 2. tabard manually finished therefore I released that and postponed that feature^^ You can join development on my version if you like. Its on wowace svn://svn.wowace.com/wow/ihatetabards/mainline/trunk (lol the old name) and anyone can commit to the repository ![]()
Last edited by yess : 12-19-08 at 11:58 PM.
|
||
|
|
|
|
||
Anyways, what was the problem you had with "remembering" the tabard they wore before the switch? This is how I did it in my addon and I didn't run into any problems with the (limited) testing I did.Here's the relevent code I used to do this: Code:
function TabardChamp:PLAYER_DEAD()
TabardChamp_Saved.Dead = true
end
function TabardChamp:PLAYER_ENTERING_WORLD()
if TabardChamp_Saved.InstanceTabard then
local inInstance, instanceType = IsInInstance()
if inInstance and instanceType == "party" then
if not TabardChamp_Saved.Dead then
TabardChamp_Saved.OriginalTabard = GetItemInfo(GetInventoryItemLink("player", 19))
elseif not UnitIsDead("player") then
TabardChamp_Saved.Dead = nil
end
EquipItemByName(TabardChamp_Saved.InstanceTabard)
elseif TabardChamp_Saved.OriginalTabard then
EquipItemByName(TabardChamp_Saved.OriginalTabard)
end
end
end
Edit: Tried to change it to realize the being dead issue you seemed to recognize taking a look at your code. Not sure if it works I'll have to test.
Last edited by Freki : 12-19-08 at 10:37 PM.
|
||
|
|
|
|
||
|
||
|
|
|
|
|
|
A Deviate Faerie Dragon
Forum posts: 10
File comments: 76
Uploads: 0
|
Just make it remember which tabard, if any, the player had on him/her when entering the (lvl 80) instance, and restore it when leaving, or remove the rep tabard if the player wasn't wearing one before.
|
|
|
|
|
||
But maybe I should rename the addon then lol. Any ideas? |
||
|
|
|
|
|
|
I would definitely say make swapping the guild tabard on when out of an instance an option, don't make it an absolute thing where it will for sure do it some people out there (me and I am sure others) refuse to wear guild tabards for many reasons.
__________________
-There's always something to envy. A smile, a friendship, something you don't have and want to appropriate. There will always be rich and poor. Rich in gifts, poor in gifts. Rich in love, poor in love.- |
|
|
|
|
|
|
|
Hmmm
As a guild leader I Love a Tabard ( the guild one ) and ask my guild to wear it at all times out of 80 instances. However I am allways forgeting to equip my rep tabard as i enter 80 instances, so this addon is begining to sound like something I realy need. Make it Recognise the Guild Tabbard, and swap / put back on after run. Please ![]()
__________________
click HERE for the ultimate idiot test.
Last edited by Tyrolit : 12-17-08 at 04:57 PM.
|
|
|
|
![]() |