Artificial Awakening 0.9 Alfa
Artificial Awakening » Devlog
The alfa build is available on Patreon and Subscribestar.
Patreon: https://www.patreon.com/posts/artificial-0-9-75874788
Subscribestar: https://subscribestar.adult/posts/674391
Patch Notes:
5 New events
11 new animations
Added some Interaction with characters throughout the map.
Typos Fixed
Previous Bugs Fixed
Added a Halloween event. (You can check it out where previous Christmas event was.)
Christmas event has been unlocked in the gallery by default.
Get Artificial Awakening
Buy Now$5.00 USD or more
Artificial Awakening
Artificial Awakening is an Adult game in pre alpha right now , it's made on ren'py
Status | In development |
Author | ShinyDarkRai |
Genre | Visual Novel |
Tags | 3D, Adult, Erotic, Hentai, incest, Male protagonist, mobile-game, NSFW, Porn, Sandbox |
Languages | English |
Accessibility | Subtitles, Interactive tutorial |
More posts
- Poll Regarding Next updateNov 15, 2023
- Artificial Awakening 0.10.1 BugFixNov 10, 2023
- Artificial Awakening 0.10 PublicNov 09, 2023
- Artificial Awakening 0.10 alfaNov 05, 2023
- New Poll on patreon and subscribestar.Dec 30, 2022
- Merry Christmas Everyone!!Dec 24, 2022
- Artificial Awakening 0.9 ReleaseDec 17, 2022
- Happy HalloweenNov 04, 2022
- Artificial Awakening 0.8 Public ReleaseAug 12, 2022
Comments
Log in with itch.io to leave a comment.
Small bug with mother_event_1 as the scene can play twice.
In Episode 4 the entry "$ my_events.add("mother_event_1")" is missing and MC House checks this to see if the event was done.
To resolve this either add that to Episode 4 or in the mother_event_1 a small thing at the beginning to make sure that gets added.
if "mother_event_1" not in my_events:
$ my_events.add("mother_event_1")
Did you test version 0.8? Because there is already the new version.
I did it on 0.9 though seeing as it was something related to family I figured reporting it here was safer than patreon :P
There isn't an entry added in episode4.rpy for my_events but it checks if that was entered in MC_house.rpy so if you seen it in episode 4 and go back to your house you can see it play out again. Adding entries to my_events when the event plays is safer than adding it before.
I tried a full playthrough of the main story and I could not replicate the problem. I looked at the code and I could not find the problem. Maybe you have an older save you are playing on?
It happens on a new playthough.
The problem is "$ my_events.add("mother_event_1")" is only entered once outside of the event and the event can play twice.
To replicate it:
1 - Don't do anything with the nurse. No blowjobs for you :P
2 - Follow main story line so "principal_event_3" gets added to my_event.
3 - In "label principal_event_3.part_3" without a blowjob from the nurse it will trigger 'mother_event_1'
4 - Wait until Night at MC House Entrance. This checks if "principal_event_3" was entered into my_event and after checks if "mother_event_1" was entered. Going with the no nurse love for you route it won't be in the list.
5 - This triggers 'mother_event_1' to play again. Other than scoring more love/hate with Akari it's not game breaking just odd that it plays twice.
Oh, I found it now. Now it shouldn’t trigger ‘mother_event_1’ twice. Thanks for your help.