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

0XP RolMod A18

0XP is now compatible with A18 with the following known issues:

The xp bar annoyingly turns red because of the new death penalty of losing xp. Since we never earn xp this red bar will never go away. It doesn't really matter but it is annoying. I tried removing the penalty but it seems to be hardcoded in or at least aspects of it are. Instead, I will be working on removing the xp bar from the HUD. Any help on how to remove the bar would be appreciated.

I've trimmed a lot of fat since A17. I was experimenting with different things but for A18 I wanted to just keep to the core idea of 0xp. So please feel free to try other modlets with this pack if you want additional features.

I do plan on increasing biome spawning soon.

 
WHAT THE HELL.....

Roland made a mod. The world is really ending isnt it lol Crap I need my survival pack pronto.....

Haha awesome stuff Roland....

 
0XP is now compatible with A18 with the following known issues:
The xp bar annoyingly turns red because of the new death penalty of losing xp. Since we never earn xp this red bar will never go away. It doesn't really matter but it is annoying. I tried removing the penalty but it seems to be hardcoded in or at least aspects of it are. Instead, I will be working on removing the xp bar from the HUD. Any help on how to remove the bar would be appreciated.

I've trimmed a lot of fat since A17. I was experimenting with different things but for A18 I wanted to just keep to the core idea of 0xp. So please feel free to try other modlets with this pack if you want additional features.

I do plan on increasing biome spawning soon.
You can remove the XP debt, because I did it.

I'll go find my code for you :)

EDIT: Ok, looks like they changed something. What you can do is steal the code from NewbieCoat, which is this.

Code:
		<effect_group>
		<requirement name="PlayerLevel" operation="LTE" value="5"/>
			<passive_effect name="ExpDeficitPerDeathPercentage" operation="base_set" value="0"/>
			<passive_effect name="ExpDeficitMaxPercentage" operation="base_set" value="0"/>
	</effect_group>
In theory, if you just add this to buffStatusCheck01...

Code:
		<effect_group>
		<passive_effect name="ExpDeficitPerDeathPercentage" operation="base_set" value="0"/>
		<passive_effect name="ExpDeficitMaxPercentage" operation="base_set" value="0"/>
	</effect_group>
...then it should stop XP debt completely. :) You can also add it directly to playerMale in entityclasses and that should work.

 
Last edited by a moderator:
What is the food poisoning percentage supposed to be? So far, I have cooked 12 items (charred meat and eggs and bacon) and found 1 blue berry pie. Out of those 13 cooked food items, got sick 11 times. Seems to be a lot higher chance then 4%.

 
What is the food poisoning percentage supposed to be? So far, I have cooked 12 items (charred meat and eggs and bacon) and found 1 blue berry pie. Out of those 13 cooked food items, got sick 11 times. Seems to be a lot higher chance then 4%.
Dang....that's ironic given my recent posts...lol. You're not trolling me are you?

I never touched food poisoning. Wierd. I'll take a look.

EDIT: All the food items that are supposed to have: name="dFoodPoisoningRisk" value=".04"

like they should in their code so it was a case of the RNG getting stuck or something.

Try starting a new game using the same map and CM about 30 boiled eggs and start chowing down and see what results you get. I did in a new game and vomited twice trying to eat 30 boiled eggs (3 stacks).

If you are still vomiting a lot then for science try eating a vitamin and then eat more and see if it makes a difference.

 
Last edited by a moderator:
Changed: Removed XP bar from HUD using Red Eagle's modlet made for that very purpose. Thanks to Red Eagle for permission to include his modlet in my pack.

 
Changed: Removed XP bar from HUD using Red Eagle's modlet made for that very purpose. Thanks to Red Eagle for permission to include his modlet in my pack.
Link please to modelet, I was going to try and figure out how to get rid of it with xml but a modlet would be a lot faster and easier. thanks in advance.

 
Thanks for the fast reply. I found what was causing it. I had stalliondens "remove food poison" modlet installed. removed it and started feeling better right away. seems like that modlet had the exact opposite effect

 
Change: Added Trolland's Moar Zombies which increases both biome spawns and wandering horde counts. Based on JrBarrio's modlet that I used for the A17.4 version. I updated it and changed it slightly so that that not only are there more zombies in general during the day, there are even more at night to simulate that the zombies are more active in general during the lunar influence. You can still move around at night but pay attention because it is crowded....

 
Change: Added Trolland's Moar Zombies which increases both biome spawns and wandering horde counts. Based on JrBarrio's modlet that I used for the A17.4 version. I updated it and changed it slightly so that that not only are there more zombies in general during the day, there are even more at night to simulate that the zombies are more active in general during the lunar influence. You can still move around at night but pay attention because it is crowded....

Love it! You are officially the reason I came back to the game. Vanilla is unplayable IMHO.

I did notice one thing. No skillpoints when locating trader. Intended? If so I suggest that you add a few points somewhere, starting of totally naked is hard af. Imo 5 points or so makes it a smoother start.

 
I will look at that next. The way they changed the starter quests completely messed up my starter quest mod. I like their change but now I do need to re-introduce some starting skillpoints. Thanks for the feedback and the kind words.

 
Added: 4 Skillpoint reward upon completion of the tutorial quest chain

In your mods folder find "Roland's Zero-xp progression" modlet and then go into the "quests" xpath file in the configs folder. You should easily see the line for giving 4 skillpoints for doing the final quest in the training quest chain. Simply change that number to whatever pleases you for a starting amount of skillpoints if you feel that 4 is either too much or too little. :)

 
Back
Top