Showing results 1 to 12 of 12
Search took 0.00 seconds.
Search: Posts Made By: IBLJerry
Forum: General Authoring Discussion 05-25-10, 07:55 AM
Replies: 5
Views: 6,815
Posted By IBLJerry
Taint is dangerous because it spreads through...

Taint is dangerous because it spreads through execution path, so even something that is seen as a innocent taint might have adverse and weird effect on the overall UI at a later time, or when...
Forum: Chit-Chat 08-05-09, 07:01 AM
Replies: 10
Views: 9,470
Posted By IBLJerry
Can you please open a ticket on wowace (...

Can you please open a ticket on wowace ( http://www.wowace.com/addons/talented/create-ticket/ ) about your issue. Try to provide as much information as possible about it.

I'd really like to fix bugs...
Forum: Lua/XML Help 05-12-09, 06:19 AM
Replies: 9
Views: 4,841
Posted By IBLJerry
May I suggest: function splitsentences(msg,...

May I suggest:

function splitsentences(msg, maxlen, output)
msg = tostring(msg)
maxlen = maxlen or 255
output = output or print
local start, pos, len = 1, 1, msg:len()
while pos < len...
Forum: Chit-Chat 04-21-09, 06:21 AM
Replies: 2
Views: 3,093
Posted By IBLJerry
I have tested a bit the dual talent spec on the...

I have tested a bit the dual talent spec on the PTR (I'm the author of Talented). I have transfered 4 characters over the course of the PTR, two very early (twice my level 80), before the PTR went up...
Forum: AddOn Search/Requests 04-16-09, 01:07 AM
Replies: 6
Views: 8,345
Posted By IBLJerry
/run SetActiveTalentGroup(3 -...

/run SetActiveTalentGroup(3 - GetActiveTalentGroup())


The script above will switch your spec. The corresponding macro should look like:

/usetalents [spec:2] 1; 2

(I'm relatively bad at macro, so...
Forum: Lua/XML Help 04-03-09, 03:24 AM
Replies: 40
Views: 20,079
Posted By IBLJerry
Unless you want to sort the keys :-)

Unless you want to sort the keys :-)
Forum: Lua/XML Help 04-01-09, 08:22 AM
Replies: 5
Views: 3,403
Posted By IBLJerry
Not described in wowwiki,...

Not described in wowwiki, but:
EditBox:SetTextInsets(leftOffset, rightOffset, topOffset, bottomOffset)

Is the function you're looking for.
Forum: Lua/XML Help 03-31-09, 01:00 PM
Replies: 40
Views: 20,079
Posted By IBLJerry
O(1) means that the time taken to perform an...

O(1) means that the time taken to perform an algorithm is a constant, whatever the input size. O(n) means that the time is a multiple of the input size (plus a possible constant).

Algorithm...
Forum: Lua/XML Help 03-04-09, 03:00 AM
Replies: 5
Views: 9,061
Posted By IBLJerry
OnLoad executes at Frame Creation, so you really...

OnLoad executes at Frame Creation, so you really can't set a OnLoad handler in lua. But that does not matter at all as you can simply call your function by hand.

Your OnDragStop doesn't get called...
Forum: Lua/XML Help 03-02-09, 08:13 AM
Replies: 4
Views: 3,267
Posted By IBLJerry
The addon loading process of the client is as...

The addon loading process of the client is as follow:

(Load all dependencies, if needed)
Load, parse and execute all XML and lua files listed in the TOC, in order.
Load the SavedVariables...
Forum: Lua/XML Help 02-27-09, 09:26 AM
Replies: 6
Views: 11,276
Posted By IBLJerry
For some time, Blizzard did not provide _G at...

For some time, Blizzard did not provide _G at all. So addon authors started to call getfenv(0) to get it. Now that Blizzard does provide _G, the only reason to use getfenv(0) is historical.

"fenv"...
Forum: General Authoring Discussion 02-24-09, 03:40 AM
Replies: 2
Views: 3,229
Posted By IBLJerry
Note that you don't reset FoundPoisons on each...

Note that you don't reset FoundPoisons on each update. So if the server is slow to respond, you will fill FoundPoisons with the first ID found and stop there.


local last_id
local function...
Showing results 1 to 12 of 12