Thread: Post Your UI

  1. #25241
    Bloodsail Admiral
    10+ Year Old Account
    Join Date
    Feb 2012
    Location
    Vienna
    Posts
    1,146
    Quote Originally Posted by Jngizu View Post
    Would it be possible to re-host it on imgur? Cannot access that website in Korea for whatever reason.




    there u go
    Last edited by Icoblablubb; 2018-07-21 at 03:53 PM.

  2. #25242
    Quote Originally Posted by shade3891 View Post
    Not done, but working on this concept for my Void Elf Outlaw Rogue!



    (Images are the same, only the background is switched)
    This is beautiful... can't wait to steal those textures, hehehe!!

  3. #25243
    Pit Lord shade3891's Avatar
    15+ Year Old Account
    Join Date
    Oct 2008
    Location
    Boat to the Dragon Ilses
    Posts
    2,307
    Quote Originally Posted by Panta View Post
    This is beautiful... can't wait to steal those textures, hehehe!!
    If you like i can share a psd file? Currently stripping it down to tga files. But not done yet.

  4. #25244
    Quote Originally Posted by shade3891 View Post
    If you like i can share a psd file? Currently stripping it down to tga files. But not done yet.
    Thanks a lot, but I can wait... I wont be redoing my UI untill a month into BfA, to make sure all the addons Im using will be upgraded and working properly...
    Your Background texture for target frame portrait looks like exactly what I want to reskin the Personel Resourse Display (Im using right now Legionary textures, which were perfectly Legion themed)

  5. #25245
    Quote Originally Posted by shade3891 View Post
    If you like i can share a psd file? Currently stripping it down to tga files. But not done yet.
    Any eta on the tga files? This looks amazing!

  6. #25246
    Pit Lord shade3891's Avatar
    15+ Year Old Account
    Join Date
    Oct 2008
    Location
    Boat to the Dragon Ilses
    Posts
    2,307
    Quote Originally Posted by LupinRaedwulf View Post
    Any eta on the TGA files? This looks amazing!
    Here you go:

    Download: here

    edit: Added a layered (transparent) PSD file as well, for if you like to tinker.

    Last edited by shade3891; 2018-07-21 at 09:57 PM.

  7. #25247
    He is what I got mine looking like so far, Still want to do a few more things but ill do them later



  8. #25248
    Quote Originally Posted by Icoblablubb View Post
    there u go
    Thanks mate.

    @shade3891 Looks amazing.

  9. #25249
    Quote Originally Posted by shade3891 View Post
    Not done, but working on this concept for my Void Elf Outlaw Rogue!



    (Images are the same, only the background is switched)
    Blown away by this, JFC. Utterly incredible!

  10. #25250
    Quote Originally Posted by Suddy View Post
    I like the minimal setup Duke. I've always wondered, is it easier to heal with the raid frames on the left of your character? Very curious if you're ever going to attempt to use WA.


    Mine currently:

    I like it, I use the same button layout to match my Razer Naga mouse so that's where a lot of my bindings are. Nice!

    - - - Updated - - -

    Quote Originally Posted by Reboot View Post
    He is what I got mine looking like so far, Still want to do a few more things but ill do them later


    There are some really nice UI's here. Are you using ElvUI as the base for this or is this all separated elements you put together?
    There are 10 types of people in this world, those who understand binary and those who don't..

  11. #25251
    Deleted
    Here is my reworked BFA Ui :-) Finally all addons ware working.
    (meeh cant post urls)

    youtu.be/55169Edj5as

  12. #25252
    Deleted
    Quote Originally Posted by shade3891 View Post
    Not done, but working on this concept for my Void Elf Outlaw Rogue!

    (Images are the same, only the background is switched)
    Love it, Reminds me a lot of Guildwars from the colours.

  13. #25253
    Quote Originally Posted by chero View Post
    Here is my reworked BFA Ui :-) Finally all addons ware working.
    (meeh cant post urls)

    https://www.youtube.com/watch?v=5516...ature=youtu.be
    fixed it for you

  14. #25254
    Quote Originally Posted by shade3891 View Post
    Not done, but working on this concept for my Void Elf Outlaw Rogue!

    -- pic
    -- pic

    (Images are the same, only the background is switched)
    Found another D3 fan

    I'd kms if I had to redo so many icons, I'd just apply round masks to Blizz icons and that's it GJ regardless!

  15. #25255
    Quote Originally Posted by chero View Post
    Here is my reworked BFA Ui :-) Finally all addons ware working.
    (meeh cant post urls)

    youtu.be/55169Edj5as
    What are you using to skin the buttons / character select screens?

  16. #25256
    Quote Originally Posted by shade3891 View Post
    Not done, but working on this concept for my Void Elf Outlaw Rogue!



    (Images are the same, only the background is switched)
    I would love to know how it's possible to change the Icons like you did Hearthstone etc. may we can do a Media Pack with new Icons

  17. #25257
    8.0 WindWalker UI

    Out of combat:


    In combat:

  18. #25258
    Here's my UI right now!

    AftermathhUI: @ WoWinterface
    Dirty Twist: @ Soundcloud

  19. #25259
    The Lightbringer Dalheim's Avatar
    10+ Year Old Account
    Join Date
    Jul 2013
    Location
    The Nordics
    Posts
    3,226
    This is the one I currently use.


  20. #25260
    Quote Originally Posted by Atwood View Post
    I would love to know how it's possible to change the Icons like you did Hearthstone etc. may we can do a Media Pack with new Icons
    Each texture has its own ID, so you can check if icon's texture is one of those you want to replace, if yes, you just use your own texture instead.

    Normally, textures in question are fetched via GetActionTexture.

    This code will replace mage's lance icon w/ a question mark:
    Code:
    local texturesToReplace = {
    	-- [textureIDToReplace] = "path\\to\\your\\texture",
    	[135844] = "Interface\\ICONS\\INV_Misc_QuestionMark",
    }
    
    hooksecurefunc("ActionButton_Update", function(self)
    	local texture = GetActionTexture(self.action)
    	if texture then
    		self.icon:SetTexture(texturesToReplace[texture] or texture)
    	end
    end)

    Here I hooked ActionButton_Update func which is used to update Blizz action buttons. Addons may require a bit different approach because often it's impossible to hook update functions directly, but there's probably callbacks and whatnot, but the idea is the same.
    Last edited by ls-; 2018-07-22 at 01:59 PM.

Posting Permissions

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