Forix

Member
Apr 21, 2017
485
613
Code:
While running game code:
  File "game/chapter_5.rpy", line 4163, in script
    if PhotoCute == True:
  File "game/chapter_5.rpy", line 4163, in <module>
    if PhotoCute == True:
NameError: name 'PhotoCute' is not defined
Dev...

You are using two mutually exclusive logicals PhotoCute and PhotoSexy but only set one versus the other in this menu section at line 4072:

Code:
    menu:
        "Take a cute photos.":
            $ pass
            $ shy += 1
            $ PhotoCute = True
            hide m--smile
            show m--worried
            with dissolve
            m "(Maybe people will appreciate it more if I show how I really am.)"
        "Take sexy photos.":
            $ pass
            $ sluty += 1
            $ PhotoSexy = True
            hide m--smile
            show m--smug
            with dissolve
            m "(I decided to take a picture that made me look a bit sexier.)"
            m "(Not too daring, but a bit provocative.)"
While you did add both as False to your game/script.rpy in this update (I'm guessing), people who load saves from previous versions will never get around to executing that code because it is behind the start label. As such, the pair will only be defined when the user starts a whole new game. You need to fix your menu code as follows:

Code:
    menu:
        "Take a cute photos.":
            $ pass
            $ shy += 1
            $ PhotoCute = True
            $ PhotoSexy = False
            hide m--smile
            show m--worried
            with dissolve
            m "(Maybe people will appreciate it more if I show how I really am.)"
        "Take sexy photos.":
            $ pass
            $ sluty += 1
            $ PhotoSexy = True
            $ PhotoCute = False
            hide m--smile
            show m--smug
            with dissolve
            m "(I decided to take a picture that made me look a bit sexier.)"
            m "(Not too daring, but a bit provocative.)"
I've attached the fixed chapter05.rpy View attachment 1572808

Oh... And also forgot to mention that I had gone in and changed all of the dev's renpy.block_rollback() calls to pass statements since it is one of the first things I look for in all VN's I download.
Shy Girl Art Pay attention to this dev :)
 

Srg3369

Member
Aug 25, 2021
110
163
Omg!! 1 week for next release is this a real update or just bug fixes cause i think you are racing the speed of light mate
 
  • Like
Reactions: Volontieur

rlreddit86

Member
Jul 30, 2020
124
189
Really enjoy the consistent updates but I'd like a bit more time between them so it's not a 10 minute update every week. I'd rather have one or maybe 2 a month.

Either way, great game.
 

Lucasa420

New Member
Nov 11, 2021
8
2
View attachment 1237257

Overview:
You play as Mary and make choices that will affect her story in a meaningful way.
Mary is a young and very beautiful student. She attracts many people with her beauty. But she is very polite and shy girl.
Will she overcome her shyness to make new acquaintances and enjoy life?
Will she be a polite or sluty girl?​

Thread Updated: 2022-01-04
Release Date: 2022-01-04
Developer: ShyGirlArt - -
Censored: No
Version: 0.45
OS: Windows, Mac
Language: English
Genre:
You don't have permission to view the spoiler content. Log in or register now.

Installation:
You don't have permission to view the spoiler content. Log in or register now.

Changelog:
You don't have permission to view the spoiler content. Log in or register now.
DOWNLOAD
Win/Linux
: - - MEGA -
Mac: - - MEGA -
Other: ANDROID

Extra: Walkthrough Mod


*unofficial port/versions are not given by the developer. Use at your own risk

