Page 41 of 152

Re: [UI] VinyUI

Posted: Sun Aug 05, 2018 2:31 pm
by Telperien
May I ask how did you manage to add College sc to Warboard QQ addon? I tried it for some time and couldnt create extra tickable box.

Re: [UI] VinyUI

Posted: Sun Aug 05, 2018 2:41 pm
by Caffeine
Telperien wrote: Sun Aug 05, 2018 2:31 pm May I ask how did you manage to add College sc to Warboard QQ addon? I tried it for some time and couldnt create extra tickable box.

In QueueQueuer.lua you need to update QueueQueuer_SavedVariables and QueueQueuer.ScenarioNames to include the new IDs and names (I've added a comment block with IDs I got from running a for loop on GetScenarioName(index)).

After that you add a new checkbox in QueueQueuer_GUI_TabTier4.xml like so:

Code: Select all

	<!-- The Ironclad -->
        <Window name="$parent_BlacklistCheckBox36" inherits="BlacklistCheckBox" id="36">
          <Anchors>
            <Anchor point="bottomleft" relativePoint="topleft" relativeTo="$parent_BlacklistCheckBox35">
              <AbsPoint x="0" y="5" />
            </Anchor>
          </Anchors>
        </Window>

Re: [UI] VinyUI

Posted: Sun Aug 05, 2018 3:14 pm
by Telperien
My bad, I couldnt create extra checkbox so I tried utilise sc we dont have yet and replace its ID and name. All I got a mess:)

Re: [UI] VinyUI

Posted: Mon Aug 06, 2018 4:03 pm
by Dalgrimar
Whats the enemy health bar above head called?

Re: [UI] VinyUI

Posted: Mon Aug 06, 2018 7:21 pm
by Telperien
Its Effigy.

Re: [UI] VinyUI

Posted: Mon Aug 20, 2018 10:15 pm
by Xergon
Caffeine wrote: Tue Jul 31, 2018 3:06 pm
Xergon wrote: Tue Jul 31, 2018 2:41 pm How to make Hotbar3 not hided/invisible, i tried remove HideBar folder but didnt work, still cant see Hotbar3 ?

See this post: viewtopic.php?f=66&t=6371&start=370#p293358

It doesn't work, i mean, with /hidebar command i can make it visible all the time (i assume command /hidebar disable/reset it) but it only last till zone change or relog, after that it goes invisible again. I tried to delete/disable addon completly, but then whole bar disappear.

Re: [UI] VinyUI

Posted: Tue Aug 21, 2018 3:48 am
by Mire
/hidebar 3 should work.

Also /tb allows you to adjust a lot of hot bar details.

Somehow i managed to make my hotbar 3 stay visible but it took a lot of tinkering to fix it.

Re: [UI] VinyUI

Posted: Tue Aug 21, 2018 7:06 am
by Xergon
as i said... /hidebar command make it visible but it last only till zone change or relog, it does not save settings for some reason, i even tried to change it to hide other bar, same result.

and /tb has nothing to do with "visibility" of that bar

Re: [UI] VinyUI

Posted: Wed Aug 22, 2018 3:20 am
by Telperien
Xergon wrote: Tue Aug 21, 2018 7:06 am as i said... /hidebar command make it visible but it last only till zone change or relog, it does not save settings for some reason, i even tried to change it to hide other bar, same result.

and /tb has nothing to do with "visibility" of that bar
I had few addons that didnt save their possition or settings after relog/log off.
I found that when you place in their XXX.xml file the line : savesettings="true" it saves.
The problem with hidebar is that has no xml file in interface/addons/hidebar/ there usually that line goes, but instead has got xml file in user/settings/martyr square/XXX/XXX/hidebar (XXX is a character name).
So you got 2 ways of fixing it.

1- get rid of hidebar anyway, cause you dont want it to hide anything:
Remove Hidebar from interface/addons/, log into game, find layout edition, start editing, press load defaults and press NO on exiting. That will temporary reset all UI to default settings, pressing NO will make it goes back to settings before.
Let us know did it work.

2. Edit xml file in user/settings/martyr square/XXX/XXX/hidebar/ where XXX is your PROFILE character you share presets from. (the source of profile you using on other characters - not only the character you usually play now) and edit and save ModSettings.xml:

Code: Select all

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<UiModuleSettings xmlVersion="1.0" enabled="true" lastLoadedVersion="1.2" messagingEnabled="false">
    <VersionSettings xmlVersion="1.0" gameVersion="1.4.8" windowsVersion="" savedVariablesVersion="" />
    <Windows>
               <Window savesettings="true">
    <Windows />
</UiModuleSettings>
Let us know did it work.

Re: [UI] VinyUI

Posted: Wed Aug 22, 2018 6:50 am
by Xergon
Telperien wrote: Wed Aug 22, 2018 3:20 am
Xergon wrote: Tue Aug 21, 2018 7:06 am as i said... /hidebar command make it visible but it last only till zone change or relog, it does not save settings for some reason, i even tried to change it to hide other bar, same result.

and /tb has nothing to do with "visibility" of that bar
I had few addons that didnt save their possition or settings after relog/log off.
I found that when you place in their XXX.xml file the line : savesettings="true" it saves.
The problem with hidebar is that has no xml file in interface/addons/hidebar/ there usually that line goes, but instead has got xml file in user/settings/martyr square/XXX/XXX/hidebar (XXX is a character name).
So you got 2 ways of fixing it.

1- get rid of hidebar anyway, cause you dont want it to hide anything:
Remove Hidebar from interface/addons/, log into game, find layout edition, start editing, press load defaults and press NO on exiting. That will temporary reset all UI to default settings, pressing NO will make it goes back to settings before.
Let us know did it work.

2. Edit xml file in user/settings/martyr square/XXX/XXX/hidebar/ where XXX is your PROFILE character you share presets from. (the source of profile you using on other characters - not only the character you usually play now) and edit and save ModSettings.xml:

Code: Select all

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<UiModuleSettings xmlVersion="1.0" enabled="true" lastLoadedVersion="1.2" messagingEnabled="false">
    <VersionSettings xmlVersion="1.0" gameVersion="1.4.8" windowsVersion="" savedVariablesVersion="" />
    <Windows>
               <Window savesettings="true">
    <Windows />
</UiModuleSettings>
Let us know did it work.

First step worked, 2nd didn't because new version of HideBar doesnt allow to use command w/o number so it only let choose between /hidebar 1-5, which means, if u have addon on u no longer can make bar visible whenever u want.
Overall, thanks for help, 1st step worked !