1. #1
    Deleted

    [Solved] Help identifying addons and scripts.

    Well I see some addons or scripts I really like in this video and I can't find out where to find them for the life of me:

    - The black border around the chat text.
    - The script or addon that shows enemy trinket usage. (I know Gladius does, but this is cleaner for me)
    - Whatever let's you move enemy arena frames.

    Video: http://www.youtube.com/watch?v=YEUfyJjbnts ---> Woundman 16 on youtube, if you don't want to click.

    Thanks in advance if anyone could identify these 3 addons or scripts for me.

  2. #2
    The darker border around the chat is done simply by rightclicking the General Chat tab and going to the background opacity, and sliding the slider towards the plus sign. Last time I checked it was somewhere in those settings.

    The other two are probably custom scripts that the guy is using.

    I found some on this page: http://www.arenajunkies.com/topic/21...st__p__3614013

    You should be able to turn them all into an addon instead of having to run the macros every time you log in by removing the /run part from each line and follow the steps on this website to make one addon out of them: http://addon.ziuo.net/

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

  3. #3
    Deleted
    Thanks for the reply. The trinket part really helped, I found scripts like it, but nothing in a /run format that I could use, so this is great.

    The background on the chat is not exactly what I meant, I meant the black glow the text itself has.

    Thanks a lot!

  4. #4
    Oh I misunderstood, maybe this then, same process as before:
    Code:
    for i = 1, 7 do
        local chat = _G["ChatFrame"..i]
        local font, size = chat:GetFont()
        chat:SetFont(font, size, "THINOUTLINE")
        chat:SetShadowOffset(0, 0)
        chat:SetShadowColor(0, 0, 0, 0)
    end
    The lines in pink are optional, they will add a shadow effect as well as the outline around the chat font. You can erase those two lines if you want.

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

  5. #5
    Deleted
    Man, that's great :O you're a wonderful person ^^ thanks, got everything working with your links.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •