Sure. The problem I had was that I was only changing it in one lua which I
thought was the right one.
The lua files are located within
F:\Gameback\ReturnOfReckoning\Warhammer Online - Age of Reckoning\user\settings\Martyrs Square\ToonNAME\VinyUI replace f:\gameback with your equivalent like c:\program files etc etc.
and then obviously each subfolder is the addon.
So, the first file was the
SavedVariables.lua inside the
EASystem_ActionBarClusterManager folder.
I was trying to make sure that Action Bar 3 was vertical so the portion of code responsible is
Code: Select all
EA_ActionBar3 =
{
scale = 0.93,
columns = 1,
modificationSettings =
{
true,
true,
},
barId = 3,
buttonXSpacing = 0,
buttonXPadding = 6,
buttonYSpacing = 0,
show = true,
buttonYPadding = 5,
showEmptySlots = 46,
caps = false,
buttonFactory = "ActionButton",
background = false,
buttonCount = 12,
selector = 44,
},
Columns need to be set at 1 (it defaults to 12), if you have less buttons than the default 12 make note too.
Then, importantly, the second file that needs changing as well is the
SavedVariables.lua inside the
SNT_BUTTONS folder.
The relevant snippet of code (for action bar 3) is the third section that looks like
Code: Select all
{
y = 0,
x = 0,
columns = 1,
buttons = 12,
preset = 3,
empty = true,
page = 44,
back = false,
},
Again, the columns here needs to agree with what you have in the first lua file, so columns = 1. Also make sure the button count also agrees if you don't use a full bar. There are 5 of these sections, in order, which relate to actionbars 1-5 respectively.
Once BOTH these lua's agree, then you can have the 1 column vertical bar.