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

Red Eagle LXIX's A17 Modlet Collection (UI, Blocks, Quests)

Great Work, thx for that, i mostly did it manually in entityclasses.xml. More Comfortable Now.
Thanks, possible to do that now without DLL mods since TFP put DropOnDeath and other options as set-able via the XUi system.

 
Any ideas on how to install on a Ping Perfect hosted server? Without combining the files manually, there isn't a mod folder or the same structure on the server side per any install instructions for mods.

 
Any ideas on how to install on a Ping Perfect hosted server? Without combining the files manually, there isn't a mod folder or the same structure on the server side per any install instructions for mods.
NM, just creating a Mods folder on the top level worked great.

 
For the latest build (b208) the numbers for food, water, health and stam do not show inside the bars. May be a bug for me, i dunno.

 
I installed your UI mod and it wiped out all the experience gains we had made on the server. Everyone is level 1 now. :(

 
For the latest build (b208) the numbers for food, water, health and stam do not show inside the bars. May be a bug for me, i dunno.
Perhaps you also installed some of the 'Zee No' mods. Sounds like you installed 'Zee No PlayerStatNumbers'

- - - Updated - - -

I installed your UI mod and it wiped out all the experience gains we had made on the server. Everyone is level 1 now. :(
Nothing here even touches any such area. Outside of a bug in the game itself, not possible.

 
You think it could have been the shorten quest chain mod?
My experience that only causes issue for users actively in that quest chain (i.e have not completed it). The only issue it causes is null reference exceptions due to it removing quests the chain would look for if they were in the middle of said chain. (Example on Basic Survival 4, add mod, 4 no longer exists, user gets stuck with null reference exceptions due to that part of the chain being removed).

That said, anything is possible.

 
Adding Requested Modlet:RELXIX_UIMENU_MoreDayLengthOptions -- the option 2,4,6,8,10,20,22 hours as Day Light Length options for those who want really short or really long days.
Thanks to this little modlet, I was able to learn where I needed to look to modify how long a day lasts. So I added the following code line to add 180 minute and 240 minute days which I remember enjoying the 240 minute days back when they were an option. I play single player only so having something help me have time to build up a base to survive blood moons is very good. Personally, I think 180 minute is likely to be my sweet spot but I remember a lot of people complaining of no longer having the 240 minute days. If you want to add this line to your modlet or create a new one for it, it's fine by me. :)

Code:
	<set xpath=	"/windows/window[@name='newContinueGame']/rect[@name='tabs']/rect[@name='tabsContents']/rect[@tab_key='Basic']/grid/gameoption[@name='DayNightLength']/@values">10, 20, 30, 40, 50, 60, 90, 120, 180, 240</set>
 
Thanks to this little modlet, I was able to learn where I needed to look to modify how long a day lasts. So I added the following code line to add 180 minute and 240 minute days which I remember enjoying the 240 minute days back when they were an option. I play single player only so having something help me have time to build up a base to survive blood moons is very good. Personally, I think 180 minute is likely to be my sweet spot but I remember a lot of people complaining of no longer having the 240 minute days. If you want to add this line to your modlet or create a new one for it, it's fine by me. :)

Code:
	<set xpath=	"/windows/window[@name='newContinueGame']/rect[@name='tabs']/rect[@name='tabsContents']/rect[@tab_key='Basic']/grid/gameoption[@name='DayNightLength']/@values">10, 20, 30, 40, 50, 60, 90, 120, 180, 240</set>
Already planning on this, more options for Block Durability, and more options for Loot percentage. Just need time (weekend). Plus I want to move everything to Github.

 
giphy.gif


Thank you most of all for this:

Adding Requested Modlet:RELXIX_UIMENU_MoreDayLengthOptions -- the option 2,4,6,8,10,20,22 hours as Day Light Length options for those who want really short or really long days.
 
Trying to get the playerstats hud to work you have here ...

ive added your code in to the data/config/xui/xui.xml and windows.xml

(server side)

but its not working, am i missing something? sounded like a fairly straight forward mod ...

 
Trying to get the playerstats hud to work you have here ... ive added your code in to the data/config/xui/xui.xml and windows.xml

(server side)

but its not working, am i missing something? sounded like a fairly straight forward mod ...
My suggestion: Create Mods folder, and just copy the mods there instead of trying manually merge. This is the way most mods work now, you can't just copy from these files into the main files.

The server will automatically use the directives in these files to merge with the installed files.

So for that particular mod on a dedicated server you should have:

Code:
7 Days To Die Dedicated Server\Mods\RELXIX_UI_PlayerStats
7 Days To Die Dedicated Server\Mods\RELXIX_UI_PlayerStats\ModInfo.xml
7 Days To Die Dedicated Server\Mods\RELXIX_UI_PlayerStats\Config
7 Days To Die Dedicated Server\Mods\RELXIX_UI_PlayerStats\Config\XUi
7 Days To Die Dedicated Server\Mods\RELXIX_UI_PlayerStats\Config\XUi\windows.xml
7 Days To Die Dedicated Server\Mods\RELXIX_UI_PlayerStats\Config\XUi\xui.xml
Hope that helps.

 
Last edited by a moderator:
My suggestion: Create Mods folder, and just copy the mods there instead of trying manually merge. This is the way most mods work now, you can't just copy from these files into the main files.The server will automatically use the directives in these files to merge with the installed files.

So for that particular mod on a dedicated server you should have:

Code:
7 Days To Die Dedicated Server\Mods\RELXIX_UI_PlayerStats
7 Days To Die Dedicated Server\Mods\RELXIX_UI_PlayerStats\ModInfo.xml
7 Days To Die Dedicated Server\Mods\RELXIX_UI_PlayerStats\Config
7 Days To Die Dedicated Server\Mods\RELXIX_UI_PlayerStats\Config\XUi
7 Days To Die Dedicated Server\Mods\RELXIX_UI_PlayerStats\Config\XUi\windows.xml
7 Days To Die Dedicated Server\Mods\RELXIX_UI_PlayerStats\Config\XUi\xui.xml
Hope that helps.
I did not know this, this sounds like such an easier way to mod !!

So I followed your suggestion and defaulted my edited server files ..

I now have it

Code:
7daystodie/Mods/RELXIX_UI_MenuStats/Config/XUi/windows.xml
7daystodie/Mods/RELXIX_UI_MenuStats/Config/XUi/xui.xml
however, no change. this seems like a fairly straight forward mod to preform,

i must be missing something simple on thinking about it to much

 
I did not know this, this sounds like such an easier way to mod !!
So I followed your suggestion and defaulted my edited server files ..

I now have it

Code:
7daystodie/Mods/RELXIX_UI_MenuStats/Config/XUi/windows.xml
7daystodie/Mods/RELXIX_UI_MenuStats/Config/XUi/xui.xml
however, no change. this seems like a fairly straight forward mod to preform,

i must be missing something simple on thinking about it to much
Be sure you have a ModInfo.xml : Mods/RELXIX_UI_MenuStats/ModInfo.xml

 
Back
Top