Showing results 1 to 24 of 24
Search took 0.00 seconds.
Search: Posts Made By: Zeksie
Forum: AddOn Help/Support 05-26-09, 11:26 AM
Replies: 1
Views: 3,038
Posted By Zeksie
Raid options, Tooltip Buff Helper.

Raid options, Tooltip Buff Helper.
Forum: AddOn Help/Support 05-26-09, 11:26 AM
Replies: 1
Views: 6,030
Posted By Zeksie
Top of global options, check the tooltip options...

Top of global options, check the tooltip options are enabled. :)
Forum: Wish List 12-29-06, 12:12 PM
Replies: 1
Views: 5,773
Posted By Zeksie
Request for UnitFrame registration

Another good one would be some alternative to having to de-register the default unit frames. I'm not convinced that the act of doing this is not causing some tainting problems for a lot of...
Forum: Wish List 12-23-06, 01:09 PM
Replies: 1
Views: 5,724
Posted By Zeksie
Custom sort func for SecureHeaders

Would be useful to have ability to set a custom sorting function for the party and raid headers. Useful for named lists, or abitrary class selections that would benefit from class order for...
Forum: Wish List 12-23-06, 07:10 AM
Replies: 1
Views: 5,775
Posted By Zeksie
Post Request XML child definitions

Would be so useful to be able to specificy a frame name thus:

<Frame name="SomeFrame">
...
<Frame name="$parent.name"> -- Notice the .


So that the new frame is created with the...
Forum: Wish List 12-19-06, 05:34 PM
Replies: 2
Views: 6,638
Posted By Zeksie
Request for ADDON_ACTION_TAINTED event

Just like ADDON_ACTION_BLOCKED and ADDON_ACTION_FORBIDDEN what would be IMMENSELY helpful would be an ADDON_ACTION_TAINTED event whenever some secure entity becomes tainted for the first time.

arg1:...
Forum: Wish List 10-24-06, 06:12 AM
Replies: 0
Views: 5,275
Posted By Zeksie
Event registration filter

Would speed things up no end if we could do something like:

