Download
(12MB)
Download
Updated: 12-07-16 08:40 AM
Pictures
File Info
Compatibility:
Return to Karazhan (7.1.5)
Legion (7.0.3)
Updated:12-07-16 08:40 AM
Created:06-07-16 08:21 AM
Downloads:30,652
Favorites:55
MD5:
Categories:Action Bar Mods, Graphic UI Mods

GW2 UI  Popular! (More than 5000 hits)

Version: 3.8.4
by: Mortalknight [More]

GW2 UI is a meticulously crafted interface replacement that aims to increase immersion, as well as efficiency, without relying on dependencies.

The entire UI is hand-painted, and hand-coded, to provide the best experience possible for players. Each interface element has been (or will be) rewritten, to provide enhanced functionality as well as improve the user experience, over the default UI.

FEATURES

Hand-painted, dynamic interface art

Clean and user-friendly design

Hand-painted class power icons, with improved animations

Brand new, immersive questing interface

Redesigned and improved inventory interface

Brand new and enhanced quest tracker, complete with tracking compass and boss frames

This UI is designed for players who want a quick-and-easy, plug-and-play interface that returns focus to the game world, not spreadsheets. With version 3.0, we're adding more user customization in the form of modules, which can be toggled on and off at the users' discretion.

CHANGELOG 3.8.4


ARTWORK



- Actionbar backdrop has been updated



- Item quality-border has been update



- Garrison/Order hall icon has been updated



BUG FIXES



- Quest-tracker should now display objectives correctly



- Mobility-bar should no longer display incorrect/unknown spells



- Fixed a bug where partyframe auras did not update



- Fixed a bug where raidframe auras did not update



- Fixed a bug where partyframes would not update when someone left the group



- Ready check now stays visible for 2 second after it completes



- (Addon) Fixed a bug where Shadow Unit Frames did not update when using it in combination with GW2UI (Thanks to Javedko)



- Mythic+ Dungeons now display they affixes correctly and no longer cause errors.



- Fixed a bug where scenario data would not load
Post A Reply Comment Options
Unread 01-23-18, 05:18 AM  
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 5892
File comments: 327
Uploads: 28
Re: Re: Re: Re: 7.3.5 Errors

Originally Posted by xapher19
Originally Posted by Xrystal
And more errors as I play. Opening Bags, Equipping Items etc. Back to my old UI. Pity as this was looking good.
Please use the curse version of the add on, as this is no longer maintained. Thank you!
Thanks, just noticed it while browsing. I usually avoid curse for personal reasons but usually look in there for addons not here.
__________________

[SIGPIC][/SIGPIC]
Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
Report comment to moderator  
Reply With Quote
Unread 01-22-18, 04:55 PM  
xapher19
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
Re: Re: Re: 7.3.5 Errors

Originally Posted by Xrystal
And more errors as I play. Opening Bags, Equipping Items etc. Back to my old UI. Pity as this was looking good.
Please use the curse version of the add on, as this is no longer maintained. Thank you!
Report comment to moderator  
Reply With Quote
Unread 01-22-18, 04:48 PM  
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 5892
File comments: 327
Uploads: 28
Re: Re: 7.3.5 Errors

And more errors as I play. Opening Bags, Equipping Items etc. Back to my old UI. Pity as this was looking good.
__________________

[SIGPIC][/SIGPIC]
Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
Report comment to moderator  
Reply With Quote
Unread 01-22-18, 04:25 PM  
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 5892
File comments: 327
Uploads: 28
Re: 7.3.5 Errors

I fixed the first error by changing the function as follows:

Lua Code:
  1. function gw_artifact_points()
  2.    
  3.     local itemID, altItemID, name, icon, totalXP, pointsSpent, quality, artifactAppearanceID, appearanceModID, itemAppearanceID, altItemAppearanceID, altOnTop, artifactTier = C_ArtifactUI.GetEquippedArtifactInfo();
  4.    
  5.     local numPoints = pointsSpent;
  6.     local xpForNextPoint = C_ArtifactUI.GetCostForPointAtRank(pointsSpent, artifactTier);
  7.     while totalXP >= xpForNextPoint and xpForNextPoint > 0 do
  8.         totalXP = totalXP - xpForNextPoint;
  9.  
  10.         pointsSpent = pointsSpent + 1;
  11.         numPoints = numPoints + 1;
  12.  
  13.         xpForNextPoint = C_ArtifactUI.GetCostForPointAtRank(pointsSpent, artifactTier);
  14.     end
  15.     return numPoints, totalXP, xpForNextPoint;
  16.    
  17. end


