Thread: I hate lua.
View Single Post
11-04-05, 03:08 PM   #4
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jul 2005
Posts: 1,935
Second Question

First step, you build the table indexed by raidnumber. All is well and good.

Then you go through and do the same thing as before, setting name[1] and name[2] to nil.
Then you go and set name["Cladhaire"] and name["Shouryuu"] to 0;

The last bit of code makes the following in EasierFrameShowing:

Code:
EasierFrameShowing = {[1] = nil, [2] = nil};
  Reply With Quote