-
Posts
317 -
Joined
-
Last visited
Content Type
Profiles
Forums
Blogs
News
Store
Everything posted by Vexxvididu
-
Is there a mod that lets you customize crop growth speed?
Vexxvididu replied to Jose Alfredo Ramos's topic in Questions
Glad it worked!!! But yeah, I have no idea if this is dynamically calculated each tick or set once it's planted. -
cellar effectiveness? what the material is best?
Vexxvididu replied to Michaś P's topic in Questions
Building on this, wooden doors in my testing definitely make a SLIGHT difference in spoilage rates. Better to use dirt to keep the natural light out. But you can fairly argue that the difference doesn't matter tha tmuch. -
Is there a mod that lets you customize crop growth speed?
Vexxvididu replied to Jose Alfredo Ramos's topic in Questions
This is very easy to edit yourself in the .json files if you like. I put the folder location below. That might even be easier than finding just the right well maintained mod for you C:\Users\[[computer name]]\AppData\Roaming\Vintagestory\assets\survival\blocktypes\plant\crop -
Yeah, I'm all for giving us more ways to make travel rations that either just don't go bad or go bad VERY slowly... but maybe at a cost of efficiency and labor to balance them out. For example, maybe give us a way to make vintage beef that is clearly a lot less satiety and a lot more labor than if you just turned the same beef into a stew, but obviously has the advantage of lasting forever. Likewise, give us a way to make medieval style Hardtack biscuits. Way more trouble and way less satiety then existing ways to eat grain, but great for travel.
-
I confirmed it is not working yet.... I got the below error. Not yet sure what is wrong.... I am not sure exactly what is wrong but think it might be that the harmonypatch syntax is not quite right for the type of variable that greenhouseTempBonus is... I will do more research but maybe somebody here will know what is wrong. ---> System.Exception: Parameter "greenhouseTempBonus" not found in method System.Single Vintagestory.GameContent.FruitTreeRootBH::applyGreenhouseTempBonus(System.Single temp)
-
I really don't think electricity fits in the game at all. The device you pictured wasn't invented till LONG after the game takes place.
-
I think I have a solution, but actually testing it thoroughly before deploying it will be a bit of a pain. If I confirm it works as intended, I'll try to publish it this weekend: namespace SteadyGreenHouses.ModPatches { //WORKKS //A B TEST with and wiwout mod - works // TEST temp to high - works [HarmonyPatch] internal class FruitTree : ModSystem { [HarmonyPatch(typeof(FruitTreeRootBH), "applyGreenhouseTempBonus")] public class MyPostfixPatch { public static bool Prefix(ref float temp, float greenhouseTempBonus, FruitTreeRootBH __instance) { // If the condition is met, change the variable if (greenhouseTempBonus > 0f) { temp = 15f; // Set the variable to something else } return true; // Return true to continue running the original method } } } }
-
Destroyed voxels when swapping hammers on molybdochalkos
Vexxvididu replied to doncronican's topic in Questions
Even if nothing is obviously related to smithing, it could be affecting things in strange ways... I've never seen this bug before, so it might be worth it to disable all the mods, give yourself some metal in creative, and try to reproduce the bug. I also use buzzwords, so pretty sure that's not it.... but I do wonder about some of the other mods. -
posting the latest version of my scripts here rather than creating another thread. I seem to have another bug where the fruit tree script bypasses whether or not the fruit tree is actually in a greenhouse. I can see why it's bypassing that, but am not really sure how to fix it. This is because the actual vintage story code has one function that sets the temp bonus and checks if it's in a greenhouse at once. My code just sets the output of the following function to a fixed 20C. I suppose that ideally I'd detect if the greenhouse temp bonus was moved to 5C then force the output of that function to just a flat 20C. ...I'm just not sure how to do that in the harmony patch syntax. @Nachie offered to take a look, so tell me if you know what to do. Another possible bug that I've been observing in my own game is that the berry bushes are kept from going dormant by the greenhouse but seem to just freeze when fully grown and not produce fruit. I'm not sure if this is a flaw in the mod or it's just slow. BeeHives.cs BerryBush.cs FastForward.cs FruitTree.cs SoilNut.cs
-
Destroyed voxels when swapping hammers on molybdochalkos
Vexxvididu replied to doncronican's topic in Questions
yeah..... that first video looked weird.... can't tell what is going on. It looked like your attempt at removing the extra voels backfired. You need bellows! but I don't think that was your problem. What mods are you using though? -
Destroyed voxels when swapping hammers on molybdochalkos
Vexxvididu replied to doncronican's topic in Questions
Your "videos" appear to just be sound clips.... hard to tell what's going on. I've not experienced this before. ..sounds weird though for sure. -
Silver containers for preserving food/juices/milk
Vexxvididu replied to Steppe King's topic in Suggestions
You're right. brass is used A LOT for food preparation stuff but usually not for long term storage. Though I think silver might have some leeching issues as well which is why it's not used much anymore. Being able to use glass jars for canning and heat them would be cool, but others on other forums have pointed out how that technology didn't really exist in the middle ages. I'm kind of of the opinion that we have enough good food storage technology in vintage story. ...you should just have to make more fresh food! Though it would be cool if we could put wine and juice in crocks then seal them like we can soups. I think that would be very realistic. -
If you double quench that steel knife for durability like I do, that's over 20 flint/bone knives saved!
-
To me the much higher durability of quenched iron/steel tools is worth it just for that. I get tired of making a new stone tool all the time!
-
Silver containers for preserving food/juices/milk
Vexxvididu replied to Steppe King's topic in Suggestions
I'm pretty sure brass is at least as good for this, right? Copper has very strong antimicrobial properties. -
-
Maybe this bug is specific to certain operating systems or hardware? What is your setup?
-
the glass panes for your ceiling need to be placed at the top of the blocks.
-
I think it's intentional. Contaminated coal is just not that good of a fuel... but maybe those stats that suggest it should be forgeable are wrong. My understanding is that it's kind of like peat.
-
I'm sure a lot of those could be fun.... but not sure what you mean by "official" mods? modders have a lot of freedom to do what they want of course, but I don't think most of these should be "official" or in the base game. ..in particular, fire arrows weren't really a thing in the middle ages since when you fire them, it would blow them out without modern chemicals. I'm also curious what you mean by "Monocle"? I know what a monocle is, but what about them would you want to see in this mod?
-
Confirming this works. I think it was control RMB but I remember the tooltip said how to do it. I made my first ever wrench just for this, haha.