Showing results 1 to 25 of 131
Search took 0.01 seconds.
Search: Posts Made By: ganders
Forum: Lua/XML Help 06-05-08, 11:23 AM
Replies: 6
Views: 3,789
Posted By ganders
You can still check before you give up. Try and...

You can still check before you give up. Try and find where it's coded in the FrameXML. Try looking at GlobalStrings.lua and other file names that sound like they could have it in there.

If you can't...
Forum: AddOn Search/Requests 05-30-08, 04:33 PM
Replies: 9
Views: 5,258
Posted By ganders
Oops, my bad, linked the wrong...

Oops, my bad, linked the wrong one.

http://evladdons.googlecode.com/svn/trunk/evl_Scavenger/
Forum: AddOn Search/Requests 05-30-08, 04:16 PM
Replies: 9
Views: 5,258
Posted By ganders
http://evladdons.googlecode.com/svn/trunk/evl_Repa...

http://evladdons.googlecode.com/svn/trunk/evl_Repair/
Forum: Lua/XML Help 05-29-08, 07:11 PM
Replies: 1
Views: 2,884
Posted By ganders
The variable you're trying to get must be a...

The variable you're trying to get must be a global in the other Lua file.

Open up the other file, and look to see if it says local before the name of the variable. If it does, delete the local and...
Forum: Chit-Chat 05-28-08, 05:52 PM
Replies: 6
Views: 5,266
Posted By ganders
Thanks for the heads up!

Thanks for the heads up!
Forum: AddOn Search/Requests 05-09-08, 10:46 PM
Replies: 12
Views: 62,549
Posted By ganders
Your avatar is pretty freakin' creepy.

Your avatar is pretty freakin' creepy.
Forum: AddOn Search/Requests 04-30-08, 06:57 PM
Replies: 5
Views: 4,192
Posted By ganders
Real men move the mouse with their mind.

Real men move the mouse with their mind.
Forum: AddOn Search/Requests 04-30-08, 06:56 PM
Replies: 2
Views: 3,456
Posted By ganders
An addon can tell you WHAT spell to cast, it just...

An addon can tell you WHAT spell to cast, it just can't cast it for you.

So yes this is possible. It's kind of like combining Dr. Damage and VisualHeal.
Forum: AddOn Help/Support 04-19-08, 06:42 PM
Replies: 5
Views: 4,711
Posted By ganders
Oh if you're trying to make party chat sticky...

Oh if you're trying to make party chat sticky then:
ChatTypeInfo['PARTY'].sticky = 1
Forum: AddOn Help/Support 04-19-08, 02:45 PM
Replies: 5
Views: 4,711
Posted By ganders
Try something like SendChatMessage("", "PARTY")...

Try something like SendChatMessage("", "PARTY") and see if that switches it for you.
Forum: AddOn Help/Support 04-19-08, 11:01 AM
Replies: 3
Views: 3,544
Posted By ganders
If you did actually download oUF and the layout,...

If you did actually download oUF and the layout, then you need to open up the layout.lua file, go to near the bottom and look for the line player:SetPoint("CENTER", -220, -295) or something along...
Forum: Released AddOns 04-18-08, 09:40 PM
Replies: 1
Views: 2,753
Posted By ganders
Rewritten into Ace3 now. Cleaned up the code too,...

Rewritten into Ace3 now. Cleaned up the code too, so it's more efficient.

Also added custom sound & font "libraries", similar to MSBT, so that you if you don't have or choose not to use SharedMedia...
Forum: General Authoring Discussion 04-17-08, 05:49 PM
Replies: 1
Views: 2,413
Posted By ganders
DEFAULT_CHAT_FRAME:AddMessage("Hello...

DEFAULT_CHAT_FRAME:AddMessage("Hello World!")

Also, you need to add local frame = CreateFrame("Frame") at the very beginning of the file.

Delete your XML file. You don't need one for something like...
Forum: AddOn Help/Support 04-17-08, 03:36 PM
Replies: 4
Views: 6,831
Posted By ganders
frame:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")...

frame:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED") means that this frame will only listen for the event COMBAT_LOG_EVENT_UNFILTERED, and that's the event we want to know what's happening...
Forum: AddOn Search/Requests 04-16-08, 09:30 PM
Replies: 17
Views: 6,654
Posted By ganders
Bagnon_Forever Or is it Bagnon_Tooltips It's...

Bagnon_Forever

Or is it Bagnon_Tooltips

It's Bagnon something.
Forum: AddOn Help/Support 04-16-08, 09:24 PM
Replies: 4
Views: 6,831
Posted By ganders
4/15 20:31:14.015 Timestamp SPELL_CAST_SUCCESS...

4/15 20:31:14.015 Timestamp
SPELL_CAST_SUCCESS Event Type (In this case, the SPELL_SUMMON succeeded, resulting in a Totem)
0x0000000001830A84 Source GUID (The source in this case is Sramana, the...
Forum: Released AddOns 04-16-08, 09:12 PM
Replies: 0
Views: 3,449
Posted By ganders
NinjaYell - Lightweight Alternative to CastYeller

http://wowinterface.com/downloads/info8722-NinjaYell.html

NinjaYell was designed with the intention of delivering the functionality of mods such as CastYeller or CCBreaker, without all the memory...
Forum: General Authoring Discussion 04-13-08, 11:19 AM
Replies: 0
Views: 2,578
Posted By ganders
ChatFrame2.buttonSide

I'm making a script to auto-align Chat frames based on their scroll button positions.

for i=1,7...
Forum: General Authoring Discussion 04-12-08, 09:12 PM
Replies: 3
Views: 6,809
Posted By ganders
Yup I finally figured this out after A LOT of...

Yup I finally figured this out after A LOT of testing.

I ended up just usinglocal name = GetSpellInfo(28730)
local start, duration, enable = GetSpellCooldown(name)and that does the trick.
Forum: General Authoring Discussion 04-12-08, 08:53 PM
Replies: 3
Views: 6,809
Posted By ganders
GetSpellCooldown() work with SpellIDs?

I know it says it does on WoWWiki, but when I was testing this out:
GetSpellCooldown(28734)it returned nil, however
GetSpellCooldown("Mana Tap")worked just fine. Can anyone verify this please?
Forum: Released AddOns 04-12-08, 07:20 PM
Replies: 5
Views: 5,616
Posted By ganders
If you don't have a Data folder then you're not...

If you don't have a Data folder then you're not playing WoW.
Forum: AddOn Help/Support 04-06-08, 11:47 AM
Replies: 12
Views: 5,730
Posted By ganders
Yes, they are aspect ratio specific.

Yes, they are aspect ratio specific.
Forum: Released AddOns 04-05-08, 12:27 AM
Replies: 1
Views: 2,753
Posted By ganders
NinjaPoints

Hey everyone! Come over and check out my new addon NinjaPoints (http://wowinterface.com/downloads/info8634-NinjaPoints.html)

It's my first addon ( that actually works :p ) so tell me what you think,...
Forum: AddOn Help/Support 03-18-08, 11:57 AM
Replies: 4
Views: 3,615
Posted By ganders
The icon option is under the animations tab. On...

The icon option is under the animations tab.

On the lower-right section of the "Animations" screen, there should be 4 checkboxes lined up vertically. The bottom one is the Enable Icons box.
Forum: AddOn Search/Requests 01-26-08, 03:11 PM
Replies: 4
Views: 6,589
Posted By ganders
Seconded, Class Timers is great.

Seconded, Class Timers is great.
Showing results 1 to 25 of 131