Showing results 1 to 22 of 22
Search took 0.00 seconds.
Search: Posts Made By: Dargen
Forum: Lua/XML Help 09-28-12, 09:20 PM
Replies: 16
Views: 8,890
Posted By Dargen
An example of dropdown menu related taint in the...

An example of dropdown menu related taint in the current game:
http://us.battle.net/wow/en/forum/topic/6413024969?page=1#2
Forum: oUF (Otravi Unit Frames) 08-31-12, 10:46 AM
Replies: 5
Views: 10,861
Posted By Dargen
If you create a dropdown menu with 8 or more...

If you create a dropdown menu with 8 or more buttons before the game has created the CompactRaidFrame1 frame, then that frame will be tainted when it is created.

UIDropDownMenu can taint...
Forum: MoP Beta archived threads 08-29-12, 04:37 AM
Replies: 20
Views: 22,913
Posted By Dargen
Using only the same test addon that Tukz used in...

Using only the same test addon that Tukz used in the first post in this thread, I get the same Lua error on the live server after 5.0.4 was released. Sometimes the game will crash to the desktop with...
Forum: MoP Beta archived threads 08-29-12, 03:07 AM
Replies: 20
Views: 22,913
Posted By Dargen
I just got this same error in 5.0.4 on the live...

I just got this same error in 5.0.4 on the live server. I discovered that if I renamed the WTF\Config.wtf file and let the game create a new one, the problem went away. Looking at it a bit closer, I...
Forum: Tutorials & Other Helpful Info. 10-31-10, 05:08 AM
Replies: 39
Views: 58,520
Posted By Dargen
I believe sorting by time is working correctly....

I believe sorting by time is working correctly. However, there is a bug that causes it to always separate the buffs you've cast from the buffs cast by other people, so it can look like the list is...
Forum: Tutorials & Other Helpful Info. 10-31-10, 05:00 AM
Replies: 39
Views: 58,520
Posted By Dargen
One thing to remember is that you can't change...

One thing to remember is that you can't change the unit attribute if you are in combat when you get into or out of the vehicle.
Forum: Tutorials & Other Helpful Info. 10-22-10, 10:29 AM
Replies: 39
Views: 58,520
Posted By Dargen
Blizzard updates the aura header anytime it is...

Blizzard updates the aura header anytime it is shown, it receives a UNIT_AURA event, or an attribute is assigned to it.

When setting a number of attributes in the header you can minimize the number...
Forum: Tutorials & Other Helpful Info. 10-22-10, 09:06 AM
Replies: 39
Views: 58,520
Posted By Dargen
These are the issues that I've encountered so far...

These are the issues that I've encountered so far with the current implementation of the SecureAuraHeader:

SecureTemplates.lua:
- You cannot cancel a weapon enchantment since the...
Forum: Archive 09-28-10, 05:28 PM
Replies: 72
Views: 54,825
Posted By Dargen
MMOUI Minion (2.3.2) is not properly detecting...

MMOUI Minion (2.3.2) is not properly detecting CTMod addon versions. When I tried it, the program downloaded and installed older versions of the addons.

After deleting the old addons it downloaded,...
Forum: AddOn Help/Support 11-17-08, 01:27 PM
Replies: 1
Views: 6,504
Posted By Dargen
CT_BuffMod settings are saving fine for me (I'm...

CT_BuffMod settings are saving fine for me (I'm using Windows XP). You could try using the CT_BuffMod 'reset options' button in the CT Mod control panel (/ct).

The most likely thing that would...
Forum: Cladhaire's Mods 02-03-08, 01:54 AM
Replies: 723
Views: 297,594
Posted By Dargen
With regards to hiding offline players...How...

With regards to hiding offline players...How about allowing the user to set an alpha value for offline players (similar to the ones you have for range check)? While it wouldn't remove the player's...
Forum: Cladhaire's Mods 02-03-08, 12:28 AM
Replies: 723
Views: 297,594
Posted By Dargen
It would be nice if there was a highlight, or...

It would be nice if there was a highlight, or some sort of indicator on/beside the player's button in the perfect raid frame, that indicated if the player assigned to that button was the same as your...
Forum: Cladhaire's Mods 02-02-08, 03:09 PM
Replies: 723
Views: 297,594
Posted By Dargen
Suggestion: Add an option to hide offline players

Suggestion: Add an option to hide offline players
Forum: AddOn Help/Support 01-13-07, 03:49 PM
Replies: 6
Views: 5,037
Posted By Dargen
In my case I had two addons which were causing...

In my case I had two addons which were causing problems with the target frame: CT_RaidAssist version 1.622 (from Update 11) and La Vendetta Boss Mods version 2.21. Once I installed the latest...
Forum: AddOn Help/Support 01-13-07, 03:42 PM
Replies: 188
Views: 103,142
Posted By Dargen
I was experiencing the target frame problem prior...

I was experiencing the target frame problem prior to Update 12, but not after.

In my case I had two addons which were causing problems with the target frame: CT_RaidAssist version 1.622 (from...
Forum: AddOn Help/Support 12-27-06, 06:24 PM
Replies: 4
Views: 4,694
Posted By Dargen
Use the command "/tr" or "/timer" to show a list...

Use the command "/tr" or "/timer" to show a list of options for ct_timer. "/timer show" will display the timer window.
Forum: AddOn Help/Support 12-24-06, 06:49 PM
Replies: 25
Views: 38,291
Posted By Dargen
You can use "/tr" or "/timer" to display a list...

You can use "/tr" or "/timer" to display a list of the timer commands. Use "/timer show" to display the timer.
Forum: AddOn Help/Support 12-24-06, 06:43 PM
Replies: 188
Views: 103,142
Posted By Dargen
Try this for function timeFormat4: local hours...

Try this for function timeFormat4:

local hours = floor(timeLeft/3600);
return format("%dh %dm", hours, floor((timeLeft-hours*3600)/60));

and this for function timeFormat5:

local hours =...
Forum: AddOn Help/Support 12-24-06, 06:33 PM
Replies: 5
Views: 3,729
Posted By Dargen
Because the buttons are now Blizzard's secure...

Because the buttons are now Blizzard's secure buttons, you can only bind a key to target the unit assigned to the button. That's why CT_RaidAssist can only use keybindings to target the MT Target,...
Forum: AddOn Help/Support 12-24-06, 05:27 PM
Replies: 2
Views: 3,280
Posted By Dargen
I believe that the keybinding for class/group...

I believe that the keybinding for class/group sorting should be one of the bugs fixed in the next release of CT_Raidassist (I haven't heard a time frame yet).

If you don't mind editing the lua file...
Forum: Chit-Chat 11-14-06, 01:12 AM
Replies: 279
Views: 69,086
Posted By Dargen
From the email that Blizzard sent:

From the email that Blizzard sent:
Forum: News 11-13-06, 03:28 PM
Replies: 390
Views: 94,657
Posted By Dargen
Mine just showed up too (number 37). Looks like...

Mine just showed up too (number 37). Looks like they've got the problem fixed.
Thanks Cairenn :)
Showing results 1 to 22 of 22