|
Technical Support Ask for help or find solutions about ShestakUI. |
Advertising | |
|
Thread Tools |
![]() |
#1 | |||||
|
Is there a way we could add the gold there instead of the bags.
|
|||||
![]() |
#1.5 - Disable Ads |
|
![]() |
#2 |
|
ShestakUI\Config\DataText.lua(~211 line):
Code [Select]:
-- Bags block Gold = { enabled = true, style = 1, -- Display styles: [1] 55g 21s 11c [2] 8829.4g [3] 823.55.94 anchor_frame = "StuffingFrameBags", anchor_to = "right", anchor_from = "topright", x_off = -25, y_off = -13, tip_anchor = "ANCHOR_BOTTOMLEFT", tip_x = -3, tip_y = 17 }, For example, if reputation/experience stats is on, and should be placed slightly to the right: Code [Select]:
-- Bags block Gold = { enabled = true, style = 1, -- Display styles: [1] 55g 21s 11c [2] 8829.4g [3] 823.55.94 anchor_frame = "Experience", anchor_to = "left", anchor_from = "right", x_off = 3, y_off = 0, tip_anchor = "ANCHOR_BOTTOMLEFT", tip_x = -3, tip_y = 17 }, |
![]() |
#3 |
|
I usually use this option:
Code [Select]:
Gold = { enabled = true, style = 1, -- Display styles: [1] 55g 21s 11c [2] 8829.4g [3] 823.55.94 anchor_frame = "Location", anchor_to = "right", anchor_from = "left", x_off = C.stats.coords and -9 or 0, y_off = 0, tip_frame = "UIParent", tip_anchor = "BOTTOMRIGHT", tip_x = -21, tip_y = 20 }, |
![]() |
#4 |
|
cool. Thank both of u.
|