View Single Post
04-18-09, 08:52 AM   #47
Nuckin
is laughing at you
 
Nuckin's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 58
Originally Posted by Azul View Post
Forget it. I was hoping somebody could just give me a straight answer to my question. I don't want to waste any more time on this, since all anyone is doing is trying to avoid the question. I'll just find a way to patch the lua module in WoW. Change the 60 to 255 or something. Bye.
As I said before, you're having a scoping issue, and I was not implying malicious intent, but rather the limit is there to prevent people from doing what you're so adamant about doing.

Good Luck patch WoW, you'll probably get unauthenticated from the servers and your account banned.

Code:
function OnUpdate(self)
   local foo = "OVER NINE THOUSAND";
   doThis(self, foo);
   doThat(self, foo);

   local hello = false;
   if hello then
      doThisNow(self, foo);
   else
      doThatNow(self, foo);
   end
end
(the semicolons are out of habit)
__________________
SELECT * FROM users WHERE clue > 0;
0 rows returned.