And the latter by commenting out the HelpMicroButton lines.
__________________

[SIGPIC][/SIGPIC]
Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
Report comment to moderator  
Reply With Quote
Unread 01-20-18, 12:35 PM  
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 5892
File comments: 327
Uploads: 28
7.3.5 Errors

I received the following error with just GW2UI installed.

Code:
Message: Interface\AddOns\GW2_UI\hud.lua:395: Usage: local cost = C_ArtifactUI.GetCostForPointAtRank(rank, tier)
Time: 01/20/18 18:30:49
Count: 1
Stack: Interface\AddOns\GW2_UI\hud.lua:395: Usage: local cost = C_ArtifactUI.GetCostForPointAtRank(rank, tier)
[C]: ?
[C]: in function `GetCostForPointAtRank'
Interface\AddOns\GW2_UI\hud.lua:395: in function `gw_artifact_points'
Interface\AddOns\GW2_UI\hud.lua:476: in function `update_experiencebar_data'
Interface\AddOns\GW2_UI\hud.lua:303: in function `loadExperienceBar'
Interface\AddOns\GW2_UI\GW2_ui.lua:748: in function <Interface\AddOns\GW2_UI\GW2_ui.lua:720>
This relates to this block of code:
Lua Code:
  1. function gw_artifact_points()
  2.    
  3.     local itemID, altItemID, name, icon, totalXP, pointsSpent, quality, artifactAppearanceID, appearanceModID, itemAppearanceID, altItemAppearanceID, altOnTop = C_ArtifactUI.GetEquippedArtifactInfo();
  4.    
  5.     local numPoints = pointsSpent;
  6.     local xpForNextPoint = C_ArtifactUI.GetCostForPointAtRank(pointsSpent);
  7.     while totalXP >= xpForNextPoint and xpForNextPoint > 0 do
  8.         totalXP = totalXP - xpForNextPoint;
  9.  
  10.         pointsSpent = pointsSpent + 1;
  11.         numPoints = numPoints + 1;
  12.  
  13.         xpForNextPoint = C_ArtifactUI.GetCostForPointAtRank(pointsSpent);
  14.     end
  15.     return numPoints, totalXP, xpForNextPoint;
  16.    
  17. end



