Is there any addon that tracks how much time is left before the resurrection is cast? I'm wondering since I have a priest w/ Spirit of Redemption and would help to know when I should cancel it if ever.
Is there any addon that tracks how much time is left before the resurrection is cast? I'm wondering since I have a priest w/ Spirit of Redemption and would help to know when I should cancel it if ever.
I'm like 99% sure the timer for WSG GY is started only when someone dies, and then releases to the GY. If the timer expires, then it is just reset when someone else dies and releases. So...you could have a /timer up, and then when someone dies and releases, you could start that timer, and know about when to release yourself.
/script Stopwatch_Play()
/sw 0:31
Press this every time the timer hits 0:01.
The pseduo-code for such an addon would be:
Function Timer
If Everyone_Alive()
end
else
If Player_Died();
Start_Timer(0:30)
If Timer_Finished(0:30)
Timer
For those who don't know what pseudo-code is, this isn't actual workable LUA code. I'll try to write up an addon for a GY rez timer later this week and post it here. It would basically start when someone dies and keep telling you every 30 seconds when the timer is up, and would reset when everyone is alive, then start up again when someone is dead.
Originally Posted by iaccidentallytwink (11/29/08)
indeed, and also would help to know when to blitz a camped AB node.
Was also looking into making this myself at some point.
Couple of problems:
- Afaik, the above explanation of the BG ress mechanics is incorrect (from testing)
- A 30 second continuous cycle from the start of the battleground doesn't work either (again i tested that)
- There's no event to monitor deaths of the entire raid in a battleground (or i haven't found one yet). Only way around this would be a check every X seconds to see if someone has died/released/ressed.
I threw together a few ideas and that addon wouldn't work due to not knowing the real mechanics.
My guess is that when the first person dies, they get sent to the GY with a random timer (around 15-20 seconds). After that person resses, there is continual 30 second timers for the rest of the battleground.
That also proposes a test which will need to be done, which is: "are the ally and horde graveyards in sync in a battleground". If they are, then the first death will have to be hooked from the opposing faction too (or instead, wait until the player themself dies and monitor the ress timer).
Keep it up guys! I'd love to see an addon if it happens to be possible![]()