Jump to content

Spear and Fang

Very supportive Vintarian
  • Posts

    472
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Spear and Fang

  1. Well, not intended. I just didn't dig in my heels and make that work like I wanted. If you place the bed of nails in a checkerboard pattern (or just space them out a bit) it will work for you.
  2. Game version? Mod version? If you're not on the latest version of both do that first. Vanilla moisture levels were pretty buggy for a while but I think Tyron has sorted that out now.
  3. You can't specify the order in this case, so I'm assuming you used this common technique for moving a wildcard out of the way and then putting it back again. The temporary destination path "hax" is just a made up location. It can be any arbitrary name really. You can put your patch first, and then these two patches afterwards. Or put your patch between these two. Either way works. [ { "file": "game:itemtypes/resource/stone.json", "op": "move", "frompath": "/texturesByType/*", "path": "/hax", }, { "file": "game:itemtypes/resource/stone.json", "op": "move", "frompath": "/hax", "path": "/texturesByType/*", } ]
  4. Nope. Not unless I can make some serious progress on it. But my other mods and irl are consuming way too much time right now
  5. Engaging you say? If you're talking single player.... 1. Wilderness Survival mode - no map makes things a lot more challenging. Things get frantic when you lose track of where your home is. 2. Unstable dirt and gravel - it really adds some interesting new aspects to the game. 3. Permadeath - nothing more engaging than knowing that it's all over when you die. Your head will be on a swivel. 4. Add some mods of interest to the mix. YOU CAN DO IT!
  6. Watch the video - 1:45 to 1:55ish for a huge clue. Build altars and whatnot as per the video. https://www.youtube.com/watch?v=9uSBfcw8Aa4 Collect parts from weir traps mostly, and fish baskets and tree hollows. And temporal gears too. Read the necronomicon as per the video for more clues.
  7. It is hard to explain. It's best to start a creative world, place one, right click on it, and read the help. Or play with it. Some of the basics are discussed here. https://wiki.vintagestory.at/index.php/Modding:Simple_Particles
  8. Gosh thanks Bean Man! I've tried a few times to dive back into those creative only blocks and create something interesting, but seem to lack the creativity and/or motivation to go much further in that direction. My interest in modding ebbs and flows and it's proving to be a challenge to keep up with what I've made available thus far. One day perhaps...
  9. If you remove everything from a tree hollow instead of chopping it down, then it will be eventually be restocked by "nature". The update handles that restocking. This mod only adds tree hollows to some vanilla tree types, so it probably isn't a wildcraft trees issue. I say probably because this mod DOES add wildcraft tree seeds to tree hollows if that mod is installed. I will need to check that mod as well to ensure that the author hasn't renamed any of their item codes - something that is unlikely but possible. In any case, the error log doesn't seem to be pointing to that scenario.
  10. I think this is a mod conflict with "In Dappled Groves". Do you have that mod? Anyways...you could edit the modconfig file with a text editor - for Windows users, look here: C:\Users<userid>\AppData\Roaming\VintagestoryData\ModConfig\primitivesurvival118.json And change TreeHollowsUpdateMinutes to 999999 This will stop the error at least, until I get around to addressing the issue.
  11. Thanks for the report Karagryphon. The log file seems to point to a problem with the game itself, not this mod. The tree hollow is in fact just a reskinned chest, and mostly just relies on vanilla game code. I actually don't think this problem can be easily recreated (I certainly couldn't), because it is much more likely to be a hiccup with the user's computer, router, ISP, or the server itself. If some other player can recreate this issue please do let me know.
  12. I think I see the problem and will release an update shortly.
  13. Still WORK IN PROGRESS, which is why it's here but not on the modDB Changelog: - Removed ALL integration with Medieval Expansion and Lichen. There was a lot, and it was causing some grief, especially for Rhonen and his Medieval Expansion mod - Got the animal handling gloves working - kinda sorta. thanks Exletalis08! Not sure how these used to work (I'm assuming that it would render the animal in the players hands once picked up, but there was no indication of that in the code). Got tired of mucking with it so I made some compromises. Next up: - Fix the animals stuck in place behavior. Thanks again Exletalis08 and DarkSlayerEX farmlife2v0.0.2.zip
  14. Made a bit of progress on this mod - I'll post a new release shortly...also new splash screen for the modDB...
  15. Doubtful...but I might. I have a new version of Farm Life up and running, but because it has a LOT of code and hadn't been updated in a long time, it will require quite a bit of testing. I've attached the untested version in case someone is really really bored. Built under Vintage Story 1.18.5, loads up very cleanly. farmlife2v0.0.1.zip
  16. The link tool in this mod will do that, so yes. https://mods.vintagestory.at/translocatorengineeringredux
  17. Hi Plumeria, I did some testing and you are right - the Skull is not working as intended anymore. It *seems* to be ignoring its 15 block radius and attacking more aggressively than before. Thank you so much for reporting this, I should have this fixed for the next release. ...maybe even allow people to place a straw dummy nearby to further restrict the skulls attack radius...
  18. If nothing drops at all, I'd recommend either waiting for 10 seconds after the transformation (for the worms to settle down) or pluck as many worms out of the castings as possible before breaking the castings block. When the worms are settling in the castings blocks their hit boxes sometimes prevent the worm castings from dropping. It's a long outstanding bug. Ima try and fix that bug once and for all. If on the other hand it drops soil, then some other mod must be causing that. I've never seen that. I'd say "Farmland drops soil" but that doesn't seem likely.
  19. And fixed in the new release (3.1.8). Thanks again.
  20. Boesknecht, Thank you so much for reporting this and providing a log file. I was able to recreate this issue and am working on a fix now.
  21. Yes this should have been fixed in v3.1.6. But if there's any unlit ore blasting bombs sitting around, pick them up and place them again.
  22. Multiblocks have seen a lot of changes of late and I don't think there's any documentation per se, other than their usage (json files, c# code). The simplest multiblock implementation is a json only behavior - "Multiblock". Look at the vanilla painting to see it in action. ..\Vintagestory\assets\survival\blocktypes\wood\painting.json { name: "Multiblock", propertiesByType: { "*-north": { sizex: 2, sizey: 1, sizez: 1, cposition: { x: 0, y: 0, z: 0 } }, "*-east": { sizex: 1, sizey: 1, sizez: 2, cposition: { x: 0, y: 0, z: 0 } }, "*-south": { sizex: 2, sizey: 1, sizez: 1, cposition: { x: 1, y: 0, z: 0 } }, "*-west": { sizex: 1, sizey: 1, sizez: 2, cposition: { x: 0, y: 0, z: 1 } } } } Beyond that, I typically use Visual Studio Code (https://code.visualstudio.com/download), open a folder like ..\Vintagestory\assets, then search for "multiblock" to see every file that has referenced such a thing. You could also head over to the Anego Studios github and search for the same thing to do a deeper dive on the c# front. https://github.com/search?q=org%3Aanegostudios+multiblock&type=code
  23. Oops disregard that above post. Apparently that info is somewhat outdated, as Tyron has reworked the command system to be Fluent. He talked about this some time ago in Game Dev on the VS Discord, but I'm not sure if there's any related docs yet. Sorry!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.