View Single Post
Unread 10-07-11, 01:51 PM   #4
Aieny
Veiled Ripper
 
Aieny's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2011
Posts: 40
The issue is that, if the codefile for the function is not loaded first, then the function won't be defined when it's called. The main addon file should always be the LAST file in the list.

Of course, I'm assuming the order of the files in the TOC, but that wasn't explicitly stated.
__________________
Lua Code:
  1. local function signature()
  2.     print("Aieny Celenovia")
  3.     print("www.riftcrafter.com")
  4. end
Aieny is offline   Reply With Quote