Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

captainstupids

51
Posts
1
Topics
411
Followers
7
Following
A member registered Apr 17, 2021 · View creator page →

Creator of

Recent community posts

Spoilers: If you’ve been around long enough to make or find three doses of elastinup, be careful of slushies in abandoned petrol stops.

That’s an interesting idea. I hadn’t really imagined a case where people would be inclined to use items like that. Can I ask which items you’re using in that quantity? Rations? Vacuum cylinders?

I’d like to get to that. There’s a code path that I have commented out because I haven’t written it yet, but it’s only a matter of time.

(1 edit)

The web build is experimental and I’m not even convinced I want to keep supporting it. At the very least, it’s working on my browser and I can’t debug remote machines. If you can share your browser info I might be able to try and reproduce the issue. If you go to chrome://version and give the top few fields (Google Chrome, Revision, OS, and JavaScript) I can try to reproduce your setup to see if I can make it break.

Google Chrome	126.0.6478.127 (Official Build) (64-bit) (cohort: Stable) 
Revision	a435861f0ca363a64f7485619ee5939833823fce-refs/branch-heads/6478@{#1592}
OS	Windows 10 Version 22H2 (Build 19045.4529)
JavaScript	V8 12.6.228.21

If there’s more information you can provide, like any error messages or warnings, that would be great. It’s also worth trying in an incognito window to make sure it’s not a browser plugin that’s interfering.

Thank you for the kind words!

For the suggestions:

I might try adding sound effects later. I’m not sure how many people play games like these muted or how annoying the sounds will get, but it’s not off the table.

A few people have asked for non-bursting. I’m of two minds about how to accommodate. Since it doesn’t make a whole lot of sense for a character to be perfectly normal looking in one scene and then “oops, you’re a berry now, game over” I’d need to think of something else for immobile. Berrified is a neat idea, though.

Definitely more filled problems coming. I don’t always add them into events because it can make balancing gameplay harder, but there will be more in the future without a doubt.

(1 edit)

Thanks for taking the time to say as much. :) The feedback is appreciated.

Should be fixed now.

Small secret: momo’s milk already does have a very small dimorphex effect. ;)

Good catch. Thanks for reporting. I’ll add it to the bugs list.

Thank you! Appreciate the kind words very much. (Please feel free to leave a rating.) I might add cheats in the future, but need to be focusing on content for now.

That’s a neat idea. I had hoped to have more things happening to the player during sleep anyway. There’s only one random event now.

(1 edit)

Oh. I was only checking right after starting a new game, not after getting back from a dialog. I’ll look into it.

Edited: I think I fixed it? I’m not seeing it any more on my computer.

Oops. :x Fixed and reuploaded.

There isn’t a timer on the buttons. I just disable them as soon as they’re fading and reenable them when they’re unfaded. I don’t particularly like it either, but it might be at the limits of what I can do without a bigger rewrite of the event system. If I spend another 40-80 hours on it, I might be able to fix it, but I feel like I should go back to adding content if it is “solved enough”.

I just uploaded 20240601, which disables the other buttons on the HUD as soon as one is pressed and adds keyboard shortcuts to them. I haven’t been able to fix it for the dialogs, but this might help a bit. Let me know if it’s improvement.

“You know a thing when you use some soft and there’s a dialog box that blocks you from using the rest of the program? The same thing is needed here.”

Yes, but I need to figure out how to do that.

It should be happening already (except inventory, but that’s a different bug). Only one UI item can be active at a time, but when the active element changes there’s a time when the old ones aren’t active any more but still have their callbacks. It’s like if you’re using a phone and just about to push a button but something else pops up and moves the button away, but reversed.

One thing I’m trying is to disable all the other buttons on just the hud after being pressed, which won’t solve all of the issues but might alleviate the problem a little.

Shortcuts are a good idea for an accessibility function. I’ll see if I can make that happen.

