Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

you're aware that you don't have to ask the player about the used platform? the renpy framework is aware of the environment, you can use the variables listed in https://www.renpy.org/doc/html/other.html#platform-detection

easiest is probably something like

if renpy.mobile:
    # set your mobile device stuff
else:
    # you can expect mouse/keyboard as input
    # and ask the player if the menu should be shown

please do not check _only_ for windows and android, renpy is used on a lot of platforms (in my case linux), do not lock out users just because you don't use anything outside of win and droid :)

in the photo shoot with Amanda MC always uses Emilia's stage name (Luna is the default, iirc) but he slips later on, in script.rpy starting in line 7630. worst opsec ever :) 

was MC 10 (script.rpy:11206) or 11 (script.rpy:13405) years old when he got his first PC?

(+1)

Hey, Thank you for your comments.
I discovered the renpy variables containing the platform long after writing this, but anyway this intro needs a bit of an overhaul so I'll be making this change at the same time.
Indeed, the MC seem to have a bit of trouble remembering the date of his first PC, so that will be rectified!
And about the use of Emilie's nickname during the shooting with Amanda, there is indeed a problem, thank you for pointing it out.

(2 edits) (+2)

nice game, btw, I'm hooked.

Cassandra's relationship screen throws an error about the undefined variable cassandra_slave (used a few times in relation.rpy). 

PS it is defined, in script2.rpy, but in my playthrough I am not yet there. could be fixed with after_load*, to make the variable available earlier when not yet defined

* https://www.renpy.org/doc/html/label.html#special-labels

sorry, missed the bugfix you released