Elitist Jerks
Register
Blogs
Forums


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

Reply
 
LinkBack Thread Tools
Old 12/10/09, 2:37 PM   #286
ninor
Piston Honda
 
ninor's Avatar
 
Tauren Druid
 
<nam>
Stormscale (EU)
It was. I did a "Reset to default", and set it up again, and after a /reloadui it's working like it should. No idea what that was about.


Offline
Reply With Quote
Old 12/10/09, 2:49 PM   #287
 Adoriele
Happy October 19th!
 
Adoriele's Avatar
 
Night Elf Druid
 
Dragonblight
Found another bug, with the ICD bar not depleting after Eclipse fades (though this time at 15s), fixed.

Last edited by Adoriele : 04/02/10 at 4:42 PM.

United States Offline
Reply With Quote
Old 12/10/09, 3:01 PM   #288
Angelostyle
Glass Joe
 
Tauren Druid
 
Balnazzar (EU)
Thanks alot for the fix mate, I really appreciate your work

Offline
Reply With Quote
Old 12/10/09, 3:53 PM   #289
lissanna
Von Kaiser
 
Night Elf Druid
 
Elune
Originally Posted by Adoriele View Post
Found another bug, with the ICD bar not depleting after Eclipse fades (though this time at 15s), fixed.
This newest version is working for me. I just tried it out on a testing dummy. Thanks for working to fix it!

Offline
Reply With Quote
Old 12/11/09, 10:41 AM   #290
Forgiven
Glass Joe
 
Night Elf Druid
 
Shattered Hand
Adoriele, Thanks so much for the hard work! This is definitely my preferred my rotation cycle.

Offline
Reply With Quote
Old 12/13/09, 2:10 PM   #291
scudetto
Glass Joe
 
Tauren Druid
 
Азурегос (EU)
not working
shows everything, but eclipse proc
I've tried to reinstall, delete all configs, even delete all addons (and installing only the latest Squawk version), but nothing (

Offline
Reply With Quote
Old 12/13/09, 2:47 PM   #292
 Adoriele
Happy October 19th!
 
Adoriele's Avatar
 
Night Elf Druid
 
Dragonblight
Originally Posted by scudetto View Post
not working
shows everything, but eclipse proc
I've tried to reinstall, delete all configs, even delete all addons (and installing only the latest Squawk version), but nothing (
I'd need an error log to work off of before I'd have any idea of how to fix it.

I was asked in a PM about adding sounds when Eclipse procs. Ironically, SAA already had sounds imported, it just wasn't doing anything with them, so hacking it in isn't too difficult. I did promise someone I'd add it into the mod proper, though, so I'll work on that over the next couple days (and will probably add the order control, too).

To get sounds into SAA:
1.) You'll need to figure out which sounds SAA has available. This should be whatever your SharedMedia has access to, but there may also be more. Luckily, it's fairly easy to find - with WoW running, type the following into the chat box
/run for k,v in pairs(SquawkAndAwe.sounds) do SquawkAndAwe:Print(v.." ") end
You'll get a listing of all of the sounds SAA has access to. Most of these should be familiar from other addons such as BW, Parrot, etc. so if you want to listen to them to pick out which one you want to use, go into one of them and select it (getting the sound to play from the chat box is a lot tougher).

2.) Once you know what sound you want to use (or if you have no other way of testing them out), insert the following code:

PlaySoundFile(media:Fetch("sound", "THE NAME OF YOUR SOUND HERE")
at both lines 369 and 373, replacing the obvious text with the name you grabbed from step 1, keeping the quotes. Your UNIT_AURA() function should then look something like:
function SquawkAndAwe:UNIT_AURA(event,id)
	if id == "player" and not SquawkAndAwe.ActiveEclipseBuff then
		local _,_,_,_,_,_,_,_,_,_,spellID = UnitBuff("player",SquawkAndAwe.combat.procs.Eclipse.name);
		if spellID == SquawkAndAwe.combat.procs.Eclipse.id then
			SquawkAndAwe.ActiveEclipseBuff = true
			PlaySoundFile(media:Fetch("sound", "ping"))
			SquawkAndAwe:ProcBars("Eclipse", SquawkAndAwe.combat.procs.Eclipse)
		elseif spellID == SquawkAndAwe.combat.procs.Eclipsew.id then
			SquawkAndAwe.ActiveEclipseBuff = true
			PlaySoundFile(media:Fetch("sound", "ping"))
			SquawkAndAwe:ProcBars("Eclipsew", SquawkAndAwe.combat.procs.Eclipsew)
		end
	end -- if id == "player"
end -- function SAA:UNIT_AURA()
Note that all of this is drycoded, so if it doesn't work, let me know what errors you get and I'll adjust the instructions accordingly.

United States Offline
Reply With Quote
Old 12/15/09, 3:15 PM   #293
LostBoyJim
Glass Joe
 
Tauren Druid
 
Proudmoore
SAA trinketshow not working?

With the new 12./10/08 download my trinket procs are no longer showing (particularly [Dying Curse]). I tried

/saa trinketshow

but it threw an error saying that trinketshow isn't a valid option. On testing, neither is trinketcd. Are the man pages borked, or is that part of /saa not working?

Offline
Reply With Quote
Old 12/15/09, 3:16 PM   #294
LostBoyJim
Glass Joe
 
Tauren Druid
 
Proudmoore
error post.

Offline
Reply With Quote
Old 12/15/09, 3:42 PM   #295
 Adoriele
Happy October 19th!
 
Adoriele's Avatar
 
Night Elf Druid
 
Dragonblight
Originally Posted by LostBoyJim View Post
With the new 12./10/08 download my trinket procs are no longer showing (particularly [Dying Curse]). I tried

/saa trinketshow

but it threw an error saying that trinketshow isn't a valid option. On testing, neither is trinketcd. Are the man pages borked, or is that part of /saa not working?
You're not using the full command. You'd need /saa trinkets trinketshow, I think. Alternatively, you could just use the options panel in the Blizzard options, which has been there since Blizzard started allowing addons to put their options in the Blizzard interface.

[edit] The naming for that option is a little redundant, which probably leads to the confusion. For example, if you wanted to turn on or off Eclipse tracking, you'd use /saa procs Eclipse show, which makes a little more sense.

United States Offline
Reply With Quote
Old 12/16/09, 12:37 PM   #296
romoe
Glass Joe
 
Tauren Druid
 
Ragnaros (EU)
Nice job with the addon! works just fine for me. But it's one thing im missing, would be nice to be able to keep lunar/solar cd tracked even if a new one proccs especially during Bl etc. otherwise the addon works fine

Offline
Reply With Quote
Old 12/16/09, 12:40 PM   #297
 Adoriele
Happy October 19th!
 
Adoriele's Avatar
 
Night Elf Druid
 
Dragonblight
Originally Posted by romoe View Post
Nice job with the addon! works just fine for me. But it's one thing im missing, would be nice to be able to keep lunar/solar cd tracked even if a new one proccs especially during Bl etc. otherwise the addon works fine
Err, it's already showing both cooldowns, at least as of 1.4.1. Remember that when a new Eclipse procs, the other cooldown is extended to at least 15s. So if your Eclipse hasn't been purged, the shortest cooldown matches its duration. If it has, the bar changes colors to indicate this.

United States Offline
Reply With Quote
Old 12/16/09, 2:36 PM   #298
romoe
Glass Joe
 
Tauren Druid
 
Ragnaros (EU)
strange.. im running with 1.4.1.287 and when an eclipse proccs it shows both the duration and the cooldown, but when it has ran out and the other eclipse proccs the new bar overwrites the old and im unable to track the cd =(

Offline
Reply With Quote
Old 12/16/09, 2:42 PM   #299
 Adoriele
Happy October 19th!
 
Adoriele's Avatar
 
Night Elf Druid
 
Dragonblight
Originally Posted by romoe View Post
strange.. im running with 1.4.1.287 and when an eclipse proccs it shows both the duration and the cooldown, but when it has ran out and the other eclipse proccs the new bar overwrites the old and im unable to track the cd =(
Um. Yes. This is exactly what I explained above. If you proc a Solar Eclipse, then Lunar is on cooldown for exactly the same duration as the Solar Eclipse buff. Even if you procced it after 10s of downtime, proccing Solar forces Lunar back to 15s cooldown. This is the change in 3.3 that killed WiseEclipse. Therefore, since they have exactly the same duration, there is no reason to show another bar for it. Instead, if you happen to lose your Solar Eclipse by Purge, or you're fighting Garr, or you click it off for some reason, SAA will change the color of the bar to dark grey to show that your Eclipse is no longer active, but Lunar is still on cooldown. This is the only time when seeing both cooldowns is either possible or necessary.

United States Offline
Reply With Quote
Old 12/17/09, 5:03 AM   #300
romoe
Glass Joe
 
Tauren Druid
 
Ragnaros (EU)
aaah ofc, sry about that :P

then the addon works perfectly :P

Offline
Reply With Quote
Reply

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

Thread Tools