Showing results 1 to 17 of 17
Search took 0.00 seconds.
Search: Posts Made By: Nirrudn
Forum: General Authoring Discussion 10-12-09, 04:37 PM
Replies: 2
Views: 4,102
Posted By Nirrudn
Wouldn't the UNIT_AURA event be simpler to use?

Wouldn't the UNIT_AURA event be simpler to use?
Forum: Lua/XML Help 10-09-09, 03:08 AM
Replies: 5
Views: 3,579
Posted By Nirrudn
http://www.wowwiki.com/Creating_simple_pop-up_dial...

http://www.wowwiki.com/Creating_simple_pop-up_dialog_boxes

Key thing to look at there is the OnAccept bit, that's where you'd stick your function to say "congrats."
Forum: General Authoring Discussion 06-02-09, 09:06 PM
Replies: 32
Views: 9,023
Posted By Nirrudn
You can get the raid leader by doing something...

You can get the raid leader by doing something like this:


local raidLeader;

for i=1, GetNumRaidMembers() do
if UnitIsPartyLeader("raid"..i) then
raidLeader = UnitName("raid"..i);
break;
end
Forum: Lua/XML Help 06-02-09, 08:54 PM
Replies: 5
Views: 5,112
Posted By Nirrudn
The problem turned out to be neither, I just...

The problem turned out to be neither, I just forgot to make the variable in question globally accessible so my development addons could properly read it. It seems to be working fine now.

One of...
Forum: General Authoring Discussion 06-02-09, 04:16 PM
Replies: 32
Views: 9,023
Posted By Nirrudn
What you'll need to use are the SendAddonMessage...

What you'll need to use are the SendAddonMessage function on each of the 3 buttons, and the CHAT_MSG_ADDON event to parse out the information sent by the...
Forum: Lua/XML Help 06-02-09, 03:46 PM
Replies: 5
Views: 5,112
Posted By Nirrudn
GetCVar Returning nil When it Shouldn't?

Edit 2 - Nevermind, I'm stupid. I forgot to make the variable in question global before using 3rd party addons to check its value.

I have an addon that mutes the game sound at certain times by...
Forum: Lua/XML Help 05-31-09, 07:55 PM
Replies: 8
Views: 5,414
Posted By Nirrudn
I think what you want to use is...

I think what you want to use is UIDropDownMenu_GetSelectedValue() or UIDropDownMenu_GetText().

Trouble is you need to supply them with your actual UIDropDownMenu object, which I can't locate in the...
Forum: Lua/XML Help 05-31-09, 07:26 PM
Replies: 3
Views: 2,839
Posted By Nirrudn
I think this will do what you want. Pretty much...

I think this will do what you want. Pretty much pull the number out of the button to use an index in a table, right?


-- LunarSphere support
if IsAddOnLoaded("LunarSphere") then
if frame ==...
Forum: Lua/XML Help 05-31-09, 06:43 PM
Replies: 4
Views: 3,686
Posted By Nirrudn
Try a CR_EditBox_Stone:SetCursorPosition(0) in...

Try a CR_EditBox_Stone:SetCursorPosition(0) in there? Might have to follow with a ClearFocus, I'm not sure if SetCursorPosition causes it start receiving keyboard input or not.

Are you setting the...
Forum: Lua/XML Help 05-31-09, 06:26 PM
Replies: 4
Views: 4,686
Posted By Nirrudn
Yup, that's all I want to do is remove whatever...

Yup, that's all I want to do is remove whatever matches my patterns. I have a tendency to overcomplicate things because I always like trying out new techniques or stuff I just learned.

Thanks for...
Forum: Lua/XML Help 05-30-09, 10:58 PM
Replies: 4
Views: 4,686
Posted By Nirrudn
I was kicking around the concept of playing with...

I was kicking around the concept of playing with UnitExists to basically convert any unit names in the text into a pattern expression to create a more "universal" way of filtering things without a...
Forum: Lua/XML Help 05-30-09, 06:29 PM
Replies: 4
Views: 4,686
Posted By Nirrudn
Large Scale Pattern Matching

I have a chat filter addon, and I'm looking to block out about 30 specific, yet slightly variable, messages. The variable parts of them are most likely to be player or pet names.

I'm a relative...
Forum: Alpha/Beta AddOns and Compilations 06-22-06, 04:45 PM
Replies: 0
Views: 1,309
Posted By Nirrudn
LFGFilter

This is the discussion thread for LFGFilter (http://www.wowinterface.com/downloads/info5080-LFGFilter.html) .

Feel free to post your questions/comments/suggestions/etc. here.

Tomorrow I'll probably...
Forum: Released AddOns 12-03-05, 04:34 PM
Replies: 4
Views: 3,416
Posted By Nirrudn
Sorry for taking so long to update! The newest...

Sorry for taking so long to update! The newest version still isn't ready for release yet, I have a small (but very confusing and annoying) kink to work out, which is unfortunately proving very...
Forum: Released AddOns 11-16-05, 06:15 PM
Replies: 4
Views: 3,416
Posted By Nirrudn
I just uploaded a new version, it's currently...

I just uploaded a new version, it's currently pending approval.

I added two more features: You can now specify the Override Key to be either Ctrl, Shift, or Alt. You can also have EasyCC announce...
Forum: Released AddOns 11-16-05, 01:38 PM
Replies: 4
Views: 3,416
Posted By Nirrudn
Hibernate should be built into it already, as...

Hibernate should be built into it already, as Druid AutoCC. If it's not working, I may have spelled the spell name wrong or something, I don't play a Druid.

You can put in custom spells too, but...
Forum: Released AddOns 11-16-05, 10:15 AM
Replies: 4
Views: 3,416
Posted By Nirrudn
EasyCC

http://www.wowinterface.com/downloads/fileinfo.php?s=&id=4335

EasyCC: The goal is one crowd control button that does the thinking for you.

This thread's purpose is to receive comments, bug...
Showing results 1 to 17 of 17