As of the latest release (20240531), M/F encounters can be toggled in settings. I have not tweaked the other things yet.

MRE’s are size capped now. Good job again on that find. x) I think you’ll be the record holder for the rest of time.

This should be fixed now! Thanks again for reporting it.

“I think that it’d be more interesting if you could still do things as normal regardless of how long you’ve been awake, but got progressively greater penalties to every action according to how long it has been since you last slept.”

That’s pretty close to exactly the way it is now. You can go two or three days without sleep before dying of sleep deprivation and your skills start to get pretty severely penalized after about 24-36 hours of not sleeping.

Thanks for reporting. I’ll try and reproduce it.

That’s a GREAT catch! Very nice find. I’ll add it to the bug list and cap the negative hunger. A person is supposed to be able to go negative in hunger if they’re overfull, but the 20-30 ration trick isn’t something I thought of.

The short answer is ‘no’. There are three renderers in Godot. You can think of them as ‘fast’, ‘normal’, and ‘high quality’. Fast is the most compatible, and in theory can even be run in a web browser, though I’ve not been able to get that to work. I’m using ‘normal’, which doesn’t support a lot of the higher quality rendering options yet. I used the HQ one for my last game and people complained about visual problems on embedded hardware.

I am planning to brighten up the night scenes a bit by adding some moonlight.

That’s very helpful. Thank you! I think it has something to do with me fading the bottom menu instead of making it disappear immediately. I bet I can make it disable the buttons after one is pressed.

Thanks for the report. I think the odds are low but it might be zero. :x I’ll put it on the list.

(1 edit)

Thanks for the kind words. :) It’s made with Godot 4. Characters are modeled and animated in Blender.

I like that solution. Good idea. The task has a pretty heavy mental fatigue right now (0.4, if my memory serves), so you’d be able to make two per day if you had the batteries. That still seems like a lot, but maybe it isn’t given the need to find batteries. I’m still worried a bit about people finding a first order optimal strategy and just optimizing the fun out of the run.

One other consideration is whether it’s worth adding the special case. I like systems based stuff where behaviors emerge naturally, and adding special checks for whether the person has made a certain number seems to interfere with that. Or I’ll forget and make some change to the intelligence checks and end up with a strange bug.

Perhaps then it’s worth looking back to your earlier point about guaranteed success on any roll. Just thinking out loud: There’s always a 10% chance of success. I don’t really want to change that. If it’s changed so (net bonus after penalties > greater than the check) -> guaranteed success, then once a person’s int bonus exceeds 2 they auto succeed on everything (until they get tired). That seems a little imbalanced. Could also do the D&D thing where it has to be ten-over, which doesn’t have an exact mapping here. I’m going to have to think about it more. If I can’t find anything better then maybe the special case is fine.

(1 edit)

Thanks for reporting. I’ll try and reproduce + fix it.

Update: It was a silly problem on my part. I wasn’t clearing “load” after loading, so new game would try to load saves. It should be fixed in the next release.

Thanks for reporting. I think it was a balance choice. I had hoped “.. juice flows past your mouth and straight into your body, seemingly bypassing your stomach and directly expanding ..” would maybe explain it away. Now that hunger is more punishing maybe I’ll have to revisit that choice.

Thanks for reporting. Infection should prevent hunger. I’ll have to fix the flavor text.

Thanks for reporting. I’ll try to reproduce it and fix it this week.

Hmm. If there are automatic successes then the lab would be pretty easy to abuse. Just max out your int and then spam making myogen and elastinup until you’re invincible. Perhaps something like Gambler’s Dice which prevent long spans of bad luck. There’s already a floor on luck (can’t be less than a 10% chance of success no matter your debuffs), so perhaps lowering the ceiling could help, too.

Got it. I think you’re right about talking more about what the stats do. It was pretty clear in my mind what they did, it’s better to be explicit sometimes. Until I actually make the changes, here’s what they do:

