View Single Post
  #14  
Unread 10-02-2010, 03:04 PM
Olenn's Avatar
Olenn Olenn is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Sep 2010
Posts: 47
Okay, I think I understand everything, and I am pretty sure that I have everything where is is supposed to go. I just got the error;

...d of the Rings Online\Plugins\Olenn\Satchel\Main.lua:63: attempt to call method 'IsChecked' (a boolean value)

I know that a boolean in a 'true / false' statement, but what is this error trying to tell me?

Oh yeah, the line it is calling is;

Code:
61     SetupWindow.locked.CheckChanged=function(sender,args)
62
63     if ( SetupWindow.locked:IsChecked(true) ) then
64          SatchelWindow.moveBlocker:SetMouseVisible(true);
65     else
66          SatchelWindow.moveBlocker:SetMouseVisible(false);
67     end
68
69     end
Reply With Quote