Showing results 1 to 25 of 269
Search took 0.01 seconds.
Search: Posts Made By: Clamsoda
Forum: Lua/XML Help 12-03-16, 03:06 PM
Replies: 4
Views: 3,511
Posted By Clamsoda
Post your actual function, or if it is too long,...

Post your actual function, or if it is too long, the file.
Forum: AddOn Search/Requests 01-28-16, 07:18 PM
Replies: 11
Views: 3,906
Posted By Clamsoda
This is a quick re-hash of the old code and seems...

This is a quick re-hash of the old code and seems to work for me.

The FocusFrame's buff handling piggybacks off of TargetFrame_UpdateAuras by being passed into the function as the self argument. My...
Forum: AddOn Search/Requests 01-28-16, 06:17 PM
Replies: 11
Views: 3,906
Posted By Clamsoda
Pardon me? The logic already existed in YOUR...

Pardon me? The logic already existed in YOUR code, you asked what it does and I explained it. I kept the code, all I did was use naming conventions that make sense, got rid of the pointless...
Forum: AddOn Search/Requests 01-28-16, 06:11 PM
Replies: 11
Views: 3,906
Posted By Clamsoda
I revised the code, typo =[. Well, your...

I revised the code, typo =[.

Well, your intention is to manipulate the buffs that the target has, so there is no sense in iterating into the buff frames that are not currently being used.

Remember,...
Forum: AddOn Search/Requests 01-28-16, 05:29 PM
Replies: 11
Views: 3,906
Posted By Clamsoda
The logic you posted about is to prevent your...

The logic you posted about is to prevent your loop from doing work on anything not visible. MAX_TARGET_BUFFS, which is the boundary for your loop, is a constant -- 32. self.maxBuffs is the current...
Forum: Macro Help 01-21-16, 04:12 PM
Replies: 3
Views: 4,125
Posted By Clamsoda
It has been that way since WoTLK.

It has been that way since WoTLK.
Forum: Carbonite: Dev Talk 11-12-15, 07:05 PM
Replies: 4
Views: 7,991
Posted By Clamsoda
AddOn development is a hobby, and donations are...

AddOn development is a hobby, and donations are at the will of the donor. If you don't like the AddOn, then don't use it. Your toxic attitude certainly does nothing to encourage someone to continue...
Forum: Lua/XML Help 10-06-15, 06:35 PM
Replies: 8
Views: 3,233
Posted By Clamsoda
Perhaps the # table length operator wasn't...

Perhaps the # table length operator wasn't present in whatever subset of Lua that was used in Vanilla WoW. I know that there was a transition from getn() to # through the expansions of...
Forum: AddOn Help/Support 07-18-15, 08:41 AM
Replies: 4
Views: 6,065
Posted By Clamsoda
I ran into this issue with one of my addons, I...

I ran into this issue with one of my addons, I believe I had to assign a global name to one of my frames.

Ro's comment on the Blizzard forums: http://us.battle.net/wow/en/forum/topic/17938983726#5
Forum: Lua/XML Help 06-13-15, 09:42 AM
Replies: 7
Views: 5,381
Posted By Clamsoda
local function noop()...

local function noop() end

ObjectiveTrackerFrame:ClearAllPoints()
ObjectiveTrackerFrame:SetPoint("TOPRIGHT", UIParent, "TOPRIGHT", 0, -300)
ObjectiveTrackerFrame.ClearAllPoints =...
Forum: AddOn Help/Support 04-19-15, 12:20 AM
Replies: 8
Views: 4,200
Posted By Clamsoda
Thanks for the feedback; I've never used the...

Thanks for the feedback; I've never used the AddOn.
Forum: AddOn Help/Support 04-18-15, 01:29 PM
Replies: 8
Views: 4,200
Posted By Clamsoda
There is no reason to NOT use an AddOn to...

There is no reason to NOT use an AddOn to accomplish this; macros aren't designed for over-hauling your UI.

http://www.wowinterface.com/downloads/info23287-SkadaChatFrameIntegrator.html
Forum: Macro Help 04-12-15, 09:12 AM
Replies: 3
Views: 10,252
Posted By Clamsoda
AddOns and macros are subject to the same...

AddOns and macros are subject to the same stipulations; what you want is strictly not possible.
Forum: Lua/XML Help 03-21-15, 10:21 AM
Replies: 11
Views: 5,203
Posted By Clamsoda
I know a decent way to avoid taint is to run the...

I know a decent way to avoid taint is to run the click method on any buttons that exist. You could run the click method on the micro menus' TalentMicroButton. You could then run the click method on...
Forum: Lua/XML Help 03-03-15, 04:45 AM
Replies: 7
Views: 4,004
Posted By Clamsoda
I am not sure how BeautyCase approaches adding...

I am not sure how BeautyCase approaches adding borders to objects, but textures do not have borders to work on; typically you manipulate the border of a frame.

You would need to create a frame the...
Forum: AddOn Search/Requests 01-29-15, 11:39 PM
Replies: 6
Views: 5,431
Posted By Clamsoda
Accepting warnings regarding disenchanting, and...

Accepting warnings regarding disenchanting, and accepting the warning for using the Essence Font inside of a Garrison's enchanting building are NOT the same thing.
Forum: AddOn Search/Requests 01-29-15, 11:28 PM
Replies: 6
Views: 5,431
Posted By Clamsoda
I just whipped up a small test, and it appears...

I just whipped up a small test, and it appears that automating the acceptance of this (or perhaps all?) spell confirmation prompts causes taint. I assume it is because accepting the prompt executes...
Forum: General Authoring Discussion 01-20-15, 07:48 PM
Replies: 26
Views: 17,213
Posted By Clamsoda
I have played WoW nearly every day since the WoD...

I have played WoW nearly every day since the WoD pre-patch in MoP, and since the launch of WoD. I have reloaded my UI countless times during normal play and during AddOn development. I've not...
Forum: AddOn Help/Support 01-13-15, 04:40 AM
Replies: 15
Views: 19,259
Posted By Clamsoda
Proximo/Gladius/GladiusEx and similar addons...

Proximo/Gladius/GladiusEx and similar addons should have been manifested as an open-source oUF project ages ago, really. oUF does a large majority of what those addons require incredibly well. All...
Forum: Lua/XML Help 01-08-15, 05:18 PM
Replies: 8
Views: 4,489
Posted By Clamsoda
All a file dedicated to configuration does it...

All a file dedicated to configuration does it separate configurable settings from non-configurable/relevant code. The fact that the file is named config.lua or configuration.lua makes it no...
Forum: Lua/XML Help 01-05-15, 08:36 PM
Replies: 2
Views: 2,510
Posted By Clamsoda
One minute code job. The amount from the cache...

One minute code job. The amount from the cache is printed to chat, so you could know it through related events and some pattern matching. If you are curious as to the amount before opening it, I am...
Forum: AddOn Search/Requests 12-10-14, 06:03 AM
Replies: 3
Views: 3,491
Posted By Clamsoda
That is Vranx's...

That is Vranx's UI.

http://www.vranx.com/vranxui.htm
Forum: AddOn Search/Requests 12-04-14, 08:49 PM
Replies: 2
Views: 2,274
Posted By Clamsoda
Shadowed Unitframes and Pitbull4 look strikingly...

Shadowed Unitframes and Pitbull4 look strikingly similar out of the box, and could be configured to look EXACTLY the same in a few minutes.
Forum: Lua/XML Help 11-23-14, 12:44 PM
Replies: 43
Views: 14,537
Posted By Clamsoda
You're going to have a very hard time finding...

You're going to have a very hard time finding help with XML. Relying heavily on XML is discouraged for various reasons, and there is only one thing XML can do that pure LUA cannot: creating secure...
Forum: General Authoring Discussion 11-22-14, 12:41 PM
Replies: 2
Views: 3,423
Posted By Clamsoda
party1 and party2 macros wouldn't suffice?

party1 and party2 macros wouldn't suffice?
Showing results 1 to 25 of 269