- Nov 26, 2022
- 77
- 220
All the best to your mother Wendy The Red.
Make the game at your pace.
But these previews are looking really nice.
Make the game at your pace.
But these previews are looking really nice.
You're not far off on the influences. Except Twilight. Nope!Sorry to hear about your mother. Hope everything works out.
Game is very interesting, bizarre mix of From, Silent Hill, Twin Peaks, Twilight. Unsure if this has been posted already but I found an error whenYou don't have permission to view the spoiler content. Log in or register now.
If you're on mobile I've heard some phones have a security setting that disables HTML files from accessing other files on your phone. I'm sure that can be turned off but I don't know how to do it as I don't game on my phone. If you're on PC or Mac I have no idea why that would happen. Did you download the full zip and unzip it somewhere? If you just grabbed the HTML it wouldn't have the images in it.images are not loading , what to do ???
umm playing the fix in april 2023, get caught when Anya and amber broke in.On the side bar do you have "Ray is blackmailing you! Go to the motel to meet him." in red? Is the time between 8pm and 10pm? Can you send me a save please? I'm looking at the code and can't see any issues and I didn't make any changes to it either.
Edit: Actually, I did make a change to the motel screen to fix a rare occurrence where a person could go there and get a blank screen. But I haven't had any bug reports on it until now.
also on that Saturday event, set $events.rayAttractionDay to $gameDate.getDay() +2 actually sets rayAttractionDay to 8 and it will never trigger because $gameDate.getDay() is 1 on Monday and they will never matchI'm going to have to look at the code. Amber and Anya break in on Saturday. The original blackmail happens on your very first day. I'm wondering if I did something I forgot about, maybe a new onramp to the blackmail or something.
Thanks for this feedback. I'll have to look this over and work on it. Assuming your fixes work which I think they will then all is well though it won't fix the issue for players who are already past that point.also on that Saturday event, set $events.rayAttractionDay to $gameDate.getDay() +2 actually sets rayAttractionDay to 8 and it will never trigger because $gameDate.getDay() is 1 on Monday and they will never match
if you want to set the blackmail event to work on Mondays, you need to set $events.rayAttractionDay to ($gameDate.getDay() +2)%7
it seems like you have used this " set datingDay to getDay() + 2 " more than once. this will cause trouble for events on Fridays and Saturdays because getDay() + 2 would then give you 7 and 8 while getDay() has a range of 0 to 6
(20 - $gameDate.getHours() ) lte 2 and (20 - $gameDate.getHours() ) gte 0, also for this line it seems the event would happen between 6pm to 8pm, is this the intended trigger time?
I'm genuinely unsure if it is appropriate to use any reaction emoticon here, so...just wanna say thanks for continuing your work & I am very excited for the new update. In regards to the burden you have to carry I wanna express my sympathy and that obviously everything related to SoSF is a secondary concern. Despite everything I continue to hope your private situation takes a turn for the better or in the very least that there will be a gentle end to the uncertainty and pain.So, where do things stand? I have one last event to write before the release. It will require 2-3 new "sets" being introduced into the game as the event is in the previously unseen Tisdale manor! There is a possibility of 1-2 sex scenes in this event depending on if you work for the Mayor or not and if you get caught during your "mission" in the manor.
Assuming all goes well I really, really hope to have the update out this month.
News about my mother that might impact the update. Spoilered for those who don't want to know:
You don't have permission to view the spoiler content. Log in or register now.
Anyway, on to something less grim, how about some previews?
You don't have permission to view the spoiler content. Log in or register now.
I won't lie, the stuff going on is what has made this update feel like it's taking forever. Some days I throw myself into the game because it helps me not think about stuff and, well, I got my artistic side from my mother. Other days, it's all I can do to watch Youtube videos and just sort of...zone out all day long. The latter doesn't help much with my day job either.I'm genuinely unsure if it is appropriate to use any reaction emoticon here, so...just wanna say thanks for continuing your work & I am very excited for the new update. In regards to the burden you have to carry I wanna express my sympathy and that obviously everything related to SoSF is a secondary concern. Despite everything I continue to hope your private situation takes a turn for the better or in the very least that there will be a gentle end to the uncertainty and pain.
Best wishes and take care.
That is very relatable, the sort of situation you are in doesn't help with anything, let's be real. So anything that helps you deal with it is fair game.I won't lie, the stuff going on is what has made this update feel like it's taking forever. Some days I throw myself into the game because it helps me not think about stuff and, well, I got my artistic side from my mother. Other days, it's all I can do to watch Youtube videos and just sort of...zone out all day long. The latter doesn't help much with my day job either.
Yes, do what you need to cope with the situation.That is very relatable, the sort of situation you are in doesn't help with anything, let's be real. So anything that helps you deal with it is fair game.
So, where do things stand? I have one last event to write before the release. It will require 2-3 new "sets" being introduced into the game as the event is in the previously unseen Tisdale manor! There is a possibility of 1-2 sex scenes in this event depending on if you work for the Mayor or not and if you get caught during your "mission" in the manor.
Assuming all goes well I really, really hope to have the update out this month.
News about my mother that might impact the update. Spoilered for those who don't want to know:
You don't have permission to view the spoiler content. Log in or register now.
Anyway, on to something less grim, how about some previews?
You don't have permission to view the spoiler content. Log in or register now.
I'm really sorry to hear about your mum. Here, I'm lending you my strength.So, where do things stand? I have one last event to write before the release. It will require 2-3 new "sets" being introduced into the game as the event is in the previously unseen Tisdale manor! There is a possibility of 1-2 sex scenes in this event depending on if you work for the Mayor or not and if you get caught during your "mission" in the manor.
Assuming all goes well I really, really hope to have the update out this month.
News about my mother that might impact the update. Spoilered for those who don't want to know:
You don't have permission to view the spoiler content. Log in or register now.
Anyway, on to something less grim, how about some previews?
You don't have permission to view the spoiler content. Log in or register now.
So, I realized when looking at this that I'm a bit of an idiot sometimes. First, your solution is exactly right. But secondly, it's not needed. I just need to set that variable to 1 and call it a day.also on that Saturday event, set $events.rayAttractionDay to $gameDate.getDay() +2 actually sets rayAttractionDay to 8 and it will never trigger because $gameDate.getDay() is 1 on Monday and they will never match
if you want to set the blackmail event to work on Mondays, you need to set $events.rayAttractionDay to ($gameDate.getDay() +2)%7
it seems like you have used this " set datingDay to getDay() + 2 " more than once. this will cause trouble for events on Fridays and Saturdays because getDay() + 2 would then give you 7 and 8 while getDay() has a range of 0 to 6
(20 - $gameDate.getHours() ) lte 2 and (20 - $gameDate.getHours() ) gte 0, also for this line it seems the event would happen between 6pm to 8pm, is this the intended trigger time?