Jump to content

Alpha 18 Dev Diary!!


madmole

Alpha 18 Dev Diary!!  

3 members have voted

  1. 1. Alpha 18 Dev Diary!!

    • A18 Stable is Out!
      2
    • :)
      1


Recommended Posts

Seafood Chowder Recipe:

<recipe name="foodSeafoodChowder count="1" craft_area="campfire" craft_tool="toolCookingPot" tags="learnable">

<ingredient name="foodCanSalmon" count="1"/>

<ingredient name="foodCanTuna" count="1"/>

<ingredient name="foodCornCob" count="2"/>

<ingredient name="drinkBottledWater" count="2"/>

<ingredient name="foodCornMeal" count="2"/>

</recipe>

 

- - - Updated - - -

 

"Magic Mushrooms" Recipe:

<recipe name="Magic Mushrooms" count="1" craft_area="campfire" craft_tool="toolCookingPot" tags="learnable">

<ingredient name="foodMushroom" count="10"/>

<ingredient name="foodJarofHoney" count="1"/>

<ingredient name="foodCanofMiso" count="1"/>

<ingredient name="foodShamSandwhich" count="2"/>

</recipe>

 

jar of acid?

Link to comment
Share on other sites

Regarding biomes...and I'm probably banging my head against a wall here but, the winter biome makes no sense. Like suddenly right beside the hot sandy desert, there's 1-2 metres of snow covering the ground? Nah. I realize it can snow it the desert, but it's either very light snow that burns off or it's found at higher elevations. So remove winter biome, and just make it snow when the temp gets low enough (has the added benefit of giving the player a visual clue that they should bundle up before going out), and/or make it a sub-biome that only gets created in the upper 25m before hitting the world ceiling.

Link to comment
Share on other sites

If were talking recipes can we add these basic ones first:

 

<insertAfter xpath="/recipes/recipe[@name=foodBoiledMeat]" >

<recipe name="foodONEBoiledMeat" count="1" craft_area="campfire" craft_tool="toolCookingPot" tags="learnable">

<ingredient name="foodRawMeat" count="1"/>

<ingredient name="drinkJarBoiledWater" count="1"/>

</recipe>

</insertAfter>

 

<insertAfter xpath="/recipes/recipe[@name=foodCharredMeat]" >

<recipe name="foodONECharredMeat" count="1" craft_area="campfire">

<ingredient name="foodRawMeat" count="1"/>

</recipe>

</insertAfter>

 

<insertAfter xpath="/recipes/recipe[@name=foodGrilledMeat]" >

<recipe name="foodONEGrilledMeat" count="1" craft_area="campfire" craft_tool="toolCookingGrill" >

<ingredient name="foodRawMeat" count="1"/>

</recipe>

</insertAfter>

 

 

<item name="foodONECharredMeat">

<property name="HoldType" value="31"/>

<property name="DisplayType" value="foodWater"/>

<property name="Meshfile" value="Items/Misc/parcelPrefab"/>

<property name="DropMeshfile" value="Items/Misc/sack_droppedPrefab"/>

<property name="Material" value="Morganic"/>

<property name="Stacknumber" value="250"/>

<property name="EconomicValue" value="4"/>

<property class="Action0">

<property name="Class" value="Eat"/>

<property name="Delay" value="0.3"/>

<property name="Use_time" value="..."/>

<property name="Sound_start" value="player_eating"/>

</property>

<property name="Group" value="Food/Cooking"/>

 

<effect_group tiered="false">

<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$foodAmountAdd" operation="add" value="2"/>

<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyStats" stat="water" operation="subtract" value="1"/>

<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="foodHealthAmount" operation="add" value="1"/>

<triggered_effect trigger="onSelfPrimaryActionEnd" action="AddBuff" target="self" buff="buffProcessConsumables"/>

<display_value name="waterAmount" value="-1" />

</effect_group>

<property name="CustomIcon" value="foodONECharredMeat" />

</item>

 

<item name="foodONEGrilledMeat">

<property name="HoldType" value="31"/>

<property name="DisplayType" value="food"/>

<property name="Meshfile" value="Items/Misc/parcelPrefab"/>

<property name="DropMeshfile" value="Items/Misc/sack_droppedPrefab"/>

<property name="Material" value="Morganic"/>

<property name="Stacknumber" value="250"/>

<property name="EconomicValue" value="5"/>

<property class="Action0">

<property name="Class" value="Eat"/>

<property name="Delay" value="0.3"/>

<property name="Use_time" value="..."/>

<property name="Sound_start" value="player_eating"/>

</property>

<property name="Group" value="Food/Cooking"/>

 

<effect_group tiered="false">

<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$foodAmountAdd" operation="add" value="2"/>

<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="foodHealthAmount" operation="add" value="1"/>

<triggered_effect trigger="onSelfPrimaryActionEnd" action="AddBuff" target="self" buff="buffProcessConsumables"/>

</effect_group>

<property name="CustomIcon" value="foodONEGrilledMeat" />