There are only three hidden traits, charm, intelligence, and strength.

  • Strength is anything physical like hitting things, running away, or fighting.
  • Intelligence is fixing stuff, noticing things (!), and taking things apart.
  • Charm is convincing people, negotiating, and buying. This is a little underpowered right now because I removed an encounter that leaned on it hard.

All of these bonuses start as 1x.

I don’t think I can necessarily say “chance of succeeding str increased by…” because the bonuses from things myogen and thinkies (1) have diminishing returns as you take more and (2) because the way that success/failure is calculated isn’t linear as a function of those.

Fill vs max fill and infection, well, I do want people to be on the edges of their seats for those.

(14 edits)

This thread is for the known bugs and their priorities. I’ll edit this post from time to time with the latest. Please do a quick search for your issue before posting.

How to report a bug: please include the version of the game and your OS. If it’s a graphical bug, it would be useful to have your GPU make/model, too. Steps to reproduce would be great if it’s reproducible.

Known Bugs: :(

  • Save/Restore menu doesn’t have user-feedback after loading is done.
  • If your inventory is open you can still interact with other UI elements and maybe break stuff.
  • Not all events pass time.
  • Mouseover glow on interactables doesn’t always fade properly.
  • The flavor text for really high infection levels is misleading. Infection reduces hunger.
  • Can endlessly attempt to charm the man in the outlands with no repercussions.

Not Bugs: :I

  • UI is hidden during dialogs. Not sure if I want to change this or not. It started as visible during events but was distracting so I turned it off. I might have to experiment.
  • Should the outlands encounter with the woman reduce hunger when feeding? Undecided.

Fixed: :D

  • Hitting “load game” after dying seems to lock up. Need to restart the game before hitting the button. :cry:
  • Male player’s waist diameter in meters was being miscalculated and was lower by 2-3 meters.
  • Restoring a saved game doesn’t reset the player’s displayed fill until a rest or action.
  • Players hair was invisible on mouseover sometimes.
  • Switching characters on the title screen after loading might not work. [Reported in 20240524 release. Fixed in 20240531.]
  • Using an MRE when VERY full can result in getting a ton of MREs. Cap negative hunger? [Reported in 20240524 release. Fixed in 20240531.]
  • Double clicking on UI elements or during cutscenes can cause game breakages. [Reported in 20240524. Partially fixed/band-aid in 20240601.]
  • (Mild spoiler) “Give In” option at the bunker has a chance to be ignored. [Reported in 20240524. Fixed in 20240622.]
  • Another encounter in the bunker is bugged. [Reported in 20240524. Fixed in 20240622.]
  • Loading a game that was saved at midnight will restore the mountains in the background fullbright, sky dark blue, and without lights on inside the hut. [Reported in 20240524. Might be fixed in 20240622.]

Reported but Not Reproduced: :’)

  • :’)

Reported but Won’t Fix: :’(

  • :’(

Good suggestions on the M/F exclusive. Should be pretty easy to do for some of the encounters.

I wanted to avoid printing out “STR check success!” like Baldur’s Gate does since there are so many, but perhaps there’s a way to integrate it more subtly.

(1 edit)

Appreciate the affirmation.  :)  Earnestly.  Thank you.

Oh yeah, not disagreeing with the reviews.  They're right.  I'm just a little bummed to have something so incomplete after two-three years and 200+ hours.  Most of it went into the characters and into systems that got scrapped before even making it into the game because they didn't feel good enough.

Thank you for the input.  I think you're correct.  The ratings are correct, too; it's just disappointing to spend 200 hours and have it be so unfinished.

I'm pretty impressed by how much work has gone into this.  There's a lot of depth.  Good job.

They do. Green potions will pause the player's growth. Red potions increase your max stretch. The white-blue potions will shrink you a bit.

I am authentically unsure of how that bug even happens.  Does it happen all the time?  Can you say a little about your computer?  (Graphics card, CPU, version of Windows?)