Search:

Type: Posts; User: aelwi

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    1,143

    I'm confident this would be the most effective...

    I'm confident this would be the most effective way to do so.

    I tried several methods I could think of moving nameplates due to them being inside of player models instead of being slightly above. ...
  2. Replies
    5
    Views
    3,660

    There are a few AddOn's that change fonts and...

    There are a few AddOn's that change fonts and fontsizes.

    See 'tekticles' for reference:
    https://www.curseforge.com/wow/addons/tekticles/files

    They don't increase size by that much though.
    If...
  3. Replies
    1
    Views
    2,963

    _Wrong subforum it seems_ Could you...

    _Wrong subforum it seems_



    Could you provide a download link to the CooldownCount version you are using?
    According to wowace there seems to be no version tailored for 3.3.5a:
    ...
  4. Replies
    2
    Views
    1,884

    These UnitFrames are from SainUI. ...

    These UnitFrames are from SainUI.

    https://cdn-wow.mmoui.com/preview/pvw48668.jpg

    https://www.wowinterface.com/downloads/info19138-SainUI.html
  5. Replies
    6
    Views
    1,663

    My bad, thought you wanted the name to be...

    My bad, thought you wanted the name to be colored.

    Try this:



    Outline()
    if not GetPetHappiness() then
    return
    end
  6. Replies
    6
    Views
    1,663

    Try this: Outline() if not...

    Try this:


    Outline()
    if not GetPetHappiness() then
    return
    end
    local petHappinessColors = {
    [1] = {.69,.31,.31},
    [2] = {.65,.63,.35},
  7. Replies
    1
    Views
    5,675

    Items from transmog / possible exploits?

    Hello there,

    due to pretty long ticket response times I'm posting here.

    Please consider wiping _some_ of the transmog items.
    I currently still own a Martin Fury...
  8. Replies
    5
    Views
    1,361

    That's correct. You can't call...

    That's correct. You can't call AcceptBattlefieldPort outside of HE (hardware events) as it is protected and will only cause taint.
    Only HE (user input) will be able to do so.

    What you _could_ do...
  9. Replies
    1
    Views
    4,169

    You can still find the old MySlot versions on the...

    You can still find the old MySlot versions on the chinese forums (bbs / nga.178).

    This is the localized english version for 3.3.5:
    http://www.mediafire.com/file/1mtzc449mgxg6zy/MySlot.zip
  10. Replies
    2
    Views
    2,254

    Tekticles + NiceDamage/GDFont

    Tekticles and Nicedamage/gdfont/xDamageFont/... all alter the same global variable DAMAGE_TEXT_FONT.
    Any AddOn that messes with DAMAGE_TEXT_FONT will overwrite the previous chosen font.

    The...
  11. Replies
    5
    Views
    5,276

    local function fixvalue(v) if v >= 1e6 then...

    local function fixvalue(v)
    if v >= 1e6 then
    return ('%.1fm'):format(v/1e6):gsub('%.?0+([km])$','%1')
    elseif v >= 1e4 then
    return ('%.1fk'):format(v/1e3):gsub('%.?0+([km])$','%1')
    else ...
  12. Replies
    15
    Views
    20,916

    It's a bit more difficult than that. The main...

    It's a bit more difficult than that.

    The main problem is that this AddOn was written for a different patch / expansion (first released for patch 7.1.0 Legion).
    The API in patch 3.3.5 (WotLK) and...
  13. Replies
    2
    Views
    1,015

    The icon looks a lot like EventAlert....

    The icon looks a lot like EventAlert.
    http://www.wowinterface.com/downloads/info9592-EventAlert.html

    Do you have that AddOn enabled by any chance?
    If not see If you can '/fstack' ingame and...
  14. Replies
    1
    Views
    1,298

    These AddOn's rely on an event named...

    These AddOn's rely on an event named "COMBAT_LOG_EVENT_UNFILTERED".
    This event basically "lists" all the actions in the CombatLog.

    The AddOn's get their information (e.g. cooldown used) by...
Results 1 to 14 of 15