</item>

 

<item name="foodONEBoiledMeat">

<property name="HoldType" value="31"/>

<property name="DisplayType" value="foodWater"/>

<property name="Meshfile" value="Items/Misc/parcelPrefab"/>

<property name="DropMeshfile" value="Items/Misc/sack_droppedPrefab"/>

<property name="Material" value="Morganic"/>

<property name="Stacknumber" value="250"/>

<property name="EconomicValue" value="10"/>

<property class="Action0">

<property name="Class" value="Eat"/>

<property name="Delay" value="0.3"/>

<property name="Use_time" value="..."/>

<property name="Sound_start" value="player_eating"/>

</property>

<property name="Group" value="Food/Cooking"/>

 

<effect_group tiered="false">

<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$foodAmountAdd" operation="add" value="2"/>

<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$waterAmountAdd" operation="add" value="2"/>

<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="foodHealthAmount" operation="add" value="3"/>

<triggered_effect trigger="onSelfPrimaryActionEnd" action="AddBuff" target="self" buff="buffProcessConsumables"/>

</effect_group>

<property name="CustomIcon" value="foodONEBoiledMeat" />

</item>

</append>

 

 

Its ... please can we just do something with all that meat that is not ( X % 5 = 0 )

trying to not get anyone's hackles up here.

Link to comment
Share on other sites

Seafood Chowder Recipe:

<recipe name="foodSeafoodChowder count="1" craft_area="campfire" craft_tool="toolCookingPot" tags="learnable">

<ingredient name="foodCanSalmon" count="1"/>

<ingredient name="foodCanTuna" count="1"/>

<ingredient name="foodCornCob" count="2"/>

<ingredient name="drinkBottledWater" count="2"/>

<ingredient name="foodCornMeal" count="2"/>

</recipe>

 

- - - Updated - - -

 

 

 

jar of acid?

 

Good idea, changing it now

Link to comment
Share on other sites

Not sure if this is done, but when you do post screenshots or do a video of RWG, could you let us know the seed name/type? Whenever it comes to map generation it would just help to have a starting point (particularly if you find a good town or city) that could be explored and built upon.

 

I don't think it will matter as much IMO.

Link to comment
Share on other sites

no Shepard pie is typically ground lamb under a bed of mashed potatoes. people then add corn or carrots and other things to the meat section. It has also become popular to used ground beef instead of lamb.

 

We do have that can of lamb yet I think so it sounds like a winner.

Link to comment
Share on other sites

Dear, Joel...

(I'm addressing You this way because i want to emphasize that i don't want to make You angry about the language barrier in any way).

Maybe, You just have not enough imagination :) ?

 

With respect!

 

It's not really a case of imagination. Depending on how you categorize it there are only between six to twelve basic terrain types in real life, everything else is either a variation or mix of these.

 

It's been a while so I'm a little rusty but shaders like to work with groups of four textures for technical reasons, adding another group of four textures makes the shader about twice as slow. A decision was made to drop two textures to speed up the terrain shader.

 

The decision was entirely practical.

Link to comment
Share on other sites

Regarding biomes...and I'm probably banging my head against a wall here but, the winter biome makes no sense. Like suddenly right beside the hot sandy desert, there's 1-2 metres of snow covering the ground? Nah. I realize it can snow it the desert, but it's either very light snow that burns off or it's found at higher elevations. So remove winter biome, and just make it snow when the temp gets low enough (has the added benefit of giving the player a visual clue that they should bundle up before going out), and/or make it a sub-biome that only gets created in the upper 25m before hitting the world ceiling.

 

We don't have the dynamic snow shader anymore, it caused about 10 million bugs. We're keeping the snow as surviving in the snow and cold is interesting.

Link to comment
Share on other sites

It's not really a case of imagination. Depending on how you categorize it there are only between six to twelve basic terrain types in real life, everything else is either a variation or mix of these.

 

It's been a while so I'm a little rusty but shaders like to work with groups of four textures for technical reasons, adding another group of four textures makes the shader about twice as slow. A decision was made to drop two textures to speed up the terrain shader.

 

The decision was entirely practical.

Where do they work slower, at the junction of biomes or underground? Can this cause performance drops?

In any case, there are already more than four.

 

I collected an asset of 40+ textures for Terrain. I didn't see any problems.

https://7daystodie.com/forums/showthread.php?86145-HDHQ-Textures-Lighting-Environment&p=958645&viewfull=1#post958645

I may have looked the wrong way, but then that's the reason i'm here.

 

No, i don't think that's the reason.

Link to comment
Share on other sites

Fruit Leather Recipe:

<recipe name="foodFruitLeather" count="1" craft_area="campfire" craft_tool="toolCookingPot" tags="learnable">

<ingredient name="foodCanPears" count="1"/>

<ingredient name="foodCropBlueberries" count="8"/>

<ingredient name="foodCropYuccaFruit" count="4"/>

<ingredient name="resourceCropSnowberryPlant" count="2"/>

