Elitist Jerks
Register
Blogs
Chat
Forums
New Posts


Go Back   Elitist Jerks > Public Discussion > User Interface and AddOns

Welcome to Elitist Jerks
If this is your first visit, please be sure to check out the FAQ and the forum rules. Users must register to post and new registrations are subject to a one day "mute" period to get acquainted with the community. To start viewing messages, select the forum that you want to visit from the selection below.

Reply
 
LinkBack (16) Thread Tools
Old 03/02/08, 10:18 PM   #51 (permalink)
Spiral out
 
Intermission's Avatar
 
Orc Hunter
 
Frostmourne
EDIT: Nevermind. I didnt look closely enough at the first screenshot which shows the debuff icon having a stack-count number.
 
User is offline.
Reply With Quote
Old 03/27/08, 9:14 PM   #52 (permalink)
Qrt
Von Kaiser
 
Qrt's Avatar
 
Dwarf Hunter
 
Stormrage (EU)
I've been using the addon since patch and it seems to be doing its job flawlessly!

Dr. Frederick Frankenstein: Igor, help me with the bags.
Igor: Soitenly. You take the blonde, I'll take the one in the turban.
Dr. Frederick Frankenstein: I was talking about the luggage.
 
User is offline.
Reply With Quote
Old 03/28/08, 10:32 AM   #53 (permalink)
Don Flamenco
 
Night Elf Hunter
 
Bronze Dragonflight (EU)
The mod is working fine but it's missing Arcane Shot rank 9, I believe adding the line [27019] = true, -- Arcane Shot (Rank 9) under rank 8 In the LUA should fix it.

[Edit]

The mod also seems to be applying too many stacks, it counts 31, instead of the 30 it should be with a full stack.

Here's a picture to show the bug.


Last edited by Mikari : 03/28/08 at 12:10 PM.
 
User is offline.
Reply With Quote
Old 03/28/08, 5:40 PM   #54 (permalink)
Whats your Shot Rotation?!
 
Howitzer's Avatar
 
Tauren Death Knight
 
Turalyon
I'll be damned. Didn't think it was possible. =) Glad to see there was a way to make it happen.

 
User is offline.
Reply With Quote
Old 03/28/08, 7:02 PM   #55 (permalink)
Glass Joe
 
Agrajag's Avatar
 
Troll Hunter
 
Al'Akir (EU)
The mod also seems to be applying too many stacks, it counts 31, instead of the 30 it should be with a full stack.
Changing the line 87 (or 88 after adding Arcane Shot rank 9):

elseif (event == "RANGE_DAMAGE" or event == "SPELL_DAMAGE") and spellTable[spellId] and markedTable[destGUID] and markedTable[destGUID] < 31 then
to
elseif (event == "RANGE_DAMAGE" or event == "SPELL_DAMAGE") and spellTable[spellId] and markedTable[destGUID] and markedTable[destGUID] < 30 then
seems to fix the charge count going over 30.
 
User is offline.
Reply With Quote
Old 03/28/08, 7:17 PM   #56 (permalink)
Don Flamenco
 
Night Elf Hunter
 
Bronze Dragonflight (EU)
Originally Posted by Agrajag View Post
Changing the line 87 (or 88 after adding Arcane Shot rank 9):

elseif (event == "RANGE_DAMAGE" or event == "SPELL_DAMAGE") and spellTable[spellId] and markedTable[destGUID] and markedTable[destGUID] < 31 then
to
elseif (event == "RANGE_DAMAGE" or event == "SPELL_DAMAGE") and spellTable[spellId] and markedTable[destGUID] and markedTable[destGUID] < 30 then
seems to fix the charge count going over 30.
Thanks, can't believe I missed that when looking through the LUA.
 
User is offline.
Reply With Quote
Old 03/29/08, 2:20 AM   #57 (permalink)
Official UI Whore
 
Ryas's Avatar
 
Draenei Hunter
 
Smolderthorn
Interesting AddOn, and definitely something that should be in the default UI, but alas, is not. Well done man.

 
User is offline.
Reply With Quote
Old 03/29/08, 3:04 AM   #58 (permalink)
Don Flamenco
 
Dwarf Hunter
 
Kul Tiras
I think the issue with counting 31 stacks works like this:

After casting HM, the counter says 1, and the tooltip says 110 AP
After 1 shot, the counter says 2, and the tooltip says 132 AP <-- this should be 121.
After 2 shots, the counter says 3, and the tooltip says 143 <-- this should be 132.
.
.
.
After 30 or more shots, the counter says 31, and the tooltip says 451 AP (should be 440)

