Thread: C timer help
View Single Post
10-12-19, 01:18 PM   #2
jeruku
A Cobalt Mageweaver
 
jeruku's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2010
Posts: 223
Easiest solution is to use C_Timer.After.

Lua Code:
  1. C_Timer.After(30, function()
  2.      --Hide your frame.
  3. end)
__________________
"I have not failed, I simply found 10,000 ways that did not work." - Thomas Edison
  Reply With Quote