forked from Cavemanon/Farelie-game
added logo, 1 image, randomized choices
This commit is contained in:
@ -2,9 +2,9 @@
|
|||||||
errors listed below, and try again.
|
errors listed below, and try again.
|
||||||
|
|
||||||
|
|
||||||
File "game/script.rpy", line 503: choice menuitem expects a non-empty block.
|
File "game/script.rpy", line 75: expected 'image_name_component' not found.
|
||||||
"That's good enough":
|
scene "Farelie01" at Pan((0, 1031), (0, 0), 10.0) with dissolve
|
||||||
^
|
^
|
||||||
|
|
||||||
Ren'Py Version: Ren'Py 7.4.9.2142
|
Ren'Py Version: Ren'Py 7.4.9.2142
|
||||||
Mon Feb 28 15:40:18 2022
|
Thu Mar 3 17:18:33 2022
|
||||||
|
BIN
game/.DS_Store
vendored
BIN
game/.DS_Store
vendored
Binary file not shown.
BIN
game/audio/ragge.ogg
Normal file
BIN
game/audio/ragge.ogg
Normal file
Binary file not shown.
BIN
game/audio/slug coomers.ogg
Normal file
BIN
game/audio/slug coomers.ogg
Normal file
Binary file not shown.
BIN
game/cache/bytecode.rpyb
vendored
BIN
game/cache/bytecode.rpyb
vendored
Binary file not shown.
BIN
game/cache/screens.rpyb
vendored
BIN
game/cache/screens.rpyb
vendored
Binary file not shown.
BIN
game/images/.DS_Store
vendored
Normal file
BIN
game/images/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
game/images/Cavemanon_Logo.webm
Normal file
BIN
game/images/Cavemanon_Logo.webm
Normal file
Binary file not shown.
BIN
game/images/farelie01.png
Normal file
BIN
game/images/farelie01.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
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.
@ -1,5 +1,18 @@
|
|||||||
define M = Character ('Morgan',color="#2D36E1",window_background="gui/textbox.png",window_xoffset=120,window_yoffset=-79,what_xpos=245,what_ypos=125,who_xpos=-125,who_ypos=111) #Blue
|
init python:
|
||||||
define F = Character ('Farelie',color="#8A0036",window_background="gui/textbox.png",window_xoffset=120,window_yoffset=-79,what_xpos=245,what_ypos=125,who_xpos=-155,who_ypos=111) #Pink
|
def randomize_choices(choices):
|
||||||
|
# fine for size of 2
|
||||||
|
if (renpy.random.randint(0, 1)):
|
||||||
|
choices.reverse()
|
||||||
|
return choices
|
||||||
|
|
||||||
|
label splashscreen:
|
||||||
|
#play sound "audio/bongos.ogg"
|
||||||
|
$ renpy.movie_cutscene("images/Cavemanon_logo.webm")
|
||||||
|
#stop sound
|
||||||
|
return
|
||||||
|
|
||||||
|
define M = Character ('Morgan',color="#2D36E1",window_background="gui/textbox.png",who_xpos=-0,who_ypos=50) #Blue
|
||||||
|
define F = Character ('Farelie',color="#8A0036",window_background="gui/textbox.png",who_xpos=-0,who_ypos=50) #Pink
|
||||||
|
|
||||||
label start:
|
label start:
|
||||||
$ Farelie = 0
|
$ Farelie = 0
|
||||||
@ -72,6 +85,8 @@ M "These courses aren’t jungle gyms, and there’s your medicine to think abou
|
|||||||
|
|
||||||
"Farelie pays no mind to that, opening the backseat of the car and pulling out our backpacks for the day."
|
"Farelie pays no mind to that, opening the backseat of the car and pulling out our backpacks for the day."
|
||||||
|
|
||||||
|
scene farelie01 at Pan((0, 3125-1080), (0, 540/2), 10.0) with dissolve
|
||||||
|
|
||||||
F "C’mon, Morgan! The sooner we start the sooner we can get home and have a real dinner."
|
F "C’mon, Morgan! The sooner we start the sooner we can get home and have a real dinner."
|
||||||
|
|
||||||
F "Not your bland sandwiches."
|
F "Not your bland sandwiches."
|
||||||
@ -176,11 +191,17 @@ F "I got this super scientific formula at the market."
|
|||||||
|
|
||||||
"..."
|
"..."
|
||||||
|
|
||||||
menu:
|
#menu:
|
||||||
"Speak up":
|
#"Speak up":
|
||||||
jump speakup
|
# jump speakup
|
||||||
"Shut up":
|
#"Shut up":
|
||||||
jump shutup
|
# jump shutup
|
||||||
|
python:
|
||||||
|
#menu item text then label to jump into
|
||||||
|
choices = [('Speak Up', 'speakup'), #[] is list, () is tuple
|
||||||
|
('Shut Up', 'shutup')]
|
||||||
|
#narrator("", interact=False)
|
||||||
|
renpy.jump(renpy.display_menu(randomize_choices(choices)))
|
||||||
|
|
||||||
label speakup:
|
label speakup:
|
||||||
$ Farelie += 1
|
$ Farelie += 1
|
||||||
@ -334,11 +355,17 @@ M "There’s a cushion at the bottom for you."
|
|||||||
|
|
||||||
"... But I don’t want to risk her burning out and having to give up."
|
"... But I don’t want to risk her burning out and having to give up."
|
||||||
|
|
||||||
menu:
|
#menu:
|
||||||
"Try again later.":
|
# "Try again later.":
|
||||||
jump tryagain
|
# jump tryagain
|
||||||
"Encourage her to continue.":
|
# "Encourage her to continue.":
|
||||||
jump encourage
|
# jump encourage
|
||||||
|
python:
|
||||||
|
#menu item text then label to jump into
|
||||||
|
choices = [('Try again later', 'tryagain'), #[] is list, () is tuple
|
||||||
|
('Encourage her to continue', 'encourage')]
|
||||||
|
#narrator("", interact=False)
|
||||||
|
renpy.jump(renpy.display_menu(randomize_choices(choices)))
|
||||||
|
|
||||||
label tryagain:
|
label tryagain:
|
||||||
|
|
||||||
@ -528,12 +555,17 @@ F "I’m exhausted Morgan, can’t we just skip this last one?"
|
|||||||
|
|
||||||
"I thought you said you read the flyer…"
|
"I thought you said you read the flyer…"
|
||||||
|
|
||||||
menu:
|
#menu:
|
||||||
"That's good enough":
|
# "That's good enough":
|
||||||
jump skip
|
# jump skip
|
||||||
"Keep going":
|
# "Keep going":
|
||||||
jump going
|
# jump going
|
||||||
|
python:
|
||||||
|
#menu item text then label to jump into
|
||||||
|
choices = [('That\'s good enough', 'skip'), #[] is list, () is tuple
|
||||||
|
('Keep going', 'going')]
|
||||||
|
#narrator("", interact=False)
|
||||||
|
renpy.jump(renpy.display_menu(randomize_choices(choices)))
|
||||||
label skip:
|
label skip:
|
||||||
|
|
||||||
"I sigh on the inside. I was hoping she’d keep at it."
|
"I sigh on the inside. I was hoping she’d keep at it."
|
||||||
|
BIN
game/script.rpyc
BIN
game/script.rpyc
Binary file not shown.
57
log.txt
57
log.txt
@ -1,39 +1,38 @@
|
|||||||
Mon Feb 28 15:51:18 2022
|
Thu Mar 3 18:03:37 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.21s
|
Bootstrap to the start of init.init took 0.27s
|
||||||
Early init took 0.01s
|
Early init took 0.01s
|
||||||
Loader init took 0.08s
|
Loader init took 0.02s
|
||||||
Loading error handling took 0.09s
|
Loading error handling took 0.07s
|
||||||
Loading script took 1.13s
|
Loading script took 0.34s
|
||||||
Loading save slot metadata. took 0.08s
|
Loading save slot metadata. took 0.05s
|
||||||
Loading persistent took 0.00s
|
Loading persistent took 0.01s
|
||||||
Importing _renpysteam: ImportError('No module named _renpysteam',)
|
Importing _renpysteam: ImportError('No module named _renpysteam',)
|
||||||
Running init code took 0.20s
|
Running init code took 0.13s
|
||||||
Loading analysis data took 0.04s
|
Loading analysis data took 0.07s
|
||||||
Analyze and compile ATL took 0.00s
|
Analyze and compile ATL took 0.15s
|
||||||
Index archives 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.21s
|
||||||
Dump and make backups. took 0.11s
|
|
||||||
Cleaning cache took 0.00s
|
Cleaning cache took 0.00s
|
||||||
Making clean stores took 0.00s
|
Making clean stores took 0.01s
|
||||||
Initial gc. took 0.04s
|
Initial gc. took 0.04s
|
||||||
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.07s
|
Init translation took 0.16s
|
||||||
Build styles took 0.01s
|
Build styles took 0.01s
|
||||||
Load screen analysis took 0.00s
|
Load screen analysis took 0.10s
|
||||||
Analyze screens took 0.03s
|
Analyze screens took 0.00s
|
||||||
Save screen analysis took 0.05s
|
Save screen analysis took 0.00s
|
||||||
Prepare screens took 0.13s
|
Prepare screens took 0.69s
|
||||||
Save pyanalysis. took 0.00s
|
Save pyanalysis. took 0.00s
|
||||||
Save bytecode. took 0.03s
|
Save bytecode. took 0.00s
|
||||||
Running _start took 0.00s
|
Running _start took 0.12s
|
||||||
Performance test:
|
Performance test:
|
||||||
Interface start took 0.39s
|
Interface start took 1.23s
|
||||||
|
|
||||||
Initializing gl2 renderer:
|
Initializing gl2 renderer:
|
||||||
primary display bounds: (0, 0, 1440, 900)
|
primary display bounds: (0, 0, 1440, 900)
|
||||||
@ -45,17 +44,19 @@ 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)
|
||||||
|
Maximum texture size: 4096x4096
|
||||||
Cleaning stores took 0.00s
|
Cleaning stores took 0.00s
|
||||||
Init translation took 0.00s
|
Init translation took 0.01s
|
||||||
Build styles took 0.01s
|
Build styles took 0.02s
|
||||||
Load screen analysis took 0.04s
|
Load screen analysis took 0.06s
|
||||||
Analyze screens took 0.00s
|
Analyze screens took 0.00s
|
||||||
Prepare screens took 0.00s
|
Prepare screens took 0.00s
|
||||||
Running _start took 0.00s
|
Running _start took 0.01s
|
||||||
Cleaning stores took 0.00s
|
Cleaning stores took 0.00s
|
||||||
Init translation took 0.00s
|
Init translation took 0.00s
|
||||||
Build styles took 0.01s
|
Build styles took 0.02s
|
||||||
Load screen analysis took 0.04s
|
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.00s
|
Running _start took 0.01s
|
||||||
|
@ -1,72 +1,28 @@
|
|||||||
I'm sorry, but an uncaught exception occurred.
|
I'm sorry, but an uncaught exception occurred.
|
||||||
|
|
||||||
While processing text tag {i/} in u'It\u2019d be easier to count the muscles that {i}don\u2019t{i/} ache.'.:
|
While running game code:
|
||||||
File "game/script.rpy", line 686, in script
|
File "game/script.rpy", line 75, in script
|
||||||
F "It’d be easier to count the muscles that {i}don’t{i/} ache."
|
scene Farelie01 at Pan((0, 1031), (0, 0), 10.0) with dissolve(0, 1031)
|
||||||
Exception: Unknown text tag u'i/'
|
TypeError: 'Dissolve' object is not callable
|
||||||
|
|
||||||
-- Full Traceback ------------------------------------------------------------
|
-- Full Traceback ------------------------------------------------------------
|
||||||
|
|
||||||
Full traceback:
|
Full traceback:
|
||||||
File "game/script.rpy", line 686, in script
|
File "game/script.rpy", line 75, in script
|
||||||
F "It’d be easier to count the muscles that {i}don’t{i/} ache."
|
scene Farelie01 at Pan((0, 1031), (0, 0), 10.0) with dissolve(0, 1031)
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/ast.py", line 721, in execute
|
File "/Applications/renpy-7.4.9-sdk/renpy/ast.py", line 1443, in execute
|
||||||
renpy.exports.say(who, what, *args, **kwargs)
|
renpy.exports.with_statement(trans, paired)
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/exports.py", line 1417, in say
|
File "/Applications/renpy-7.4.9-sdk/renpy/exports.py", line 1682, in with_statement
|
||||||
who(what, *args, **kwargs)
|
return renpy.game.interface.do_with(trans, paired, clear=clear)
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/character.py", line 1235, in __call__
|
File "/Applications/renpy-7.4.9-sdk/renpy/display/core.py", line 2752, in do_with
|
||||||
self.do_display(who, what, cb_args=self.cb_args, dtt=dtt, **display_args)
|
clear=clear)
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/character.py", line 887, in do_display
|
|
||||||
**display_args)
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/character.py", line 633, in display_say
|
|
||||||
rv = renpy.ui.interact(mouse='say', type=type, roll_forward=roll_forward)
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/ui.py", line 298, in interact
|
|
||||||
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/display/core.py", line 3315, in interact
|
File "/Applications/renpy-7.4.9-sdk/renpy/display/core.py", line 3315, in interact
|
||||||
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs)
|
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs)
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/display/core.py", line 3834, in interact_core
|
File "/Applications/renpy-7.4.9-sdk/renpy/display/core.py", line 3674, in interact_core
|
||||||
self.draw_screen(root_widget, fullscreen_video, (not fullscreen_video) or video_frame_drawn)
|
new_widget=layers_root)
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/display/core.py", line 2555, in draw_screen
|
TypeError: 'Dissolve' object is not callable
|
||||||
renpy.config.screen_height,
|
|
||||||
File "render.pyx", line 492, in renpy.display.render.render_screen
|
|
||||||
File "render.pyx", line 263, in renpy.display.render.render
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/display/layout.py", line 824, in render
|
|
||||||
surf = render(child, width, height, cst, cat)
|
|
||||||
File "render.pyx", line 170, in renpy.display.render.render
|
|
||||||
File "render.pyx", line 263, in renpy.display.render.render
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/display/layout.py", line 824, in render
|
|
||||||
surf = render(child, width, height, cst, cat)
|
|
||||||
File "render.pyx", line 170, in renpy.display.render.render
|
|
||||||
File "render.pyx", line 263, in renpy.display.render.render
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/display/layout.py", line 824, in render
|
|
||||||
surf = render(child, width, height, cst, cat)
|
|
||||||
File "render.pyx", line 170, in renpy.display.render.render
|
|
||||||
File "render.pyx", line 263, in renpy.display.render.render
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/display/screen.py", line 688, in render
|
|
||||||
child = renpy.display.render.render(self.child, w, h, st, at)
|
|
||||||
File "render.pyx", line 170, in renpy.display.render.render
|
|
||||||
File "render.pyx", line 263, in renpy.display.render.render
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/display/layout.py", line 824, in render
|
|
||||||
surf = render(child, width, height, cst, cat)
|
|
||||||
File "render.pyx", line 170, in renpy.display.render.render
|
|
||||||
File "render.pyx", line 263, in renpy.display.render.render
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/display/layout.py", line 1254, in render
|
|
||||||
st, at)
|
|
||||||
File "render.pyx", line 170, in renpy.display.render.render
|
|
||||||
File "render.pyx", line 263, in renpy.display.render.render
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/display/layout.py", line 824, in render
|
|
||||||
surf = render(child, width, height, cst, cat)
|
|
||||||
File "render.pyx", line 170, in renpy.display.render.render
|
|
||||||
File "render.pyx", line 263, in renpy.display.render.render
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/text/text.py", line 2096, in render
|
|
||||||
virtual_layout = Layout(self, width, height, renders, drawable_res=False, size_only=True)
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/text/text.py", line 610, in __init__
|
|
||||||
self.paragraphs = self.segment(text.tokens, style, renders, text)
|
|
||||||
File "/Applications/renpy-7.4.9-sdk/renpy/text/text.py", line 1259, in segment
|
|
||||||
raise Exception("Unknown text tag %r" % text)
|
|
||||||
Exception: Unknown text tag u'i/'
|
|
||||||
|
|
||||||
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
|
||||||
She Likes You Alotl 1.0
|
She Likes You Alotl 1.0
|
||||||
Mon Feb 28 15:46:56 2022
|
Thu Mar 3 17:16:24 2022
|
||||||
|
Reference in New Issue
Block a user