View attachment 1237251 View attachment 1237252 View attachment 1237253 View attachment 1237254 View attachment 1237255 View attachment 1237256 View attachment 1420288 View attachment 1420287 View attachment 1420286 View attachment 1579694 View attachment 1579693 View attachment 1579691 View attachment 1579690 View attachment 1579689
No android :((
 

Taven Val

Member
Mar 21, 2018
381
643
Really enjoy the consistent updates but I'd like a bit more time between them so it's not a 10 minute update every week. I'd rather have one or maybe 2 a month.

Either way, great game.
any progress on cheating route with store guy? might skip if not, thank you!
 

kuzazi123

Newbie
May 3, 2020
51
13
While running game code:
File "game/chapter_5.rpy", line 9178, in script
if parkFuck == True:
File "game/chapter_5.rpy", line 9178, in <module>
if parkFuck == True:
NameError: name 'parkFuck' is not defined

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "game/chapter_5.rpy", line 9178, in script
if parkFuck == True:
File "renpy/ast.py", line 1898, in execute
if renpy.python.py_eval(condition):
File "renpy/python.py", line 2276, in py_eval
return py_eval_bytecode(code, globals, locals)
File "renpy/python.py", line 2269, in py_eval_bytecode
return eval(bytecode, globals, locals)
File "game/chapter_5.rpy", line 9178, in <module>
if parkFuck == True:
NameError: name 'parkFuck' is not defined

pick any options still got the same error
 
  • Like
Reactions: Shy Girl Art

phupdup

Well-Known Member
Oct 24, 2019
1,391
1,080
While running game code:
File "game/chapter_5.rpy", line 9178, in script
if parkFuck == True:
File "game/chapter_5.rpy", line 9178, in <module>
if parkFuck == True:
NameError: name 'parkFuck' is not defined

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "game/chapter_5.rpy", line 9178, in script
if parkFuck == True:
File "renpy/ast.py", line 1898, in execute
if renpy.python.py_eval(condition):
File "renpy/python.py", line 2276, in py_eval
return py_eval_bytecode(code, globals, locals)
File "renpy/python.py", line 2269, in py_eval_bytecode
return eval(bytecode, globals, locals)
File "game/chapter_5.rpy", line 9178, in <module>
if parkFuck == True:
NameError: name 'parkFuck' is not defined

pick any options still got the same error

Try using my attached script.rpy.

Dev

I'm attaching the enclosed script.rpy to show you how to use define statements to assign default values to your variables. I've changed this section in game/script.rpy that was behind the start label:

Code:
label start:

    stop music

    $ shy = 50
    $ sluty = 0

    $ cuck = 0

    $ moR = 0
    $ daR = 0

    $ iR = 0
    $ jR = 0
    $ aR = 0
    $ laR = 0

    $ parentsSex = False
    $ moNoneOrgasm = False
    $ moTiran = False
    $ moHelp = False

    $ masturbation = False
    $ toy = False

    $ jBoy = False

    $ jCorruption = False
    $ jCuck = False
    $ jMutualMasturbation = False
    $ jOrgasm = False

    $ mkBoy = False
    $ aBoy = False
    $ mOne = False
    $ mOne2 = False
    $ mData = False

    $ sBoy = False

    $ iGirl = False

    $ CamGirl = False

    $ film = False
   
    $ sexy = False
    $ sexy1 = False
    $ sexy2 = False
    $ sexy3 = False

    $ AlexStrip = False

    $ iSex = False
    $ iDoubleSex = False

    $ mHome = False
    $ mStockings = False
    $ mPantiesStockings = False

    $ mkCreampie = False

    $ showerM = False

    $ Larry = False
    $ NightBlue = False
    $ NightPink = False

    $ iRed = False

    $ PhotoCute = False
    $ PhotoSexy = False

    $ SentPic = False
    $ SawPic = False
    $ PussyPic = False

    $ Cunnilingus = False
    $ parkSex = False
    $ parkFuck = False
    $ jKiss = False

    $ vibrator = False
to move the variables up to the top of the file as defines as follows:

Code:
# The script of the game goes in this file.

#
#  default values for variables.  Moved up from behind the start label so
#  users can properly load old saved games
#

define shy = 50
define sluty = 0

define cuck = 0

define moR = 0
define daR = 0

define iR = 0
define jR = 0
define aR = 0
define laR = 0

define parentsSex = False
define moNoneOrgasm = False
define moTiran = False
define moHelp = False

define masturbation = False
define toy = False

define jBoy = False

define jCorruption = False
define jCuck = False
define jMutualMasturbation = False
define jOrgasm = False

define mkBoy = False
define aBoy = False
define mOne = False
define mOne2 = False
define mData = False

define sBoy = False

define iGirl = False

define CamGirl = False

define film = False
   
define sexy = False
define sexy1 = False
define sexy2 = False
define sexy3 = False

define AlexStrip = False

define iSex = False
define iDoubleSex = False

define mHome = False
define mStockings = False
define mPantiesStockings = False

define mkCreampie = False

define showerM = False

define Larry = False
define NightBlue = False
define NightPink = False

define iRed = False

define PhotoCute = False
define PhotoSexy = False

define SentPic = False
define SawPic = False
define PussyPic = False

define Cunnilingus = False
define parkSex = False
define parkFuck = False
define jKiss = False

define vibrator = False
In the future, please add your new variables to be defines at the top of your script to avoid the repeated stack dumps that people have been getting when loading old saves with your new releases.
 
3.30 star(s) 27 Votes