• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

A17 Simple UI Modlets

Unless I'm understanding this wrong since I updated the UI from your last update the numbers for food and water do not change from the 97 and 83 shown, even though the character stats show 110 and 105. I have eaten and drank, to watch the character stats numbers increase, but not those on the UI.
For some reason inserting an image is not working......

https://imgur.com/a/WhX8CLT
I think latest versions all have a toggle. Dont see one on your screenshot. You on 1.6?

Cheers

 
Thanks so very much for your work on this mod. I've been needing larger storage boxes and now I have them. You are a god among men :tickled_pink:

 
Just a minor request... On your first page near the links to the mods could you add the newest mod version so it's easier to tell if I've got the latest update of the mod? Thanks for your awesome work and time!!!

 
Just a minor request... On your first page near the links to the mods could you add the newest mod version so it's easier to tell if I've got the latest update of the mod? Thanks for your awesome work and time!!!
Version numbers were added next to the download links ;)

 
First of all, thank you for your fantastic work. :smile-new:

In the MOD "S420_SimpleUI-Toolbelt" is it possible to insert the value "playerxptonextlevel" instead of "playerdeaths"?

I did some tests, but how do I insert the "EquipmentStackGrid" controller.

 
Hi.

Is it posibly to make the detailed food/water in the Simple UI Left HUD Buff Timers as default so i don't have to switch it ??

 
Hi.
Is it posibly to make the detailed food/water in the Simple UI Left HUD Buff Timers as default so i don't have to switch it ??
Unfortunately that is not possible due to the way the CharacterFrameWindow controller works currently. It would require either a DLL mod or SDX patch script.

It only updates once on first load, or every .25 seconds after clicking the button to turn on stats. There is no way to tell it to start in Stats mode and as the below code demonstrates if it is in Character tab mode, it doesn't update (must be stats mode):

Code:
        if ((this.currentTab != Tabs.Character) && (Time.time > this.updateTime))
       {
           this.updateTime = Time.time + 0.25f;
           base.RefreshBindings(this.isDirty);
       }
I posted about this in dev discussions and even asked on the side if maybe someone would remove this portion '(this.currentTab != Tabs.Character) && ' which would then allow it to always update. As such the compromise is to start less detailed, and require a button press.

Thanks for asking though, I should put this information in my thread as well.

 
Last edited by a moderator:
Unfortunately that is not possible due to the way the CharacterFrameWindow controller works currently. It would require either a DLL mod or SDX patch script. It only updates once on first load, or every .25 seconds after clicking the button to turn on stats. There is no way to tell it to start in Stats mode and as the below code demonstrates if it is in Character tab mode, it doesn't update (must be stats mode):

Code:
        if ((this.currentTab != Tabs.Character) && (Time.time > this.updateTime))
       {
           this.updateTime = Time.time + 0.25f;
           base.RefreshBindings(this.isDirty);
       }
I posted about this in dev discussions and even asked on the side if maybe someone would remove this portion '(this.currentTab != Tabs.Character) && ' which would then allow it to always update. As such the compromise is to start less detailed, and require a button press.

Thanks for asking though, I should put this information in my thread as well.

That saddens me, but thank for the explanation. DLL modding is a bit out of my scope at the moment

 
Hi, I have a problem since the last update of the game. If I install any mod, be it the HUD or anything else, the screen stays in loading UI and I do not load the game, I have tried everything and there is no way to fix it. Does anyone know how to solve this problem?

 
Hi, I have a problem since the last update of the game. If I install any mod, be it the HUD or anything else, the screen stays in loading UI and I do not load the game, I have tried everything and there is no way to fix it. Does anyone know how to solve this problem?
I found that the left hud no buff works fine but something about the buff bugs it out as you stated. I had this issue yesterday when trying to update left side hud no buff to the one with the buff.

 
I found that the left hud no buff works fine but something about the buff bugs it out as you stated. I had this issue yesterday when trying to update left side hud no buff to the one with the buff.
thanks for the answer, but still giving me the same problem

 
Hi, I have a problem since the last update of the game. If I install any mod, be it the HUD or anything else, the screen stays in loading UI and I do not load the game, I have tried everything and there is no way to fix it. Does anyone know how to solve this problem?
What's your install path or where did you install them to? Any chance you could provide your output log?

I found that the left hud no buff works fine but something about the buff bugs it out as you stated. I had this issue yesterday when trying to update left side hud no buff to the one with the buff.
All is still working fine here any chance you had more than one left hud installed?

 
What's your install path or where did you install them to? Any chance you could provide your output log?



All is still working fine here any chance you had more than one left hud installed?
I double checked and nope. Maybe there was another conflict I was not aware but the game DID load after I switched out the hud mods. But I could have missed something, which LOL with me being software illiterate for the most is highly likely. ;P

 
I double checked and nope. Maybe there was another conflict I was not aware but the game DID load after I switched out the hud mods. But I could have missed something, which LOL with me being software illiterate for the most is highly likely. ;P
Sweet glad to here all is working for you now :thumb:

 
Not working for me or my friend. We have added S420_SimpleUI-LeftHUD-BuffTimers.

Put the 2 files in this location.

SteamLibrary\SteamApps\common\7 Days To Die\Data\Config\XUi

I see no new UI to the left. =/

 
Not working for me or my friend. We have added S420_SimpleUI-LeftHUD-BuffTimers.
Put the 2 files in this location.

SteamLibrary\SteamApps\common\7 Days To Die\Data\Config\XUi

I see no new UI to the left. =/
You need to make a Mods folder and copy the modlet to it. To make it work.

 
Not working for me or my friend. We have added S420_SimpleUI-LeftHUD-BuffTimers.
Put the 2 files in this location.

SteamLibrary\SteamApps\common\7 Days To Die\Data\Config\XUi

I see no new UI to the left. =/
All you need to do is extract the Mods folder to your 7 Days To Die installation directory "\steamapps\common\7 Days To Die"

So when finished it would look like

SteamLibrary\SteamApps\common\7 Days To Die\Mods\S420_SimpleUI-LeftHUD-BuffTimers

 
All you need to do is extract the Mods folder to your 7 Days To Die installation directory "\steamapps\common\7 Days To Die"
So when finished it would look like

SteamLibrary\SteamApps\common\7 Days To Die\Mods\S420_SimpleUI-LeftHUD-BuffTimers
Ah, didn't know the whole folder was needed. I will try to read more before I do anything again. Thank you!

 
I just wanted to say thank you so much for your hard work :applouse: i can not play the game with out your HUD and Compass :whoo:

 
Back
Top