this:RegisterEvent("SOME_EVENT", "player")
this:RegisterEvent("SOME_PET_EVENT", "pet")
this:RegisterEvent("SOME_UNIT_EVENT",...
Forum: Lua/XML Help 10-23-06, 02:14 AM
Replies: 8
Views: 14,265
Posted By Zeksie
That's up to the mod author to code it.

That's up to the mod author to code it.
Forum: Wish List 10-21-06, 06:16 AM
Replies: 1
Views: 6,421
Posted By Zeksie
No, you have to monitor the various chat channels...

No, you have to monitor the various chat channels and I think arg6 or 5 (can't recall) of a chat event contains whether they are AFK or DND. You'd need to maintain your own table of afk flags.

So...
Forum: Wish List 10-21-06, 05:17 AM
Replies: 0
Views: 4,977
Posted By Zeksie
Request - Frame:GetChild

Request:

So often we use the code:

someFrame = getglobal(Frame:GetName().."ChildFrame")

It's used everywhere, by everything and must be one of the most intensively called things. So, it would be...
Forum: Lua/XML Help 10-21-06, 05:13 AM
Replies: 4
Views: 3,264
Posted By Zeksie
http://www.wowwiki.com/API_SendChatMessage

http://www.wowwiki.com/API_SendChatMessage
Forum: Lua/XML Help 10-18-06, 07:31 AM
Replies: 3
Views: 3,370
Posted By Zeksie
There's 2 new functions in 1.12 which...

There's 2 new functions in 1.12 which are:

UnitPlayerOrPetInParty(unit)
UnitPlayerOrPetInRaid(unit)

which would do what you want.
Forum: Lua/XML Help 10-18-06, 07:28 AM
Replies: 4
Views: 3,461
Posted By Zeksie
It's all prettyu tricky and not at all reliable...

It's all prettyu tricky and not at all reliable atm. However, with Burning Crusade there's a whole slew of new events giving specific unit casting information which would do what you want.
Forum: Lua/XML Help 10-18-06, 07:26 AM
Replies: 1
Views: 3,049
Posted By Zeksie
Sure. If you had some function to add an item to...

Sure.

If you had some function to add an item to a player it could go something like this:


local myTable = {}
function AddPlayerItem(playerName, itemName, itemCount)

if (not...
Forum: Lua/XML Help 10-18-06, 07:20 AM
Replies: 1
Views: 4,020
Posted By Zeksie
You're probably getting some issues with variable...

You're probably getting some issues with variable latency in WoW's systems. So sure enough you'll get the target changed event, but the server hasn't yet informed the client that the target is not...
Forum: Lua/XML Help 10-18-06, 07:15 AM
Replies: 1
Views: 3,511
Posted By Zeksie
You're probably just not checking for the debuff...

You're probably just not checking for the debuff at the right times. Need to watch for UNIT_AURA with arg1 as the unit with the debuff and check every time this comes up.
Forum: Lua/XML Help 10-18-06, 07:07 AM
Replies: 1
Views: 2,863
Posted By Zeksie
Mods no longer need to join hidden channels....

Mods no longer need to join hidden channels. There are addon channels now that are implicitly hidden and are specifically designed to do what you want.

See the SendAddonMessage() function, and the...
Forum: General Authoring Discussion 10-16-06, 02:08 AM
Replies: 4
Views: 3,184
Posted By Zeksie
If you receive a PLAYER_TARGET_CHANGED event,...

If you receive a PLAYER_TARGET_CHANGED event, then your target has changed. But I suspect this is not what you mean.

You're probably refering to losing a target, then re-selecting the same target...
Forum: Chit-Chat 10-16-06, 02:00 AM
Replies: 1
Views: 3,307
Posted By Zeksie
Was thinking you might be able to write some...

Was thinking you might be able to write some sub-set item lib. So store items entirely (5 element table or whatever), then make some simple comparison/lookup funcs to compare items. Get best match...
Forum: General Authoring Discussion 10-16-06, 01:53 AM
Replies: 1
Views: 3,072
Posted By Zeksie
A quote from my code: --...

A quote from my code:

-- XPerl_PickupContainerItem
local oldPickup, local PickupBag, PickupSlot
local function XPerl_PickupContainerItem(bagID, slot)
PickupBag, PickupSlot = bagID, slot
return...
Forum: AddOn Help/Support 10-16-06, 01:33 AM
Replies: 6
Views: 3,670
Posted By Zeksie
Using GetRaidRosterInfo is no problem, but...

Using GetRaidRosterInfo is no problem, but re-defining it is. None of those should be doing that so np.

I've never heard of any of the mentioned mods causing a problem. You're going to have to do it...
Forum: AddOn Help/Support 10-02-06, 03:33 AM
Replies: 6
Views: 3,670
Posted By Zeksie
See if it does it without CTRA (I doubt that's...

See if it does it without CTRA (I doubt that's the culprit). More likely some other addon is intercepting some roster calls and screwing up.

Do a text search in addons folder for 'function...
Forum: AddOn Help/Support 09-07-06, 06:46 AM
Replies: 13
Views: 5,158
Posted By Zeksie
The kinds of timings you're talking about are...

The kinds of timings you're talking about are rarely caused by mods. The lua script execution is very fast and most normal event processing takes almost no time. Maybe 0.1ms (1/10,000th sec) in most...
Forum: AddOn Help/Support 08-28-06, 05:53 AM
Replies: 0
Views: 3,733
Posted By Zeksie
X-Perl - Odd freezing issues with showing frames

I have an issue with, well. Let's say X-Perl for want of a better cause. It's mine, so why not lay the blame at my own feet to start and go from there.

If I disable all raid frames, then re-show...
Showing results 1 to 24 of 24