Showing results 1 to 25 of 111
Search took 0.01 seconds.
Search: Posts Made By: Akkorian
Forum: Site help, bugs, suggestions/questions 06-18-17, 11:47 PM
Replies: 2
Views: 761
Posted By Akkorian
Thanks Dolby!

Thanks Dolby!
Forum: oUF (Otravi Unit Frames) 06-11-17, 03:10 PM
Replies: 3
Views: 2,567
Posted By Akkorian
Thanks! You're right, I did mix up...

Thanks!

You're right, I did mix up AdditionalPower and AlternativePower when reading the thread. So it's intended that there's not a "min" in the AdditionalPower callback, to match the Power and...
Forum: oUF (Otravi Unit Frames) 06-11-17, 10:51 AM
Replies: 3
Views: 2,567
Posted By Akkorian
Some PostUpdate parameters don't match the upgrade info thread

I just came back to the game and am updating my personal layout, and have noticed a few discrepancies between the oUF 7.0 Upgrade thread (https://www.wowinterface.com/forums/showthread.php?t=55422)...
Forum: Site help, bugs, suggestions/questions 06-09-17, 02:44 PM
Replies: 2
Views: 761
Posted By Akkorian
My AddOn List is empty, but shouldn't be

Hello,

I am listed as a co-author on several (https://www.wowinterface.com/downloads/info19129-ItemTooltipCleaner.html) addons (https://www.wowinterface.com/downloads/info23465-BindsWhen.html), but...
Forum: General Authoring Discussion 05-01-11, 07:16 PM
Replies: 5
Views: 4,995
Posted By Akkorian
Hi pikadude, The best you could do would be to...

Hi pikadude,

The best you could do would be to find (or write) an addon that saved profiles for macros, key bindings, and/or action button assignments based on your primary talent tree. I think I...
Forum: AddOn Search/Requests 04-29-11, 03:45 PM
Replies: 5
Views: 3,707
Posted By Akkorian
You can use ClassColors...

You can use ClassColors (http://www.wowinterface.com/downloads/info12513-ClassColors.html) to customize class colors, and it will affect the chat frame. :)
Forum: oUF (Otravi Unit Frames) 04-25-11, 03:37 PM
Replies: 7
Views: 5,343
Posted By Akkorian
Hi Game92, Does the healthBar.colorSmooth...

Hi Game92,

Does the healthBar.colorSmooth property (https://github.com/haste/oUF/wiki/element---health-bar) not work for you? If you need more flexibility, you could look at the gradient function in...
Forum: AddOn Help/Support 04-12-11, 01:12 AM
Replies: 1
Views: 10,086
Posted By Akkorian
Hi Cathbadh, Did you make sure that OmniCC is...

Hi Cathbadh,

Did you make sure that OmniCC is set up to show timers on icons as small as the ones for buffs/debuffs on your SUF target frame?
Forum: Lua/XML Help 04-12-11, 01:08 AM
Replies: 9
Views: 4,980
Posted By Akkorian
Hmm, that’s probably the least efficient solution...

Hmm, that’s probably the least efficient solution you could possibly make. :(

Was there a problem with the solution I posted right before your post? If you want lowercase instead of uppercase it’s...
Forum: AddOn Search/Requests 04-12-11, 01:04 AM
Replies: 3
Views: 3,337
Posted By Akkorian
Hi Jalisco, The script Duugu posted just needs a...

Hi Jalisco,

The script Duugu posted just needs a few adjustments. This should work:

/run local f=CreateFrame("Frame") f:RegisterEvent("CHAT_MSG_GUILD") f:SetScript("OnEvent", function(_,_,m,s) if...
Forum: Lua/XML Help 04-08-11, 01:41 PM
Replies: 9
Views: 4,980
Posted By Akkorian
The simplest method would be to capture...

The simplest method would be to capture everything between the exclamation point and the last word, and then capture the last word. That will end you up with things like "DEATHKNIGHT" or "DRUID" for...
Forum: General Authoring Discussion 03-20-11, 02:47 AM
Replies: 4
Views: 3,632
Posted By Akkorian
That’s because font strings can’t be scaled to...

That’s because font strings can’t be scaled to make them bigger than the maxmium size WoW will render them. Since your font string is already at the maximum size when you create it, the animation...
Forum: Lua/XML Help 03-19-11, 02:18 AM
Replies: 17
Views: 9,113
Posted By Akkorian
Hi Arxae, Sorry, I forgot to add that you also...

Hi Arxae,

Sorry, I forgot to add that you also have to register the button for clicks:

f:RegisterForClicks("AnyUp")

Also make sure you’re using the button’s global name, as other people pointed...
Forum: AddOn Search/Requests 03-19-11, 02:01 AM
Replies: 3
Views: 10,737
Posted By Akkorian
Hi Praetora, It’s not an addon, but you can do...

Hi Praetora,

It’s not an addon, but you can do this on Wowhead.


Make an account on Wowhead if you don’t have one yet.
Download the Wowhead Client ( http://www.wowhead.com/client ) and install...
Forum: General Authoring Discussion 03-19-11, 01:47 AM
Replies: 4
Views: 3,632
Posted By Akkorian
Hi Duugu, I think the problem is that you set...

Hi Duugu,

I think the problem is that you set the font string to be size 30, and WoW won’t render text much bigger than that (the point size depends on the font file, but there is an maximum...
Forum: Macro Help 03-18-11, 04:42 PM
Replies: 4
Views: 11,578
Posted By Akkorian
Hi Rixxon, This should work: local messages =...

Hi Rixxon,

This should work:


local messages = {
{ time = 0, channels = "SAY", message = "Manaflut ! Kuscheln !!" },
{ time = 60, channels = "PARTY", message = "MANATIDE 2MIN CD" },
{ time =...
Forum: Lua/XML Help 03-18-11, 04:03 PM
Replies: 11
Views: 13,702
Posted By Akkorian
Hi Stako, The easiest thing to do would probably...

Hi Stako,

The easiest thing to do would probably be to hook the GetBindingText function:


local old_GetBindingText = GetBindingText
function GetBindingText( name, prefix, returnAbbr )
local text =...
Forum: AddOn Help/Support 03-17-11, 08:04 PM
Replies: 9
Views: 5,927
Posted By Akkorian
Hi Plickz, Outlines are added with the SetFont...

Hi Plickz,

Outlines are added with the SetFont API, so look for where that’s used:


fontString:SetFont("Some\\Font\\File", 16, "OUTLINE")


Change the third parameter to "MONOCHROME".
Forum: Lua/XML Help 03-16-11, 02:50 PM
Replies: 17
Views: 9,113
Posted By Akkorian
I think the SecureHandlerClickTemplate template...

I think the SecureHandlerClickTemplate template is for creating click-cast unit frames, not for making action buttons. Also, to get click handlers your frame must be a Button, not a regular Frame....
Forum: Lua/XML Help 03-16-11, 02:37 PM
Replies: 6
Views: 7,557
Posted By Akkorian
Hi Frohanss, You might want to take a look at...

Hi Frohanss,

You might want to take a look at Fane (http://www.wowinterface.com/downloads/info7984-Fane.html) to see how it handles changing the chat tabs.
Forum: General Authoring Discussion 03-15-11, 09:20 PM
Replies: 7
Views: 6,580
Posted By Akkorian
I’d still do what I suggested in my last post,...

I’d still do what I suggested in my last post, since that will always tell you if the spell is interruptible when it starts casting, and keep the other two events registered in case they do...
Forum: Lua/XML Help 03-15-11, 09:16 PM
Replies: 17
Views: 9,113
Posted By Akkorian
Hi Arxae, In order to cast a spell, use an item,...

Hi Arxae,

In order to cast a spell, use an item, run a macro, target a unit, or do anything like that, your frame has to use one of Blizzard’s secure templates.

You can make buttons that appear...
Forum: General Authoring Discussion 03-15-11, 04:06 PM
Replies: 7
Views: 6,580
Posted By Akkorian
You should make your frame reference...

You should make your frame reference local:


local ezInterrupt=CreateFrame("Frame");


Anyway, I think UNIT_SPELLCAST_INTERRUPTIBLE and UNIT_SPELLCAST_NOT_INTERRUPTIBLE only fire when the...
Forum: AddOn Search/Requests 03-15-11, 01:32 PM
Replies: 6
Views: 4,863
Posted By Akkorian
Well, he’s listed as an author on the addon page...

Well, he’s listed as an author on the addon page (the original author has to add him) and the addon description says:



So I’m guessing he’s officially continuing the addon. :)
Forum: Site help, bugs, suggestions/questions 03-14-11, 11:44 PM
Replies: 8
Views: 2,605
Posted By Akkorian
Sorry, forgot to mention I’m still on Windows...

Sorry, forgot to mention I’m still on Windows XP.

The option is under Preferences » Advanced tab » Network » uncheck “Send referrer information”.
Showing results 1 to 25 of 111