So the counter should indeed go from 1 to 31, but the AP should only go up to 440, instead of skipping 121 and going up to 451.

Or, you could make the counter start at 0 for an HM that hasn't been shot at, and go to 30 at 440 AP.
 
User is offline.
Reply With Quote
Old 03/29/08, 12:27 PM   #59 (permalink)
Don Flamenco
 
Night Elf Hunter
 
Bronze Dragonflight (EU)
Originally Posted by Gearknight View Post
I think the issue with counting 31 stacks works like this:

After casting HM, the counter says 1, and the tooltip says 110 AP
After 1 shot, the counter says 2, and the tooltip says 132 AP <-- this should be 121.
After 2 shots, the counter says 3, and the tooltip says 143 <-- this should be 132.
.
.
.
After 30 or more shots, the counter says 31, and the tooltip says 451 AP (should be 440)

So the counter should indeed go from 1 to 31, but the AP should only go up to 440, instead of skipping 121 and going up to 451.

Or, you could make the counter start at 0 for an HM that hasn't been shot at, and go to 30 at 440 AP.
The counter starts with no count, but then jumps straight to 2, instead of going to 1, I wonder what part of the code will make the counter start at 1 and count to 30.
 
User is offline.
Reply With Quote
Old 03/29/08, 4:06 PM   #60 (permalink)
Von Kaiser
 
Eurytos's Avatar
 
Orc Hunter
 
Zul'Jin
The counter starts at 1 (which is incorrect) and doesn't display until it's at 2 (also bad). I have fixed it to it will count properly and display properly, but I haven't fixed it not displaying 1 stack.

So when 2 stacks are on... it will show "2", when 30 are on it will show "30"... when only the cast is up a number will not be shown... but when 1 stack is on it still shows no number. I can't figure out how to fix this.

Here is my edited lua: HuntersMark.lua
 
User is offline.
Reply With Quote
Old 03/29/08, 4:21 PM   #61 (permalink)
Glass Joe
 
Agrajag's Avatar
 
Troll Hunter
 
Al'Akir (EU)
Originally Posted by Eurytos View Post
The counter starts at 1 (which is incorrect) and doesn't display until it's at 2 (also bad). I have fixed it to it will count properly and display properly, but I haven't fixed it not displaying 1 stack.

So when 2 stacks are on... it will show "2", when 30 are on it will show "30"... when only the cast is up a number will not be shown... but when 1 stack is on it still shows no number. I can't figure out how to fix this.

Here is my edited lua: HuntersMark.lua
I tinkered with it a bit and got same results with 1 charge.. maybe it's because buffs/debuffs with multiple charges don't show count when there's only one charge active (does for example sunder armor show count when first applied)?
 
User is offline.
Reply With Quote
Old 03/29/08, 9:24 PM   #62 (permalink)
Von Kaiser
 
Eurytos's Avatar
 
Orc Hunter
 
Zul'Jin
I believe that to be the case as well.

The lua I posted should be precisely what you guys need.

If there any more bugs, feel free to post them and I'll make corrections in Sorata's absence.
 
User is offline.
Reply With Quote
Old 03/30/08, 11:13 AM   #63 (permalink)
Glass Joe
 
Night Elf Hunter
 
Zenedar (EU)
I'll get in touch with Sorata and pass on these concerns. Hopefully he'll be able to work them out soon
 
User is offline.
Reply With Quote
Old 03/30/08, 11:40 AM   #64 (permalink)
Don Flamenco
 
Night Elf Hunter
 
Bronze Dragonflight (EU)
I've noticed the Hunters Mark debuff texture doesn't shrink with this mod active, I've also been getting interface action blocked messages caused by this addon, I believe the hook used for the debuff to add the counter needs to use hooksecurefunc but I'm not certain.
 
User is offline.
Reply With Quote
Old 04/10/08, 4:37 AM   #65 (permalink)
Glass Joe
 
Night Elf Hunter
 
Stormscale
any chance of this being uploaded to curse so we can track updates easily?
thx for all the work!
 
User is offline.
Reply With Quote
Old 04/25/08, 7:35 PM   #66 (permalink)
Glass Joe
 
Troll Hunter
 
Bloodhoof
Help. .

Originally Posted by Eurytos View Post
The counter starts at 1 (which is incorrect) and doesn't display until it's at 2 (also bad). I have fixed it to it will count properly and display properly, but I haven't fixed it not displaying 1 stack.

So when 2 stacks are on... it will show "2", when 30 are on it will show "30"... when only the cast is up a number will not be shown... but when 1 stack is on it still shows no number. I can't figure out how to fix this.