<ingredient name="foodHoney" count="1"/>

</recipe>

Link to comment
Share on other sites

Awesome Knuckles. Seems like a block animation. Can't wait till bandits and the human npc's comes into the game. I'm hopeful for the future but right now I'm burnt out on doing the routine zombie killing. The potential of having human enemies is pretty exciting. Hopefully, you'll have molemen or something like gools from fallout aside from your basic humans. Love you guys.

Link to comment
Share on other sites

Okay mm, we decided

 

Forest

-subs

Pine, maple, burnt, wasteland

 

Snow

-subs

Wasteland

 

Plains

-subs

Desert, wasteland

 

...you're welcome. :)

 

Its more like forest is thinned 80% and moderate grass.

Sub biome of thick trees like now but with less grass.

Sub biome of open spaces with lots of grass and shrubs and very few trees.

 

Desert like now

Sub biome of plains grass.

 

Snow like now

Sub biome with snow forest with denser trees.

 

Burnt, no changes. Maybe patches of some new green growth.

 

Wasteland no changes.

 

City masks: add more zombie spawning.

Link to comment
Share on other sites

It's not really a case of imagination. Depending on how you categorize it there are only between six to twelve basic terrain types in real life, everything else is either a variation or mix of these.

 

It's been a while so I'm a little rusty but shaders like to work with groups of four textures for technical reasons, adding another group of four textures makes the shader about twice as slow. A decision was made to drop two textures to speed up the terrain shader.

 

The decision was entirely practical.

 

The old shader had limits of only 3 adjacent textures too, otherwise blending disaster. The new shader will be much better.

Link to comment
Share on other sites

@adreden no. Its too much recipe clutter in the menus for what? 1 calorie?

 

ok well worth a try. No worries I have my own modlet for it :)

 

Maybe then just convert the portions of meat from 5 to one overall, so it doesn't seem like the player is wasting as much?

Link to comment
Share on other sites

Fruit Leather Recipe:

<recipe name="foodFruitLeather" count="1" craft_area="campfire" craft_tool="toolCookingPot" tags="learnable">

<ingredient name="foodCanPears" count="1"/>

<ingredient name="foodCropBlueberries" count="8"/>

<ingredient name="foodCropYuccaFruit" count="4"/>

<ingredient name="resourceCropSnowberryPlant" count="2"/>

<ingredient name="foodHoney" count="1"/>

</recipe>

 

What the hell is fruit leather?

Link to comment
Share on other sites

Its more like forest is thinned 80% and moderate grass.

Sub biome of thick trees like now but with less grass.

Sub biome of open spaces with lots of grass and shrubs and very few trees.

 

Desert like now

Sub biome of plains grass.

 

Snow like now

Sub biome with snow forest with denser trees.

 

Burnt, no changes. Maybe patches of some new green growth.

 

Wasteland no changes.

 

City masks: add more zombie spawning.

Of course, new sub-biomes will add attractiveness.

Judging by the description - it should be better than it was!

Well, let's see what happens ;)

 

But sub-biomes add attractiveness - to biomes, and biomes - to the whole world!

There you really squeezed themselves to the imagination in a 2x2 square.

 

(Yes, Yes , of course - you're struggling with low performance - that's understandable, ok...ok...I feel like I'm interrupting your work...).

Link to comment
Share on other sites

ok well worth a try. No worries I have my own modlet for it :)

 

Maybe then just convert the portions of meat from 5 to one overall, so it doesn't seem like the player is wasting as much?

 

We gave you 5x as much meat as A16. Meat needs to be a granular amount so that the harvest bonuses can scale. 20% more of 1 "steak" is 1 steak. 20% more of 5 little pieces is 1 additional piece. Who wants to buy a perk that gives you 20% more harvest if it doesn't work until you get 3 ranks and then 60% more is actually 100% more?

Link to comment
Share on other sites

Where do they work slower, at the junction of biomes? Can this cause performance drops?

 

I collected an asset of 40+ textures for Terrain. I didn't see any problems.

https://7daystodie.com/forums/showthread.php?86145-HDHQ-Textures-Lighting-Environment&p=958645&viewfull=1#post958645

 

Did you try to blend all of the textures on a single terrain shader?

 

It's not the textures that are the problem, it's the way shader code is written. This is fundamental to shaders and completely unavoidable.

Link to comment
Share on other sites

It's actually a known survival technique to make fruit leather. Especially when the berries are slightly poisonous or cause stomach issues if you eat too many right off the bush.

 

I'm surprised they didn't add pemmican yet.

Link to comment
Share on other sites

We gave you 5x as much meat as A16. Meat needs to be a granular amount so that the harvest bonuses can scale. 20% more of 1 "steak" is 1 steak. 20% more of 5 little pieces is 1 additional piece. Who wants to buy a perk that gives you 20% more harvest if it doesn't work until you get 3 ranks and then 60% more is actually 100% more?

 

That's fair.

 

me actually cooking odd numbers of meat :)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...