Yeah was greatByez for now
Yeah was greatByez for now
Aye. Was fun while it lasted. Thank you Viral appreciate all the work you put into it. Sadly this seems like the end, atleast until the next beginning :3
Knowledge is often mistaken for intelligence. This is like mistaking a cup of milk for a cow.
Indeed. Was fun, but this just motivates more![]()
lol, this was fun when i used it (heroics not raids XD) o well, you guys really did help out tons of ppl... til the ban waveowell, good stuff, would have never changed, woulda done from the beginning :P hope to see you guys come up with something again!
~~ Cool Story Bro.... ~~
is there any limit? for the amount of "letters" or "characteres" that you can use to create the macro?
Thanks so much for all the great work, Viral. I've learned a lot from your scripts.
Last edited by Ultraviolence; 04-15-2011 at 11:40 PM.
Any of you guys have these lua ViralFly-by's Macros updated to the latest cataclysm patch 4.0.3 that can share? already tried pm ViralFly-by but is inbox is full. I also can pay if someone have skills to update some of them to me in a private way, just pm me, thx.
Last edited by pinhe1ro; 01-01-2011 at 04:42 AM.
hez guys, i need macro to spam my profession to trade, or just spam some items thx
OMG Alot of work here +REP!
I think many people will be grateful, if you'll figure out some none-clicking lightwell macro.
Anyway +rep.
p.s. sry for my english
I have been looking everywhere for any information on the possibility of making a lua script that will basically automate Heroic Leap; as far as casting it to wear my cursor is at the time of button click? Not sure if it's even possible given the way it works. But I love using NA's lua capabilities and would just love to add one more time saving macro to my warriors arsenal...
Sure.
This will cast it wherever your mouse cursor is, if the right-mouse button is down (I find that the best way since the right-button is held down most of the time to steer).Code:if IsUsableSpell("Heroic Leap") and GetSpellCooldown("Heroic Leap")==0 and (IsSpellInRange("Heroic Leap", "target")==1 or IsSpellInRange("Heroic Leap", "target")==nil) then CastSpellByName("Heroic Leap") TurnOrActionStart(); TurnOrActionStop(); CameraOrSelectOrMoveStart(); CameraOrSelectOrMoveStop(); TurnOrActionStart(); end
Awwww yeeeya thats sexy. Thank you very much!
Hello all,
Is there a way to cast earth shock only if the duration of frame shock débuff on target is > at 5?
I have try this but my knowledge is too limited in lua langage
thank you in advance.Code:/run if GetSpellCooldown("Earth Shock") ==0 and [UnitDebuff("target","Flame Shock")]-GetTime()>=5 then CastSpellByName("Earth Shock") end