- Jan 19, 2020
- 1,228
- 920
Yeah the shrine shows up starting on floor 5. Next update will not have Easy set the starting curse. I'm still crying how I got Sloth 3 times in a row one run ;v;
I don't get the impression that the game is very close to a 'Completed' tag so I don't think that's too much sharing. Regardless of the direction you go with, the fact that you are aware of it is enough for me to be satisfied.showing too much behind the curtain
Maybe add mod support, if it isn't too hard to implement where you currently are. If people could add in their own CG and scenes, some of those gaps could be filled by the community.I especially agree with this, and hate that it is a thing I struggle with more than other aspects of making the game.
The game already has mod support. In fact, the dev sometimes releases hotfixes as mods when they don't feel like going through all the trouble of re-uploading the game.Maybe add mod support, if it isn't too hard to implement where you currently are. If people could add in their own CG and scenes, some of those gaps could be filled by the community.
Sorry if this was already suggested, haven't read the entire thread.
I have to assume that the learning curve for the game's scripting language puts people off. The one completed (single monster) mod that I know of required a lot of small clarifications from me, suggesting both that there should probably be some internal tweaks as well as more work on the modding documentation (which I keep putting off in favor of work on the actual game).Maybe add mod support, if it isn't too hard to implement where you currently are. If people could add in their own CG and scenes, some of those gaps could be filled by the community.
(Video shows knights entering rooms and briefly having the monster/trap's portrait flash across the screen before disappearing.)You must be registered to see the links
Nice dress. Although the angle kind of makes it look like she's just standing in front of a weird orb with legs. ...Actually, maybe that's exactly how the picture was made, and the forced perspective is just a little too easy to see through.
This can be wholesome or distressing depending on why her eyes are closed. Just having fun? Great. Knocked in during combat? Not so great. Hypnotized? Please practice proper mind control safety precautions when around large bodies of water, bottomless pits, or fires.
Will it have the benefits it was meant to have as a skill, though? It'd be neat to have another "beneficial" curse/combo like Exhibitionism and Seeing Red.
Yes, not only did someone else also ask for the ability to turn it off, but I had already put it in before that tweet even happened.Okay, this is definitely gonna be a thing we can turn off, right? Because... Yeah, no. Especially at that speed. It goes by too fast to actually get a good sense of whatever just came up (at least for me), but is way too prominent to just ignore, especially when you're speeding through the rooms.
Sort of, although the lower body of the model is merged with the spider body, it just isn't obvious. Maybe I should have bunched the dress up more to make the connection point more obvious? I dunno, I'm not an artist.Nice dress. Although the angle kind of makes it look like she's just standing in front of a weird orb with legs. ...Actually, maybe that's exactly how the picture was made, and the forced perspective is just a little too easy to see through.
You could argue that some parts of some ranks of it are beneficial. I can even think of a skill that would combo with it sorta kinda.Will it have the benefits it was meant to have as a skill, though? It'd be neat to have another "beneficial" curse/combo like Exhibitionism and Seeing Red.
Having just spent a decent amount of time messing around in the save files to 'grant' my Knights the requisite curses for events (...after two full runs of no luck), I can imagine why. Even with a passable grounding in Python I don't think I could do much more than copy and alter existing structures (so, add in new curses or traps with effects that already exist somewhere else in teh game) and with no CGs to go with them, why bother? We have a fair abundance already.I have to assume that the learning curve for the game's scripting language puts people off. The one completed (single monster) mod that I know of required a lot of small clarifications from me, suggesting both that there should probably be some internal tweaks as well as more work on the modding documentation (which I keep putting off in favor of work on the actual game).
I also don't really have an answer for how people could make CGs. I could put out an art style guide for making the images match the game style, but not the actual character models used for the knights. I suppose I could make 'generic' sex CGs available for people to use but you would then end up with a lack of variety.
I would LOVE to see mods happen, they just haven't yet.
Gosh if only there were some debug build that you could give yourself whatever curses you want (that costs $10 so I don't blame people not going for it).Having just spent a decent amount of time messing around in the save files to 'grant' my Knights the requisite curses for events (...after two full runs of no luck), I can imagine why.
Not really anything to do with python? I mean I guess gdscript is python-like but that would only matter if you decompiled the exe to look at the game code itself. The data for modding is done entirely in json data structures.Even with a passable grounding in Python
Interestingly I feel like I only get this kind of comment on f95? Like I guess the people here have more of a completionist "I want to find/see everything in the game and move on to the next one" mindset and having the lists of skills/curses/etc. continue to expand gets in the way of that, but honestly I... Don't really feel bad about it.We have a fair abundance already.
I mean, that's understandable (and it's not really a solution, more of a slapwork in any case), but that's more or less what I had to work with. No offense meant but I don't think I'm quite ready to support this project financially yet.Gosh if only there were some debug build that you could give yourself whatever curses you want (that costs $10 so I don't blame people not going for it).
In any case, I can't really condone save editing (and especially sharing/downloading edited saves which seems like a security issue just waiting to happen). I don't even know how you would do it given godot's encryption of the .res files it creates. As for modding, at present there isn't any PUBLICLY EXPOSED mechanism for mods to force a character into getting a specific curse. Technically if you knew where to put the right data, you could do it, as the reason why the first shrine on floor 5 is currently always Easy is because I forgot to remove that data when testing the function for forcing a floor's shrine to have a set curse. I just haven't updated the modding docs since getting that set up (among many other things). I would assume that once that's made known SOMEONE will be able to decipher enough of my docs to set up a mod that will give you all the curses needed to see the scenes, even if I don't really like the idea much.
Not really anything to do with python? I mean I guess gdscript is python-like but that would only matter if you decompiled the exe to look at the game code itself. The data for modding is done entirely in json data structures.
Interestingly I feel like I only get this kind of comment on f95? Like I guess the people here have more of a completionist "I want to find/see everything in the game and move on to the next one" mindset and having the lists of skills/curses/etc. continue to expand gets in the way of that, but honestly I... Don't really feel bad about it.
Well certainly anyone wanting to mod any game should expect that understanding programming fundamentals will only help. It's a specific sort of problem solving mindset. In a more specific sense, with this you'd probably only need to know what different variable types are and what they're for (bool, int, float, string, array, dictionary). Knowing what a Stack is in programming/data structure terms would also probably help since that's essentially what is created and resolved whenever anything happens on the map/in camp. Beyond that, I don't think there's much else other than learning how to format things and yelling at me for dumb aspects of the formatting rules that only really make sense to me because I've been using them for a year+While the data for modding may be available in .json's, I'm pretty sure you'd still need a basic understanding of Python ( or at least, something like Java or C++ or similarly structured language) to make anything out of it.
Try turning down the resolution if you're in fullscreen mode. It basically acts as UI scaling.I really like this game but even the "large" text size is still too small is there a mod or anything that fixes it? I can't find anything to help with that and my blind ass is struggling without sticking my face in the screen
Boss/elite/unique monsters, let's goooo! I wonder if this is exclusively for Coraline's marks, or if it will be shared by more static "bosses" like the Reference Poltergeist? For that matter, I wonder if the Reference Poltergeist will be a possible target. I probably shouldn't expect *too many* new enemies if this was another "mechanics" update, especially since only the Drider has been shown so far and the update will probably be out within the next week...
A Bob and George reference. What.
I like how casual she seems about it. Like, she's a rape spider, but this image just seems to say, "Hey, check it out. Boobs."
I mean I definitely would have noticed this if it was the case on my end, so I'm not sure how you got yourself in that position because... Yes it does?Bug: The sound doesn't work. At all.
It cancels the scry. That's how it's supposed to work.When using Experiment on an empty room, not only does it refund the cost of the scry, it just doesn't scry. This also prevents it from lighting up a dark room.
Dunno how that ended up getting deleted, but it is missing from the data, yeah. It's "Spend time with Raine after floor 3 while she is relaxing alone"Unlock hint for Raine's "How to relax" is blank, which is problematic since it's the prerequisite for the only new camp scene. (Of course, I'm putting off the new scene until the sound is fixed, but I was planning to get the prereq out of the way.)
This status has been causing tons of problems. I need to rethink how I've implemented it.The new indicators react weirdly to characters with the Lost status effect, including letting me click on them in a dark room (where they're not visible) and open their command menu.
Have to look into this.I'm pretty sure I chose to retain the Corrupt action in NG+, but can't use it.
Huh... Looks like it is on my end. But I don't think it's unrelated to the game, because I literally just closed out of a game where the sound was working just fine to open this one, and now the sound's not working for anything. The volume controller indicates that there's no sound trying to come through, either... Let's see what the task manager has to say... Huh. How normal is it for the game's memory usage to tick up by about 1MB every two seconds? I'm gonna try restarting my computer...I mean I definitely would have noticed this if it was the case on my end, so I'm not sure how you got yourself in that position because... Yes it does?
Thank you for your sacrifice, you will be remembered.King ded