More images added, NSFW option implemented

This commit is contained in:
writerdev
2022-03-03 21:32:26 -08:00
parent 549fc17581
commit 4efbcbd5cc
28 changed files with 751 additions and 36 deletions

View File

@ -2,9 +2,13 @@
errors listed below, and try again. errors listed below, and try again.
File "game/script.rpy", line 75: expected 'image_name_component' not found. File "game/script.rpy", line 24: expected statement.
scene "Farelie01" at Pan((0, 1031), (0, 0), 10.0) with dissolve lewd = False
^
File "game/script.rpy", line 29: expected statement.
lewd = True
^ ^
Ren'Py Version: Ren'Py 7.4.9.2142 Ren'Py Version: Ren'Py 7.4.9.2142
Thu Mar 3 17:18:33 2022 Thu Mar 3 19:27:11 2022

BIN
game/.DS_Store vendored

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 624 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 654 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 631 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 702 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 682 KiB

BIN
game/images/jacobladder.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 856 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 930 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -16,6 +16,17 @@ define F = Character ('Farelie',color="#8A0036",window_background="gui/textbox.p
label start: label start:
$ Farelie = 0 $ Farelie = 0
menu:
"The script contains swearing and other family unfriendly images, would you be okay with seeing that?"
"no thank you":
"No Saucy bits Activated..."
scene black with fade
$ lewd = False
"yeah":
"Saucy bits Activated..."
scene black with fade
$ lewd = True
"The early morning summer sun shines through the clouds, illuminating the quiet dirt parking lot." "The early morning summer sun shines through the clouds, illuminating the quiet dirt parking lot."
@ -136,6 +147,7 @@ M "You want to stretch your leg like this."
"I demonstrate the stretch to her, and watch her carefully to make sure shes doing it right this time." "I demonstrate the stretch to her, and watch her carefully to make sure shes doing it right this time."
F "L-like this?" F "L-like this?"
scene farelie_stretch
"She strains to stay upright, and I count aloud so she knows when to ease off her leg." "She strains to stay upright, and I count aloud so she knows when to ease off her leg."
@ -146,6 +158,7 @@ F "L-like this?"
M "Alright, let me set the pace." M "Alright, let me set the pace."
"She nods and smiles uneasily." "She nods and smiles uneasily."
scene black with dissolve
"With her approval I set a sedate jogging pace for her and head towards the first obstacle." "With her approval I set a sedate jogging pace for her and head towards the first obstacle."
@ -180,6 +193,7 @@ M "Gotta keep hydrated."
F "Oh, Im good, trust me." F "Oh, Im good, trust me."
"Farelie pulls out a furiously pink bottle filled with a slurry of something." "Farelie pulls out a furiously pink bottle filled with a slurry of something."
scene fareliebottle1
F "I got this super scientific formula at the market." F "I got this super scientific formula at the market."
@ -217,6 +231,7 @@ M "And destroy bathrooms."
"{i}The horrors.{/i}" "{i}The horrors.{/i}"
"Farelie frowns but takes the proffered canteen." "Farelie frowns but takes the proffered canteen."
scene fareliecanteen1
F "Fine… but it really smelled good, like a banana-strawberry shake." F "Fine… but it really smelled good, like a banana-strawberry shake."
@ -231,6 +246,7 @@ M "I think I can refill my canteen when we get to a good break spot."
F "Mkay." F "Mkay."
"Shes careful to pour the icy water on her pink gills, a shiver runs over her entire body as the liquid life refreshes her dried out skin." "Shes careful to pour the icy water on her pink gills, a shiver runs over her entire body as the liquid life refreshes her dried out skin."
scene fareliecanteen2
F "O-oh, thats nice." F "O-oh, thats nice."
@ -247,6 +263,7 @@ label shutup:
"See her eyes water as she forces the disgusting sweetened slurry down." "See her eyes water as she forces the disgusting sweetened slurry down."
"Farelies lips pop and she turns a very unconvincing smile towards me." "Farelies lips pop and she turns a very unconvincing smile towards me."
scene fareliebottle2
F "Mmmm, d-delicious…" F "Mmmm, d-delicious…"
@ -256,6 +273,9 @@ F "Sure."
F "In fact, lets trade, you can have the rest of this!" F "In fact, lets trade, you can have the rest of this!"
if lewd:
"Ah fuck."
else:
"Ah crap." "Ah crap."
"I fake sip from the clear bottle and nod to Farelie." "I fake sip from the clear bottle and nod to Farelie."
@ -267,6 +287,8 @@ F "In fact, lets trade, you can have the rest of this!"
jump secondchoice jump secondchoice
label secondchoice: label secondchoice:
scene black with dissolve
M "You ready to keep going?" M "You ready to keep going?"
F "Yeah, lets go!" F "Yeah, lets go!"
@ -278,6 +300,7 @@ F "Yeah, lets go!"
"I dart my eyes over to Farelies face, and see her pink features paling as she takes it in." "I dart my eyes over to Farelies face, and see her pink features paling as she takes it in."
"Before us lies the Jacobs Ladder segment." "Before us lies the Jacobs Ladder segment."
scene jacobladder
"Its a giant, well, ladder." "Its a giant, well, ladder."
@ -330,6 +353,7 @@ F "I guess so."
"I swear I can see her suppress a grin." "I swear I can see her suppress a grin."
"She reaches the midway point, but my smile fades as I see her falter." "She reaches the midway point, but my smile fades as I see her falter."
scene ladderclimb1
"She pauses, taking in several long breaths." "She pauses, taking in several long breaths."
@ -1092,7 +1116,10 @@ F "Okay. Lets do this."
F "-Twenty-seven, twenty-eight, twenty-nine-" F "-Twenty-seven, twenty-eight, twenty-nine-"
if lewd:
"Shit, just like her I should focus on my own warm-ups." "Shit, just like her I should focus on my own warm-ups."
else:
"Crap, just like her I should focus on my own warm-ups."
"I twist, contort, untwist, and stretch, feeling my muscles loosen and warm-up." "I twist, contort, untwist, and stretch, feeling my muscles loosen and warm-up."
@ -1306,7 +1333,10 @@ F "You know what."
"After a moment of struggling, she relaxes and rests her chin on my shoulder." "After a moment of struggling, she relaxes and rests her chin on my shoulder."
if lewd:
F "Ass." F "Ass."
else:
F "Jerk."
M "I love you too." M "I love you too."

Binary file not shown.

737
log.txt
View File

@ -1,38 +1,38 @@
Thu Mar 3 18:03:37 2022 Thu Mar 3 18:45:14 2022
Darwin-17.7.0-x86_64-i386-64bit Darwin-17.7.0-x86_64-i386-64bit
Ren'Py 7.4.9.2142 Ren'Py 7.4.9.2142
Bootstrap to the start of init.init took 0.27s Bootstrap to the start of init.init took 0.17s
Early init took 0.01s Early init took 0.01s
Loader init took 0.02s Loader init took 0.07s
Loading error handling took 0.07s Loading error handling took 0.06s
Loading script took 0.34s Loading script took 0.56s
Loading save slot metadata. took 0.05s Loading save slot metadata. took 0.08s
Loading persistent took 0.01s Loading persistent took 0.00s
Importing _renpysteam: ImportError('No module named _renpysteam',) Importing _renpysteam: ImportError('No module named _renpysteam',)
Running init code took 0.13s Running init code took 0.14s
Loading analysis data took 0.07s Loading analysis data took 0.03s
Analyze and compile ATL took 0.15s Analyze and compile ATL took 0.00s
Index archives took 0.00s Index archives took 0.00s
Dump and make backups. took 0.21s Dump and make backups. took 0.11s
Cleaning cache took 0.00s Cleaning cache took 0.00s
Making clean stores took 0.01s Making clean stores took 0.00s
Initial gc. took 0.04s Initial gc. took 0.03s
DPI scale factor: 1.000000 DPI scale factor: 1.000000
Creating interface object took 0.00s Creating interface object took 0.00s
Cleaning stores took 0.00s Cleaning stores took 0.00s
Init translation took 0.16s Init translation took 0.06s
Build styles took 0.01s Build styles took 0.01s
Load screen analysis took 0.10s Load screen analysis took 0.03s
Analyze screens took 0.00s Analyze screens took 0.00s
Save screen analysis took 0.00s Save screen analysis took 0.00s
Prepare screens took 0.69s Prepare screens took 0.12s
Save pyanalysis. took 0.00s Save pyanalysis. took 0.00s
Save bytecode. took 0.00s Save bytecode. took 0.00s
Running _start took 0.12s Running _start took 0.00s
Performance test: Performance test:
Interface start took 1.23s Interface start took 0.96s
Initializing gl2 renderer: Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900) primary display bounds: (0, 0, 1440, 900)
@ -44,19 +44,700 @@ Version: '2.1 INTEL-10.36.32'
Display Info: None Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753) Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096 Maximum texture size: 4096x4096
ual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753) Resetting cache.
Bootstrap to the start of init.init took 77.01s
Early init took 0.00s
Loader init took 0.06s
Loading error handling took 0.06s
Loading script took 0.88s
Loading save slot metadata. took 0.07s
Loading persistent took 0.00s
Importing _renpysteam: ImportError('No module named _renpysteam',)
Running init code took 0.10s
Loading analysis data took 0.05s
Analyze and compile ATL took 0.01s
Index archives took 0.00s
Backing up script files to '/Users/FieldFoxMk6/Library/RenPy/backups/She Likes You Alotl':
Dump and make backups. took 0.12s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Initial gc. took 0.08s
DPI scale factor: 1.000000
Creating interface object took 0.00s
Cleaning stores took 0.00s
Init translation took 0.08s
Build styles took 0.01s
Load screen analysis took 0.00s
Analyze screens took 0.03s
Save screen analysis took 0.05s
Prepare screens took 0.16s
Save pyanalysis. took 0.00s
Save bytecode. took 0.02s
Running _start took 0.00s
Performance test:
Interface start took 0.10s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 138.81s
Early init took 0.00s
Loader init took 0.06s
Loading error handling took 0.05s
Loading script took 0.75s
Loading save slot metadata. took 0.09s
Loading persistent took 0.00s
Importing _renpysteam: ImportError('No module named _renpysteam',)
Running init code took 0.09s
Loading analysis data took 0.05s
Analyze and compile ATL took 0.01s
Index archives took 0.00s
Backing up script files to '/Users/FieldFoxMk6/Library/RenPy/backups/She Likes You Alotl':
Dump and make backups. took 0.14s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Initial gc. took 0.08s
DPI scale factor: 1.000000
Creating interface object took 0.00s
Cleaning stores took 0.00s
Init translation took 0.08s
Build styles took 0.01s
Load screen analysis took 0.00s
Analyze screens took 0.03s
Save screen analysis took 0.05s
Prepare screens took 0.15s
Save pyanalysis. took 0.00s
Save bytecode. took 0.02s
Running _start took 0.00s
Performance test:
Interface start took 0.11s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 210.81s
Early init took 0.00s
Loader init took 0.07s
Loading error handling took 0.06s
Loading script took 1.11s
Loading save slot metadata. took 0.11s
Loading persistent took 0.00s
Importing _renpysteam: ImportError('No module named _renpysteam',)
Running init code took 0.13s
Loading analysis data took 0.06s
Analyze and compile ATL took 0.01s
Index archives took 0.00s
Backing up script files to '/Users/FieldFoxMk6/Library/RenPy/backups/She Likes You Alotl':
Dump and make backups. took 0.19s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Initial gc. took 0.09s
DPI scale factor: 1.000000
Creating interface object took 0.00s
Cleaning stores took 0.00s
Init translation took 0.07s
Build styles took 0.01s
Load screen analysis took 0.00s
Analyze screens took 0.03s
Save screen analysis took 0.06s
Prepare screens took 0.15s
Save pyanalysis. took 0.00s
Save bytecode. took 0.02s
Running _start took 0.00s
Performance test:
Interface start took 0.12s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 260.19s
Early init took 0.00s
Loader init took 0.07s
Loading error handling took 0.05s
Loading script took 0.79s
Loading save slot metadata. took 0.07s
Loading persistent took 0.00s
Importing _renpysteam: ImportError('No module named _renpysteam',)
Running init code took 0.10s
Loading analysis data took 0.04s
Analyze and compile ATL took 0.01s
Index archives took 0.00s
Backing up script files to '/Users/FieldFoxMk6/Library/RenPy/backups/She Likes You Alotl':
Dump and make backups. took 0.13s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Initial gc. took 0.07s
DPI scale factor: 1.000000
Creating interface object took 0.00s
Cleaning stores took 0.00s
Init translation took 0.09s
Build styles took 0.01s
Load screen analysis took 0.00s
Analyze screens took 0.03s
Save screen analysis took 0.06s
Prepare screens took 0.17s
Save pyanalysis. took 0.00s
Save bytecode. took 0.02s
Running _start took 0.00s
Performance test:
Interface start took 0.11s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 274.92s
Early init took 0.00s
Loader init took 0.02s
Loading error handling took 0.05s
Loading script took 0.81s
Loading save slot metadata. took 0.07s
Loading persistent took 0.00s
Importing _renpysteam: ImportError('No module named _renpysteam',)
Running init code took 0.09s
Loading analysis data took 0.04s
Analyze and compile ATL took 0.01s
Index archives took 0.00s
Backing up script files to '/Users/FieldFoxMk6/Library/RenPy/backups/She Likes You Alotl':
Dump and make backups. took 0.11s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Initial gc. took 0.06s
DPI scale factor: 1.000000
Creating interface object took 0.00s
Cleaning stores took 0.00s
Init translation took 0.07s
Build styles took 0.01s
Load screen analysis took 0.00s
Analyze screens took 0.02s
Save screen analysis took 0.06s
Prepare screens took 0.14s
Save pyanalysis. took 0.00s
Save bytecode. took 0.02s
Running _start took 0.00s
Performance test:
Interface start took 0.11s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 418.01s
Early init took 0.00s
Loader init took 0.07s
Loading error handling took 0.05s
Loading script took 0.80s
Loading save slot metadata. took 0.07s
Loading persistent took 0.00s
Importing _renpysteam: ImportError('No module named _renpysteam',)
Running init code took 0.10s
Loading analysis data took 0.05s
Analyze and compile ATL took 0.01s
Index archives took 0.00s
Backing up script files to '/Users/FieldFoxMk6/Library/RenPy/backups/She Likes You Alotl':
Dump and make backups. took 0.12s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Initial gc. took 0.08s
DPI scale factor: 1.000000
Creating interface object took 0.00s
Cleaning stores took 0.00s
Init translation took 0.09s
Build styles took 0.01s
Load screen analysis took 0.00s
Analyze screens took 0.03s
Save screen analysis took 0.05s
Prepare screens took 0.17s
Save pyanalysis. took 0.00s
Save bytecode. took 0.02s
Running _start took 0.00s
Performance test:
Interface start took 0.10s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 479.70s
Early init took 0.00s
Loader init took 0.07s
Loading error handling took 0.06s
Loading script took 0.61s
Loading save slot metadata. took 0.07s
Loading persistent took 0.00s
Importing _renpysteam: ImportError('No module named _renpysteam',)
Running init code took 0.14s
Loading analysis data took 0.03s
Analyze and compile ATL took 0.01s
Index archives took 0.00s
Dump and make backups. took 0.12s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Initial gc. took 0.07s
DPI scale factor: 1.000000
Creating interface object took 0.00s
Cleaning stores took 0.00s
Init translation took 0.08s
Build styles took 0.01s
Load screen analysis took 0.04s
Analyze screens took 0.00s
Save screen analysis took 0.00s
Prepare screens took 0.16s
Save pyanalysis. took 0.00s
Save bytecode. took 0.00s
Running _start took 0.00s
Performance test:
Interface start took 0.14s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 1805.44s
Early init took 0.00s
Loader init took 0.06s
Loading error handling took 0.05s
Loading script took 0.76s
Loading save slot metadata. took 0.07s
Loading persistent took 0.00s
Importing _renpysteam: ImportError('No module named _renpysteam',)
Running init code took 0.09s
Loading analysis data took 0.04s
Analyze and compile ATL took 0.00s
Index archives took 0.00s
Backing up script files to '/Users/FieldFoxMk6/Library/RenPy/backups/She Likes You Alotl':
Dump and make backups. took 0.10s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Initial gc. took 0.05s
DPI scale factor: 1.000000
Creating interface object took 0.01s
Cleaning stores took 0.00s
Init translation took 0.07s
Build styles took 0.01s
Load screen analysis took 0.00s
Analyze screens took 0.02s
Save screen analysis took 0.04s
Prepare screens took 0.11s
Save pyanalysis. took 0.00s
Save bytecode. took 0.02s
Running _start took 0.00s
Performance test:
Interface start took 0.08s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 2277.51s
Early init took 0.00s
Loader init took 0.05s
Loading error handling took 0.05s
Loading script took 0.54s
Loading save slot metadata. took 0.03s
Loading persistent took 0.00s
File "game/script.rpy", line 1122: is not terminated with a newline. (Check strings and parenthesis.)
(Perhaps you left out a " at the end of the first line.)
Crap, just like her I should focus on my own warm-ups."
DPI scale factor: 1.000000
Interface start took 0.18s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 2307.89s
Early init took 0.00s
Loader init took 0.01s
Loading error handling took 0.05s
Loading script took 0.66s
Loading save slot metadata. took 0.06s
Loading persistent took 0.00s
File "game/script.rpy", line 24: expected statement.
lewd = False
^
File "game/script.rpy", line 29: expected statement.
lewd = True
^
File "game/script.rpy", line 276: reached end of line when expecting ':'.
if lewd = True
^
File "game/script.rpy", line 278: expected statement.
else
^
File "game/script.rpy", line 1119: reached end of line when expecting ':'.
if lewd = True
^
File "game/script.rpy", line 1121: expected statement.
else
^
File "game/script.rpy", line 1336: expected statement.
If lewd = True
^
DPI scale factor: 1.000000
Interface start took 0.14s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 2416.44s
Early init took 0.00s
Loader init took 0.07s
Loading error handling took 0.05s
Loading script took 0.67s
Loading save slot metadata. took 0.07s
Loading persistent took 0.00s
File "game/script.rpy", line 24: expected statement.
lewd = False
^
File "game/script.rpy", line 29: expected statement.
lewd = True
^
File "game/script.rpy", line 276: reached end of line when expecting ':'.
if lewd = True
^
File "game/script.rpy", line 278: expected statement.
elif lewd = False
^
File "game/script.rpy", line 1119: reached end of line when expecting ':'.
if lewd = True
^
File "game/script.rpy", line 1121: expected statement.
elif lewd = False
^
File "game/script.rpy", line 1336: reached end of line when expecting ':'.
if lewd = True
^
File "game/script.rpy", line 1338: expected statement.
elif lewd = False
^
DPI scale factor: 1.000000
Interface start took 0.16s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 2422.40s
Early init took 0.00s
Loader init took 0.01s
Loading error handling took 0.02s
Loading script took 0.23s
Loading save slot metadata. took 0.03s
Loading persistent took 0.00s
File "game/script.rpy", line 24: expected statement.
lewd = False
^
File "game/script.rpy", line 29: expected statement.
lewd = True
^
File "game/script.rpy", line 276: reached end of line when expecting ':'.
if lewd = True
^
File "game/script.rpy", line 278: expected statement.
elif lewd = False
^
File "game/script.rpy", line 1119: reached end of line when expecting ':'.
if lewd = True
^
File "game/script.rpy", line 1121: expected statement.
elif lewd = False
^
File "game/script.rpy", line 1336: reached end of line when expecting ':'.
if lewd = True
^
File "game/script.rpy", line 1338: expected statement.
elif lewd = False
^
DPI scale factor: 1.000000
Interface start took 0.16s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 2424.31s
Early init took 0.00s
Loader init took 0.01s
Loading error handling took 0.02s
Loading script took 0.23s
Loading save slot metadata. took 0.02s
Loading persistent took 0.00s
File "game/script.rpy", line 24: expected statement.
lewd = False
^
File "game/script.rpy", line 29: expected statement.
lewd = True
^
File "game/script.rpy", line 276: reached end of line when expecting ':'.
if lewd = True
^
File "game/script.rpy", line 278: expected statement.
elif lewd = False
^
File "game/script.rpy", line 1119: reached end of line when expecting ':'.
if lewd = True
^
File "game/script.rpy", line 1121: expected statement.
elif lewd = False
^
File "game/script.rpy", line 1336: reached end of line when expecting ':'.
if lewd = True
^
File "game/script.rpy", line 1338: expected statement.
elif lewd = False
^
DPI scale factor: 1.000000
Interface start took 0.15s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 2516.49s
Early init took 0.00s
Loader init took 0.07s
Loading error handling took 0.05s
Loading script took 0.64s
Loading save slot metadata. took 0.07s
Loading persistent took 0.00s
File "game/script.rpy", line 24: expected statement.
lewd = False
^
File "game/script.rpy", line 29: expected statement.
lewd = True
^
DPI scale factor: 1.000000
Interface start took 0.19s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096
Resetting cache.
Bootstrap to the start of init.init took 2548.42s
Early init took 0.00s
Loader init took 0.08s
Loading error handling took 0.06s
Loading script took 0.89s
Loading save slot metadata. took 0.08s
Loading persistent took 0.00s
Importing _renpysteam: ImportError('No module named _renpysteam',)
Running init code took 0.12s
Loading analysis data took 0.05s
Analyze and compile ATL took 0.01s
Index archives took 0.00s
Backing up script files to '/Users/FieldFoxMk6/Library/RenPy/backups/She Likes You Alotl':
Dump and make backups. took 0.11s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Initial gc. took 0.05s
DPI scale factor: 1.000000
Creating interface object took 0.00s
Cleaning stores took 0.00s
Init translation took 0.08s
Build styles took 0.01s
Load screen analysis took 0.00s
Analyze screens took 0.03s
Save screen analysis took 0.06s
Prepare screens took 0.14s
Save pyanalysis. took 0.00s
Save bytecode. took 0.02s
Running _start took 0.00s
Performance test:
Interface start took 0.11s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096 Maximum texture size: 4096x4096
Cleaning stores took 0.00s Cleaning stores took 0.00s
Init translation took 0.01s
Build styles took 0.02s
Load screen analysis took 0.06s
Analyze screens took 0.00s
Prepare screens took 0.00s
Running _start took 0.01s
Cleaning stores took 0.00s
Init translation took 0.00s Init translation took 0.00s
Build styles took 0.02s Build styles took 0.01s
Load screen analysis took 0.05s Load screen analysis took 0.05s
Analyze screens took 0.00s Analyze screens took 0.00s
Prepare screens took 0.00s Prepare screens took 0.00s
Running _start took 0.01s Running _start took 0.00s
Resetting cache.
Bootstrap to the start of init.init took 9601.73s
Early init took 0.01s
Loader init took 0.06s
Loading error handling took 0.06s
Loading script took 0.68s
Loading save slot metadata. took 0.06s
Loading persistent took 0.00s
Importing _renpysteam: ImportError('No module named _renpysteam',)
Running init code took 0.11s
Loading analysis data took 0.04s
Analyze and compile ATL took 0.00s
Index archives took 0.00s
Dump and make backups. took 0.10s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Initial gc. took 0.06s
DPI scale factor: 1.000000
Creating interface object took 0.01s
Cleaning stores took 0.00s
Init translation took 0.07s
Build styles took 0.01s
Load screen analysis took 0.03s
Analyze screens took 0.00s
Save screen analysis took 0.00s
Prepare screens took 0.12s
Save pyanalysis. took 0.00s
Save bytecode. took 0.00s
Running _start took 0.00s
Performance test:
Interface start took 0.14s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096