And also the following error.
Code:
Message: Interface\AddOns\GW2_UI\hud.lua:924: attempt to index global 'GwMicroButtonHelpMicroButton' (a nil value)
Time: 01/22/18 22:05:16
Count: 1
Stack: Interface\AddOns\GW2_UI\hud.lua:924: attempt to index global 'GwMicroButtonHelpMicroButton' (a nil value)
[C]: ?
Interface\AddOns\GW2_UI\hud.lua:924: in function `create_micro_menu'
Interface\AddOns\GW2_UI\GW2_ui.lua:837: in function <Interface\AddOns\GW2_UI\GW2_ui.lua:720>

Locals:
Which appears to be due to the fact that the Blizzard Help Button isn't in the MicroButton List now
__________________

[SIGPIC][/SIGPIC]
Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
Last edited by Xrystal : 01-22-18 at 04:22 PM.
Report comment to moderator  
Reply With Quote
Unread 01-10-17, 08:19 PM  
DreamsUnderStars
A Defias Bandit

Forum posts: 3
File comments: 105
Uploads: 0
Maybe I'm missing it, but there doesn't seem to be a health/mana bar for Hunter/Warlock pets?
Report comment to moderator  
Reply With Quote
Unread 12-30-16, 06:23 AM  
worzee
A Kobold Labourer

Forum posts: 1
File comments: 5
Uploads: 0
Thank you for this incredible Ui.

This is the best Ui for me.

is it possible to donate ?
Report comment to moderator  
Reply With Quote
Unread 11-26-16, 10:42 AM  
giulindo
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
how to move

Originally Posted by benzy
Hey great but I want to move the frames , I cannot move the target of target frame , any way to move that frame ?
Hit Esc -> Gw2 UI Settings -> move HUD -> click on text to move.
Report comment to moderator  
Reply With Quote
Unread 11-25-16, 05:02 PM  
giulindo
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Tooltip on Mouse

This addon it´s simple amazing... best UI design ever. My gratz!
I can´t play with tooltips on the bottom right of my 29 screen. so I modified tooltip.lua move_tooltip_placemtn function to:
function move_tooltip_placemtn(self)
local x, y = GetCursorPosition();
local effScale = self:GetEffectiveScale();
self:ClearAllPoints();
self:SetPoint("BOTTOMRIGHT",UIParent,"BOTTOMLEFT",(x / effScale),(y / effScale));
--self:ClearAllPoints()
--self:SetPoint("BOTTOMRIGHT", WorldFrame, "BOTTOMRIGHT", 0, 300)
end
Report comment to moderator  
Reply With Quote
Unread 11-08-16, 07:18 AM  
benzy
A Defias Bandit

Forum posts: 3
File comments: 67
Uploads: 0
Hey great but I want to move the frames , I cannot move the target of target frame , any way to move that frame ?
Report comment to moderator  
Reply With Quote
Unread 11-05-16, 11:56 PM  
Jeanice
A Kobold Labourer
AddOn Compiler - Click to view compilations

Forum posts: 0
File comments: 8
Uploads: 2
Quest Tracker!!!

Hallo

Gleich zu Beginn,ich kann leider nicht wirklich gut Englisch,deswegen in Deutsch.

Und zwar geht es um deinen Quest Tracker.

Meine Frage ist halt so...

Kann man diesen Mod bzw Addon irgendwo downloaden?
Warum?
Weil ich gerade dabei bin mir mein eigenes UI zu erstellen.Und ich finde deinen Quest Tracker einfach genial.
Gibt es da irgendwie ne Möglichkeit an dieses Addon bzw diesen Mod herran zukommen?

Wäre echt cool.

Lg
Report comment to moderator  
Reply With Quote
Unread 11-04-16, 10:06 AM  
lil_rena
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Issue

I just recently installed this addon. Absolutely love it. However on one single character whenever I click on a player or npc my fps plummets to unplayable levels. Every other character runs perfectly smooth.
Report comment to moderator  
Reply With Quote
Unread 10-16-16, 05:49 AM  
phi76abc
A Kobold Labourer

Forum posts: 0
File comments: 27
Uploads: 0
Hello,

I've used this addon before and I love it but after a fresh install of WoW and this addon for some reason it doesn't seem to work properly. All I got installed is this and nothing else and my screen looks like this with no error message popping up. Am I doing something wrong?

http://imgur.com/ureppiR
Last edited by phi76abc : 10-16-16 at 05:50 AM.
Report comment to moderator  
Reply With Quote
Unread 10-04-16, 12:29 AM  
Swagrid
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Very awesome UI

Like everyone else just mentioned, awesome UI! Thank you!

The only thing I feel more familiar with is the XIV_Databar which I prefer over your top status bar. Is there a way to turn off the micro menu bar on the top left? I want to be able to use any other status bar mods like the one I mentioned before. If an option "micro menu on/off" is too time-consuming, a hint which lines need an exclude in the corresponding .lua would do it also.

Thank you in advance for your reply.
Last edited by Swagrid : 10-04-16 at 12:37 AM.
Report comment to moderator  
Reply With Quote
Unread 09-27-16, 11:17 PM  
Wyrmling
A Kobold Labourer

Forum posts: 0
File comments: 10
Uploads: 0
Very nice UI - thx for this.

But still got some problems / errors, so here some suggestions and feedback:

1) Is there a clock? Would be nice to have one permanent on display - nvm, found it ^^

2) After installation ui is perfect for some chars, for other chars the blizzard bags are displayed over the GW Bag (sometimes when i change or move smthg, it does so for previously working chars, too and i have to delete cache and WTF folder to get it working again). --> is a problem of „moveanything”. Thought i had it deactivated. So problem solved.

3) Would it be possible, to add the own char to the group-display (optionable) - better for healers.

4) Would be nice to be able to sort raid in groups. We had 14 People in 3 groups ... Group one to point A, group two to point B... GW-UI displayed a 4x4 grid

5) Questtracker is great, but needs to be resizable big, half screen, just the top lines (dungeon) and off while moving actionbars to the border (would be nice with button on the tracker).

6) Tracker produces lua error with timer from mythic+ timer.

Thanks again for a nice ui
Last edited by Wyrmling : 09-30-16 at 11:07 PM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.