1. #1
    Dreadlord Frostyfire14's Avatar
    15+ Year Old Account
    Join Date
    Feb 2009
    Location
    Northern California
    Posts
    807

    Weak Aura help! Custom Code

    Hey you fancy people of MMO-Champion!

    I'm trying to create a weak aura for Empowered Pulse Grenade for Mythic Imonar, where it will spam in chat, "P" on those affected by the debuff.

    I have it all setup and it will trigger the /s text once the player receives the debuff, but it will not loop it. So, I'm guessing its a custom code, and I was wondering if I could have some help with that!

  2. #2
    Put this in custom text, and set it to update on every frame

    Code:
    function()
        local time = GetTime()
        if not aura_env.last or aura_env.last < time - 2 then          
            SendChatMessage("P", "SAY" )
            aura_env.last = time
        end
    end

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •