View Single Post
01/26/16, 04:07 PM   #15
SnowmanDK
 
SnowmanDK's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 161
Originally Posted by step1step2 View Post
Thank you very much everyone!
I want an invite as well
[email protected]
Sidenote:
Lua Code:
  1. d("blabla")
will NOT work until you have made a function for it:
Lua Code:
  1. local function d(...)
  2.     CHAT_SYSTEM:AddMessage(...)
  3. end
  Reply With Quote