View Single Post
01/26/16, 04:18 PM   #17
step1step2
Join Date: Nov 2014
Posts: 5
Originally Posted by SnowmanDK View Post
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
Oh wow. I was assuming it is part of the API
  Reply With Quote