You are not logged in.

Applications: [GameMaster: OPEN] | [Volunteer Testers: OPEN]


This forum will be permanently shut down on Friday 13.07.2018
Please copy or save all important information from old forum before they will be deactivated
We have moved to new board. https://forum.runesofmagic.gameforge.com/Come join us.

EntropyKnight

Intermediate

  • "EntropyKnight" started this thread

Posts: 171

Location: That one place over there - see?

Occupation: Going places, doing things.. getting them done!

  • Send private message

1

Monday, November 18th 2013, 2:04am

Buff Reset Timer?

This hasn't really been a problem with me until much more recently, but it's hard to experiment with all these buffs triggered by attacks that don't reactivate until 20 or so seconds after the buff expires. Is there a macro out there that gives a system notification or something to let a player know their buff timer is reset?

Example: Light of Day; "When you [successfully] strike your opponent with Holy Light Strike or Light Charge, it instantly increases your Light damage for 15.0 seconds.
(After the effect has ended it cannot be triggered again for 20.0 seconds.)" -theromwiki



Things like that. Anything?
Mithras: The social server. Has a nice ring to it...

Kimberly (r/m/k - retired until further notice), Trylis (wd/d/r)
And one of the very few people trying to bring back the "RP" in this RPG.

Cike

Rogue

Posts: 4,171

Occupation: Being Human

  • Send private message

2

Monday, November 18th 2013, 2:26am

honestly, I would love that...I have 3 skills that have CD's like that, and an addon to alert me would be great...
my r/p can outdps r/m. your name is stupid.

mages should stack dex. word.

3

Monday, November 18th 2013, 4:28am

you would have to make a macro that does the following:

1) casts the related attack
2) checks if you either got the associated buff, or determines if the skill did dmg (if it is an attack skill)
3) /wait X seconds
4) /whisper yourself when its ready (or send any type of message you're looking for).

The problem with making a perfect, but complex, macro is that you can't make timers with lua without additional stuff, and I'm not sure if it exists. Below is a really simple, but not so great macro for the following example.


Example: Light of Day; "When you
[successfully] strike your opponent with Holy Light Strike or Light
Charge, it instantly increases your Light damage for 15.0 seconds.
(After the effect has ended it cannot be triggered again for 20.0 seconds.)" -theromwiki




Quoted

/cast Light of Day
/wait 15
/w Xamd Light of Day ready
This macro doesn't check if you msised, or didn't deal damage for that skill, but atm it should be sufficient.