You only need an email address. You can get an email address without any personally identifying info at tutamail
MoralHazard
Creator of
Recent community posts
I see that there was a downloadable file listed as an executable. Apologies--that was an upload error. There is no executable for this game. To play it from the download you'd need to run a local server from the game directory e.g. "python -m http.server 8000" or similar, then go to http://localhost:8000/index.html
Hmm... I'm not sure how that would happen. When you say you won, did you receive a "You Won!" Message or did you see the enemy health bar go to zero? If it was the health bar (red) that doesn't actually end the fight, it only puts the opponent in a "Downed" state where they are at a disadvantage. You only win when your opponent's stamina goes to 0 and they have no Huanjing left.
If you did receive a "You Won!" Message or fully depleted the opponent stamina but the match still isn't ending, can you check Application->BattleGameDB->data->victoryTimer and Application->BattleGameDB->data->combatState->opponentEndurance in the dev console? These variables manage the end of the fight.
Also, did you reload the game while there was a popup open?
You shouldn't be able to choose Full Release without hitting the trigger. There should be a popup telling you this and it should be impossible to submit text if you select Full Release without meeting the condition.
With respect to the thresholds, it's a bit of a mess right now. I need to figure out a way to manage the different types of conditions without the explanation being extremely verbose, but also without it being ambiguous, as you point out. For turns, if you put in 5 you need to progress 5 turns. For differences it is currently the difference in raw values.
What the threshold does is influence the narrator's decision of whether to nerf your power or not. It is prompted to assess how OP your proposed ability is against some examples of fair powers, and part of the assessment is how restrictive the condition is--more restrictive gives you a higher ceiling for the release ability.
Thanks for all the great feedback, by the way!
I'm not able to reproduce this error, unfortunately. If you're willing to try again and check the dev console I can probably fix it, but as of now I'm not sure what would cause this; perhaps something specific to your local environment.
There is a chance this was caused by errors that could previously occur when buttons were pressed while another function was executing. If so, the problem should be resolved now.
I appreciate that I'm supposed to wait a long period of time before posting about a deindexing, but reading this forum it seems like the squeaky wheel gets the grease, so here's me squeaking.
All my games were delisted a few days ago, as soon as I added generative AI tags. I've put in a support request--no response yet. I can't help but think this is a very punitive approach to managing AI generated content; by voluntarily and proactively complying with itch.io's tagging request, I've been automatically delisted for an indefinite period of time. My games are not mass produced "AI slop", the simply use LLM access to add dynamism to the games.
Thanks! I've (probably) figured out the issue. Did you submit text without adjusting any values in the in-game app? I intended for users to adjust the app before their first text submission, and playtested that way. I now see that if the user does not interact with the app this data structure was not instantiated, causing the error. It should be fixed now. LMK if it's still not working.
It looks like the data structure that stores the in-game app settings is missing or corrupted in your game.
Is it possible you pressed "continue" in SMCA on your first time playing the game instead of "New Game" or loaded a save from OC? There was an issue with shared caching for the two games, and, while I pushed a quick-and-dirty fix, I still need to add a more comprehensive solution that covers all failure cases.
The upshot is that you could have loaded a save from OC which would not have the app settings data, as that mechanic doesn't exist in OC. If this is the issue starting a New Game should fix it.
Thanks! There are definitely limits to the LLM's capacity to follow instructions, and therefore sometimes the game state is not adequately reflected. I made some tweaks yesterday to improve this, but it will still be <100%. Also, effects tend to persist a few turns after they're turned off due to the influence of the chat history, which I don't necessarily feel is a terrible thing. Easy to rationalize in-universe.
Thanks for the feedback on the feedback on the two games bleeding over. This is something I hadn't considered but is not too surprising given they're built on the same engine and use the same credentials. I need to look into this.
I can't be sure what the issue is on your device without more debugging, unfortunately. It could be caching (try Ctrl F5), no access to https://cdnjs.cloudflare.com, an ad blocker or extension interacting in a way I haven't anticipated, or even an older browser version.
Are you sure your Cohere API key is correct? If you open the developer console (right click inspect in chrome) check for
"POST https://api.cohere.com/v1/tokenize 401 (Unauthorized)" in red. This means your credential doesn't exist in their database.
The narrative progresses but doesn't seem to reflect any changes or you're not getting a response at all? If the former, what sort of prompts are you using. Also, how far are you pushing the sliders? I've only playtested this game myself, and because I made it I'm not going to prompt it the way other players will and won't see failure cases they do, so any feedback would be much appreciated!