View Single Post
11-21-19, 05:29 PM   #1
hurpy_derp
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Jun 2019
Posts: 5
C_Timer problem with weakaura trigger

So I'm trying to make a weakaura that triggers a couple seconds after a boss is killed, but for some reason it never works when it has a C_Timer on it, can someone help me out with it?

Code:
C_Timer.After(3, function(event,arg1, arg2, arg3, arg4, arg5, arg6, ...)
   if event == "BOSS_KILL" then
        return true
    end
end)
  Reply With Quote