View Single Post
06-13-17, 01:28 PM   #6
Sebastian741
An Aku'mai Servant
Join Date: Aug 2012
Posts: 34
Sure,
\\World of Warcraft\Interface\AddOns\nibRealUI\HuD\UnitFrames\UnitFrames.lua

units = {
-- Eventually, these settings will be used to adjust unit frame size.
player = {
size = {x = 259, y = 28},
position = {x = 0, y = 0},
healthHeight = 0.6, --percentage of the unit height used by the healthbar
},
target = {
size = {x = 259, y = 28},
position = {x = 0, y = 0},
healthHeight = 0.6, --percentage of the unit height used by the healthbar
},
},

Ive changed 259 to 249 and 28 to 23

not the same as before but close.

For castbars i know where it is, but didnt change anything

\\World of Warcraft\Interface\AddOns\nibRealUI\HuD\CastBars.lua

function CastBars:OnInitialize()
self.db = RealUI.db:RegisterNamespace(MODNAME)
self.db:RegisterDefaults({
profile = {
reverse = {
player = true,
target = false,
},
player = {
size = {x = 230, y = 8},
position = {x = 0, y = 0},
icon = 28,
debug = false
},
target = {
size = {x = 230, y = 8},
position = {x = 0, y = 0},
icon = 28,
debug = false
  Reply With Quote