Here is my edited lua: HuntersMark.lua
How do i go about installing this add on? =/ please help.
 
User is offline.
Reply With Quote
Old 05/01/08, 11:12 AM   #67 (permalink)
erb
Von Kaiser
 
Night Elf Hunter
 
Dark Iron
Originally Posted by gizammo View Post
How do i go about installing this add on? =/ please help.
Download the !HuntersMark.zip found on the proceeding page and stick this new Lua you've quoted in the !HuntersMark directory overwriting the previous one. From that point just place the !HuntersMark directory into your Interface/Addons folder.
 
User is offline.
Reply With Quote
Old 05/14/08, 12:34 AM   #68 (permalink)
Glass Joe
 
Night Elf Hunter
 
The Scryers
I know asking for more on this amazing mod seems selfish, however I would like to know if a feature can be added to either give a UI warning or even a chat warning when Hunter's Mark is at full strength. I tried adding it myself, though I am terrible at coding.

Many thanks.

EDIT: Came up with a simple macro. Still trying to figure out how to add it into the mod.

/run for i=1,40 do local n,_,_,c,_,_,_=UnitDebuff("target",i); if (n=="Hunter's Mark") then SendChatMessage(c.." stacks of Hunter's Mark.","SAY");end end

Last edited by Trakaa : 05/14/08 at 1:52 AM.
 
User is offline.
Reply With Quote
Old 05/27/08, 7:57 AM   #69 (permalink)
Von Kaiser
 
Orc Hunter
 
Mal'Ganis
Has anyone used this addon with other hunters in the raid?

I'm not sure if it's a bug but the number representing how many shots have been made was not shown on the debuff icon.

Because of this it makes me wonder does the addon count other player's range attacks?
 
User is offline.
Reply With Quote
Old 05/27/08, 11:46 AM   #70 (permalink)
Glass Joe
 
Night Elf Hunter
 
Lightbringer
I been using it, but I have discovered that Quartz is now doing the same thing. People may prefer using Quartz now over this mod.

Last edited by Luckyshot : 05/27/08 at 11:52 AM.
 
User is offline.
Reply With Quote
Old 05/28/08, 2:03 PM   #71 (permalink)
Glass Joe
 
Night Elf Hunter
 
Zenedar (EU)
Well Sorata has pretty much quit the game, so if anyone feels like carrying on the mod I'm sure he wouldn't mind.

As for the Quartz feature, I'll have to check it out
 
User is offline.
Reply With Quote
Old 06/04/08, 5:44 PM   #72 (permalink)
Glass Joe
 
Night Elf Hunter
 
Zenedar (EU)
I have made a new version of Sorata's addon. It's written pretty much from scratch actually, so beware, there may be bugs. :O

It can be found at Hunter's Mark | World of Warcraft Addons | Curse, and also on wowace.
 
User is offline.
Reply With Quote
Old 06/04/08, 6:51 PM   #73 (permalink)
Von Kaiser
 
Orc Hunter
 
Emerald Dream
Originally Posted by Zarni View Post
I have made a new version of Sorata's addon. It's written pretty much from scratch actually, so beware, there may be bugs. :O

It can be found at Hunter's Mark | World of Warcraft Addons | Curse, and also on wowace.
First of all, thanks for picking up the torch! It's great to see it on wowace as well.

However, after some short testing, it's not currently functioning properly. Right now it seems like it keeps track of the count accurately, but doesn't update the actual number while you are in combat. When I feign, it updates the number. That's the best feedback I can give, it's acting strangely.
 
User is offline.
Reply With Quote
Old 06/05/08, 2:23 PM   #74 (permalink)
Glass Joe
 
Night Elf Hunter
 
Zenedar (EU)
Originally Posted by Zarni View Post
I have made a new version of Sorata's addon. It's written pretty much from scratch actually, so beware, there may be bugs. :O

It can be found at Hunter's Mark | World of Warcraft Addons | Curse, and also on wowace.
Wahey a fellow Zenedarian carrying on the torch I'm still using the latest version by Sorata and it still seems to work - although to be fair I haven't paid that much attention to it recently hehe...I'll go away and have a look at it now. Keep up the good work Zarni!
 
User is offline.
Reply With Quote
Old 06/24/08, 7:10 PM   #75 (permalink)
Glass Joe
 
Orc Hunter
 
Draenor (EU)
I am having the same problem with the mod counter not updating.

Only if I deselect the target and reselect it will I get the number of shots performed.
 
User is offline.
Reply With Quote
Reply

Go Back   Elitist Jerks > Public Discussion > User Interface and AddOns

Thread Tools