- Oct 27, 2017
- 290
- 560
Dude ya gotta chill with these updates. Take a month or two, go back and improve things instead of rushing out 10 min updates every week.
Shy Girl Art Pay attention to this devDev...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
You are using two mutually exclusive logicals PhotoCute and PhotoSexy but only set one versus the other in this menu section at line 4072:
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 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.)"
I've attached the fixed chapter05.rpy View attachment 1572808Code: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.)"
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.
No android (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 -You must be registered to see the links-You must be registered to see the links
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:You must be registered to see the links-You must be registered to see the links- MEGA -You must be registered to see the links
Mac:You must be registered to see the links-You must be registered to see the links- MEGA -You must be registered to see the links
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
any progress on cheating route with store guy? might skip if not, thank you!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.
If you mean clothes store then no progress for him yet but there are scene with ingrid or jon or mike or daveany progress on cheating route with store guy? might skip if not, thank you!
gotcha, thank you!If you mean clothes store then no progress for him yet but there are scene with ingrid or jon or mike or dave
There no path yet for himHow do you get the Alex path? (blonde guy)
Download joyplay and play the pc version on andoridNo android (
Mary must be alone. (She should not go on a double date with Ingrid.)How do you get the Alex path? (blonde guy)
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
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
# 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
Is it just fixes or is there are any story progress?