Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

not seeing the whole text line irritates me a lot, could you maybe set the cps to infinity when a speed of 10 is selected? replacing the function in init.rpy with somthing like this should work

    def textSpeed(speed):
         if speed<7:
             preferences.text_cps = speed*5
         elif speed==10:
             preferences.text_cps = 0
         else:
             preferences.text_cps = speed*15

bonus: handful of typos (line numbers vaid for the paid version here on itch)

storyParts/nightEventRoommate.rpy:202: definetly->definitely

storyParts/lindaStory6.rpy:431: embarrased->embarrassed

customScreens/newPhone.rpy:493: embarrasing->embarrassing

storyParts/prologue.rpy:4093: everyting->everything

storyParts/fairyStory3.rpy:11, storyParts/prologue.rpy:734, storyParts/twinsStory2.rpy:414: familliar->familiar

storyParts/margaretStory3.rpy:278: mariage->marriage

storyParts/julietStory2.rpy:1105: nontheless->nonetheless

storyParts/margaretStory5.rpy:1215: palce->place

storyParts/prologue.rpy:3961: recieve->receive

storyParts/julietStory2.rpy:917: sandwhich->sandwich

storyParts/margaretStory3.rpy:239: seperate->separate

storyParts/landLadyStory5.rpy:311, storyParts/teacherStory10.rpy:219: similiar->similar

storyParts/prologue2.rpy:197: suprised->surprised

storyParts/lindaStory1.rpy:233: wih->with

in julietStory1.rpy a text message from her is received (line 491) but her contact not unlocked. seems to be a general issue, the governing variable (unlockJulietPhone) is only set in a label called afterAndroidQuickstart (extraScripts.rpy), something that sounds like a mobile-specific renpy-internal thingy?

and a lot of [m] should be replaced with [m2] or [m1], reading dialogue where someone is called as "name (relationship)" is awkward ;)