Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Crying Snow

2
Posts
3
Followers
1
Following
A member registered Jul 31, 2023 · View creator page →

Creator of

Recent community posts

Hello, I just wanted to let you know that I'm making a game using this superb asset.

I'd be glad if you'd like to check it out: Farming Story

Thank you!

(11 edits)

Here is a little "hack" that worked for me:

Find these lines in PhoneTexting.rpy:

if d.who == MC_Name:
    color "#FFF"
    text_align 1.0
    xpos -580
else:
    color "#000"

Replace the xpos -580 with this:

if renpy.variant("small"):
    xpos -1067 # adjust this number as you see fit
else:
    xpos -580

Now the whole code should look like this:

if d.who == MC_Name :
    color "#FFF"
    text_align 1.0
    if renpy.variant("small"):
        xpos -1067
    else:
        xpos -580
else:
    color "#000"