Showing results 1 to 25 of 42
Search took 0.00 seconds.
Search: Posts Made By: Guardix
Forum: AddOn Help/Support 02-24-11, 03:13 PM
Replies: 3
Views: 7,915
Posted By Guardix
Yup, anchoring it to bottomleft, bottom or...

Yup, anchoring it to bottomleft, bottom or bottomright, makes it grow upwards. If widgets are anchored like so, the SetHeight method will set the height from the anchor points and grow in a single...
Forum: AddOn Search/Requests 11-10-10, 08:07 AM
Replies: 16
Views: 73,779
Posted By Guardix
It is indeed possible to move the combat text....

It is indeed possible to move the combat text. You can overwrite CombatText_AddMessage. It didn't seem to cause any taint for me.

https://gist.github.com/670886
Forum: Lua/XML Help 10-05-10, 11:17 AM
Replies: 3
Views: 3,330
Posted By Guardix
You can use UnitAura(unit, spell) unit would then...

You can use UnitAura(unit, spell)
unit would then be "player" and spell "Righteous Fury"

If the function returns nil, you can display some frame to notice yourself
Documentation...
Forum: Macro Help 09-21-10, 02:19 AM
Replies: 14
Views: 42,194
Posted By Guardix
/run SendChatMessage("Casting...

/run SendChatMessage("Casting "..GetSpellLink("Resurrection").." on "..UnitName("target") or "No Target",GetNumRaidMembers()>0 and "RAID" or GetNumPartyMembers()>0 and "PARTY" or "SAY")

Simply added...
Forum: AddOn Help/Support 09-07-10, 11:56 AM
Replies: 5
Views: 6,198
Posted By Guardix
You can create a simple addon yourself to fix the...

You can create a simple addon yourself to fix the border and make it depend on sThreatMeter2 and !BeautyCase, so that it loads when sThreatMeter2 is loaded (This way you make sure sThreatMeter isn't...
Forum: AddOn Help/Support 09-07-10, 11:45 AM
Replies: 7
Views: 13,791
Posted By Guardix
Neither the capturebar or the alwaysupframe is...

Neither the capturebar or the alwaysupframe is movable right away, the need to be created before you can take action. You need to hook WorldStateAlwaysUpFrame_Update and play with the variables:...
Forum: Cataclysm Beta 08-23-10, 04:19 AM
Replies: 101
Views: 40,899
Posted By Guardix
I haven't had regular bindings for decades!

I haven't had regular bindings for decades!
Forum: Cataclysm Beta 08-23-10, 02:21 AM
Replies: 101
Views: 40,899
Posted By Guardix
oBindings, had to spend 30 minutes to redo my...

oBindings, had to spend 30 minutes to redo my bindings and recreate my macros. Copy-pasta work :(
Forum: News 08-23-10, 02:18 AM
Replies: 1,230
Views: 594,843
Posted By Guardix
I assume it was downloading at full speed, at...

I assume it was downloading at full speed, at least it said 200 kBytes/s (I have a 2MBit connection :()

Is the guild system still bugged, so only the GM can invite?
Forum: News 08-21-10, 02:06 PM
Replies: 1,230
Views: 594,843
Posted By Guardix
10.4GB left of downloading, estimated time is 21...

10.4GB left of downloading, estimated time is 21 hours, I could really use a faster connection :(
Forum: Lua/XML Help 08-10-10, 12:24 PM
Replies: 10
Views: 8,722
Posted By Guardix
SlashCmdList["test"] = function(arg1) if...

SlashCmdList["test"] = function(arg1)
if arg1:lower() == "unlock" then
for _, frame in next, mmframe do
frame:SetMovable(true)
end
print(wname.."|cFF00FFFF: unlocked for...
Forum: Lua/XML Help 08-10-10, 09:25 AM
Replies: 10
Views: 8,722
Posted By Guardix
Aha, make it say this instead: local mmframe =...

Aha, make it say this instead:

local mmframe = {
_G["TicketStatusFrame"],
_G["DurabilityFrame"],
}
Forum: Lua/XML Help 08-10-10, 09:16 AM
Replies: 10
Views: 8,722
Posted By Guardix
EnableMouse is to make the frame solid, so your...

EnableMouse is to make the frame solid, so your mouse clicks dont go through to the worldframe. Could you try doing the commands in game, perhaps the frames aren't created when you call those...
Forum: Lua/XML Help 08-10-10, 07:53 AM
Replies: 10
Views: 8,722
Posted By Guardix
Your table's name is mmframe not mmframes and you...

Your table's name is mmframe not mmframes and you shouldn't use self.mmframe, just mmframe.

Also I'm unsure if you need to clear the frame's points when you drag it, but I think you should try it...
Forum: Chit-Chat 08-07-10, 05:53 PM
Replies: 9
Views: 7,208
Posted By Guardix
I think I'll move to Canada to become as awesome!

I think I'll move to Canada to become as awesome!
Forum: Lua/XML Help 08-07-10, 04:57 PM
Replies: 9
Views: 4,001
Posted By Guardix
A rename should do it, CancelDuel is overwritten...

A rename should do it, CancelDuel is overwritten from a function variable to a boolean variable.
Forum: AddOn Search/Requests 08-07-10, 04:52 PM
Replies: 19
Views: 16,957
Posted By Guardix
I was thinking of the many 'ClearAllPoints' and...

I was thinking of the many 'ClearAllPoints' and 'SetPoints' for each icon, but oh well perhaps it wouldn't be much different than what Coolline and SexyCooldown is already.
Forum: Cataclysm Beta 08-07-10, 01:01 PM
Replies: 2
Views: 3,988
Posted By Guardix
In before MMO-Champion! Congratulations to all...

In before MMO-Champion!

Congratulations to all you mac users ^^!
Forum: News 08-07-10, 12:49 PM
Replies: 1,230
Views: 594,843
Posted By Guardix
Dammit, I saw the 999 replies and I thought *hey...

Dammit, I saw the 999 replies and I thought *hey imma take the 1k* and then I thought oh.. right.. 999 replies plus the main post itself.

The next wave of keys can't be that long away, another 15...
Forum: AddOn Search/Requests 08-07-10, 12:26 PM
Replies: 19
Views: 16,957
Posted By Guardix
It sure will, but also CPU intensive, with the...

It sure will, but also CPU intensive, with the OnUpdate function running. :(
Forum: Lua/XML Help 08-07-10, 08:49 AM
Replies: 4
Views: 3,858
Posted By Guardix
Yes basically. That is what I do, so it's only...

Yes basically. That is what I do, so it's only performed once.
Forum: Lua/XML Help 08-07-10, 08:18 AM
Replies: 4
Views: 3,858
Posted By Guardix
You don't have to hook any function to style the...

You don't have to hook any function to style the buttons. Right now you create a new frame everytime PetActionBar_Update is called. But if you really wish to use that function, you can create a new...
Forum: Tech Chat 08-04-10, 02:12 PM
Replies: 9
Views: 10,715
Posted By Guardix
Thank you for your inputs! I am aware of that...

Thank you for your inputs!

I am aware of that playing in windowed mode gives less fps, but it's annoying to play without. It's way too awesome if you use dual screen, as it makes everything easier...
Forum: Lua/XML Help 08-03-10, 03:22 PM
Replies: 11
Views: 7,508
Posted By Guardix
I think changing mask texture requires a reloaded...

I think changing mask texture requires a reloaded UI.
Forum: Tech Chat 08-03-10, 02:20 PM
Replies: 9
Views: 10,715
Posted By Guardix
Memory, reason for low fps?

So I've been looking around and seen some rigs go with 40+ fps during raids.
My rig currently pulls, while standing in Orgrimmar, 20 fps (It's a rather populated server) and during a boss fight in...
Showing results 1 to 25 of 42