Jump to content

Tj Pepler - Critcher

Vintarian
  • Posts

    135
  • Joined

  • Last visited

1 Follower

About Tj Pepler - Critcher

  • Birthday 11/22/1975

Recent Profile Visitors

903 profile views

Tj Pepler - Critcher's Achievements

Bronze Caster

Bronze Caster (6/9)

118

Reputation

2

Community Answers

  1. Hi folks, I'm working on wall pieces that will become a tileset to generate random dungeons for Hollow World, but I need feedback on what people prefer, the greebled mixture of many block types or the builds using all similar blocks. The door is not greebled, the wall is. Which do you personally prefer? None of the above is valid too
  2. You know what, I didn't actually see it, I saw the tag was there and assumed that it was intended to be used, but you are right, I never did see a requirement.
  3. As I have stated before I use AI in a limited capacity when creating my mods, I have switched completely to local models being powered by my own power bill and none of my tools are powered beyond inception by a data center BUT, I still report my AI use via tag, as required by the Mod Db. So I add the AI tag and, as expected, I have had a drop in downloads, no problem. But the issue is that a lot of people I have talked to who are anti AI don't have a problem at all with local models and AI that is not powered by a data center. The funny thing is that the local models (IMHO) actually CAN'T produce a proper functioning mod on their own anyways, they are a reference tool and handy helper only. My question was about the possibility of having a local AI tag and a Data center AI tag? I know some people are anti AI across the board but there are many who don't have a problem with local models and they may miss out on mods they would enjoy because of the blanket coverage. Does anyone in this community see a difference as well?
  4. This is taking longer than I had hoped, getting the ride smooth has been very difficult. I am at the point where the players ride is totally smooth and the player has full mobility even jumping and attacking while riding the lift and the elevator 'motion' is smooth BUT I still have a minor vibration in the cart itself during movement, it doesn't effect anything but it's a little annoying to look at Otherwise, the modelling and such is going very well and it will launch with 4 elevators and 2 different shaft styles to chooses from.
  5. This topic has no reason to exist. The developers have done everything correctly, there is an AI tag for mods, if you see the tag, don't download. If it's not tagged and is crap / slop, report and move on. There is no issue here.
  6. I am working to fix the ugly wood, it will be fixed soon but my icebox is not free, it's based roughly on real world lifespans for delivered ice blocks and the building requires charcoal insulation like real life iceboxes. It IS ugly, I'm sorry but it works very well, just load in an ice block and it will be absorbed and charge the icebox for a while, depending on the quality of ice used. If you all are interested it can be found here https://mods.vintagestory.at/cmicebox
  7. I would love to show you all a current WIP that I think will be of use in a lot of different situations. The video is a few minutes long I apologize but I suck at making videos! Please do reply though even if you think no one will like it, I really could use some feedback to make this as useful as possible. Thank you all for your time Special thanks to @DanaCraluminum for the work done on drawonmap without that work I'm not smart enough to have made this happen
      • 1
      • Like
  8. If I may, what I have learned in the last six months is that the game actually has some incredible tools built in that no one knows or talks about! I was spending hours manually editing transforms, loading the game, nope, exit game edit transforms save compile and test again, to get a weapon lined up in my hand or heaven forbid, on the tool rack!!! and then through a miracle and a beam of heaven sent light I learned about .tfedit and .bsedit and my entire life changed, now maybe these things are easy to find if you know what you're doing but I didn't know to even look for them in the first place. Not terribly useful information but a glimpse into my real world experiences.
  9. The link to your mods at the bottom of your posts is not working.

    1. xXx_Ape_xXx

      xXx_Ape_xXx

      Oh, thank you, I didn't know. Much appreciated!

  10. I'm a liar! A despicable traitor to the decent honest players It's coming along though just some of the changes I greatly underestimated!!!
  11. You know what will work, come to my discord, I'll get you set up to send me your save and I'll fix it for you I will put you at 0, 140, 0 if you fall and die just - /tpwp you died here if you are underground - /gm 3 go spec then /gm 1 to get back to normal https://discord.gg/udr5SweA
  12. You absolutely can, everyone is free to use my mod maker at https://www.critchersmods.ca you can adjust everything from their strength to detection range, even their movement speed and spawn rates in the world. Editing the individual creature stats is only one of the many things you can modify! (actually you can modify most variables in the game - ***including the stats on every piece of armor***) Please note : when you download the mod you must copy it to your game mods directory manually from your downloads folder!
  13. Hi everyone, this is a little tech demo of the first mod (1/10) in my upcoming Temporal Power mod series This device allows you to harness the power of a temporal rift, collect it and then place it anywhere you have a mechanical power need. I am just doing a final polish pass right now and it will be going live on the ModDB on Friday the 19th. I have been getting a lot of messages with great feedback on several mods and it is so wonderful and helpful! Please keep the suggestions coming and I'll keep working to add them.
      • 1
      • Like
  14. Hi everyone. I want to address the recent stability issues Peppermint1888 has been experiencing. LadyWYT’s diagnosis was spot-on, and I want to walk through exactly what was happening. Current 1.3.3 version : My mod uses a Harmony patch on EntityBehaviorControlledPhysics.ApplyTests to manage climbing logic. Previously, my patch was executing just before the vanilla SimPhysics check. If the player’s position data had already been corrupted with NaN (Not a Number) values by something else upstream, vanilla code would immediately hit that bad data and throw a "Given pos contained NaN" crash. Essentially, my mod was surfacing the crash, even though it wasn't the origin of the corruption. The 1.3.4 Fix (This is live now but *will not* fix your current situation) : The mod now includes an early "bail-out" condition: if it detects a NaN position, it stops execution before it can trigger the vanilla crash. I want to offer my sincere apologies for this; I know how frustrating it is when a world won't load due to data being written to disk in a corrupted state. We should have caught the potential for this behavior sooner. Why this slipped through : The honest truth is that I have been unable to reproduce this locally. Based on the logs provided, the position data goes NaN while panning, but I have yet to isolate which mod (or interaction) is causing that initial corruption. Getting back into your game, for your world currently crashing on load because of this, here are your two options: Manual Save Repair: As Rainbow Fresh kindly suggested, your save is a standard SQLite database. You can open the .db file in your world folder using a tool like DB Browser for SQLite. Locate the player entity's position record and replace the corrupt NaN values with valid coordinates (e.g., your spawn point). Please ensure you back up your save file before attempting this. (This sounds SO much scarier than it really is!) Start a New World: I know this is the last thing anyone wants to hear, but if you aren't comfortable with database editing, starting a fresh world is the only guaranteed way to resolve the state corruption. I am truly sorry for the damage this has caused for your play sessions. Thank you for your patience and for the bug reports that helped me pinpoint the solution. A minor consolation is your reports will make sure this doesn't happen to anyone else, so thank you for that as well. The issue with being unable to start a new world is unrelated as it would be using a different DB. If there is anything else I can do please don't hesitate to ask Or pop by my Discord if you want to discuss further : https://discord.gg/cqbd9sTS
  15. It was up for testing and bug fixing, there are a couple of issues I was able to fix up a bit and there are some new additions coming as well but it will be a completely new mod that runs much better than before. Should be posted by next weekend
×
×
  • 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.