0% found this document useful (0 votes)
6 views4 pages

Log

The document details the initialization and error handling process of a Ren'Py game running on a Motorola Moto G(9) Play with Android 11. It includes technical specifications, loading times, and a full traceback of an error encountered during execution, specifically a TypeError related to unsupported operand types. The error indicates a problem in the game's script where an integer operation is attempted with a NoneType value.

Uploaded by

crepeerfino97
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views4 pages

Log

The document details the initialization and error handling process of a Ren'Py game running on a Motorola Moto G(9) Play with Android 11. It includes technical specifications, loading times, and a full traceback of an error encountered during execution, specifically a TypeError related to unsupported operand types. The error indicates a problem in the game's script where an integer operation is attempted with a NoneType value.

Uploaded by

crepeerfino97
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

Sat Jan 18 17:07:38 2025

Alternative_Saves_Android_Port
Ren'Py 8.2.3.24061702

Manufacturer motorola Model moto g(9) play


Android Version: 11
Device Arch: android-arm64_v8a

Screen diagonal is 6.006740474038227 inches.


Version: Ren'Py 8.2.3.24061702
Attempting to sync your saves to/from stock ANDROID_PUBLIC location...
Mobile search paths: /data/user/0/become_a_menace.naxle/files/game
/storage/emulated/0/Android/data/become_a_menace.naxle/files/../../../../
Documents/RenPy_Saves/become_a_menace.naxle/game
Early init took 0.33s
Early init took 0.33s
Loading error handling took 0.28s
Loading error handling took 0.28s
Loading script took 1.38s
Loading script took 1.38s
Saving to
/storage/emulated/0/Android/data/become_a_menace.naxle/files/../../../../
Documents/RenPy_Saves/become_a_menace.naxle
Loading save slot metadata took 0.32s
Loading save slot metadata took 0.32s
Loading persistent took 0.00s
Loading persistent took 0.00s
Set script version to: (8, 1, 1)
Running init code took 0.50s
Running init code took 0.50s
Loading analysis data took 0.08s
Loading analysis data took 0.08s
Analyze and compile ATL took 0.04s
Analyze and compile ATL took 0.04s
Reloading save slot metadata took 0.24s
Reloading save slot metadata took 0.24s
Index archives took 0.00s
Index archives took 0.00s
Dump and make backups took 0.00s
Dump and make backups took 0.00s
Cleaning cache took 0.00s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Making clean stores took 0.00s
Initial gc took 0.25s
Initial gc took 0.25s
DPI scale factor: 1.000000
Creating interface object took 0.02s
Creating interface object took 0.02s
Cleaning stores took 0.00s
Cleaning stores took 0.00s
Init translation took 0.31s
Init translation took 0.31s
Build styles took 0.01s
Build styles took 0.01s
Load screen analysis took 0.15s
Load screen analysis took 0.15s
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.40s
Prepare screens took 0.40s
Save pyanalysis. took 0.00s
Save pyanalysis. took 0.00s
Save bytecode. took 0.00s
Save bytecode. took 0.00s
Running _start took 0.00s
Running _start took 0.00s
Interface start took 0.43s
Interface start took 0.43s

Initializing gles2 renderer:


primary display bounds: (0, 0, 1557, 636)
swap interval: 1 frames
Fullscreen mode.
Vendor: "b'Qualcomm'"
Renderer: b'Adreno (TM) 610'
Version: b'OpenGL ES 3.2 [email protected] (GIT@704ecd9a2b, Ib3f3e69395, 1609240670)
(Date:12/29/20)'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1557, 720) drawable=(1557, 720)
Maximum texture size: 4096x4096
Total time until interface ready: 5.1675519943237305s.
Hid presplash.

Full traceback:
File "script.rpyc", line 187, in script
File "renpy/ast.py", line 2560, in execute
File "renpy/ast.py", line 583, in execute
File "renpy/ast.py", line 52, in statement_name
File "renpy/common/000window.rpy", line 126, in _window_auto_callback
File "renpy/common/000window.rpy", line 70, in _window_show
File "renpy/exports.py", line 1782, in with_statement
File "renpy/display\core.py", line 1549, in do_with
File "renpy/display\core.py", line 2166, in interact
File "renpy/display\core.py", line 2688, in interact_core
File "renpy/display\displayable.py", line 431, in visit_all
File "renpy/display\displayable.py", line 431, in visit_all
File "renpy/display\displayable.py", line 431, in visit_all
[Previous line repeated 1 more time]
File "renpy/display\screen.py", line 480, in visit_all
File "renpy/display\core.py", line 2688, in <lambda>
File "renpy/display\screen.py", line 491, in per_interact
File "renpy/display\screen.py", line 697, in update
File "game/screens.rpy", line 2647, in execute
File "game/screens.rpy", line 2647, in execute
File "game/screens.rpy", line 2650, in execute
File "game/screens.rpy", line 2650, in <module>
TypeError: unsupported operand type(s) for -: 'int' and 'NoneType'

While running game code:


File "renpy/common/000window.rpy", line 126, in _window_auto_callback
File "renpy/common/000window.rpy", line 70, in _window_show
File "game/screens.rpy", line 2647, in execute
File "game/screens.rpy", line 2647, in execute
File "game/screens.rpy", line 2650, in execute
File "game/screens.rpy", line 2650, in <module>
TypeError: unsupported operand type(s) for -: 'int' and 'NoneType'
While handling exception:
Traceback (most recent call last):
File "renpy/execution.py", line 596, in run
File "renpy/ast.py", line 2560, in execute
File "renpy/ast.py", line 583, in execute
File "renpy/ast.py", line 52, in statement_name
File "renpy/common/000window.rpy", line 126, in _window_auto_callback
File "renpy/common/000window.rpy", line 70, in _window_show
File "renpy/exports.py", line 1782, in with_statement
File "renpy/display\core.py", line 1549, in do_with
File "renpy/display\core.py", line 2166, in interact
File "renpy/display\core.py", line 2688, in interact_core
File "renpy/display\displayable.py", line 431, in visit_all
File "renpy/display\displayable.py", line 431, in visit_all
File "renpy/display\displayable.py", line 431, in visit_all
[Previous line repeated 1 more time]
File "renpy/display\screen.py", line 480, in visit_all
File "renpy/display\core.py", line 2688, in <lambda>
File "renpy/display\screen.py", line 491, in per_interact
File "renpy/display\screen.py", line 697, in update
File "renpy/sl2\slast.py", line 2713, in __call__
File "renpy/sl2\slast.py", line 2651, in execute
File "renpy/sl2\slast.py", line 500, in execute
File "renpy/sl2\slast.py", line 1880, in execute
File "game/screens.rpy", line 2650, in <module>
TypeError: unsupported operand type(s) for -: 'int' and 'NoneType'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):


File "renpy/display\error.py", line 140, in report_exception
File "renpy/game.py", line 293, in invoke_in_new_context
File "renpy/display\error.py", line 48, in call_exception_screen
File "renpy/ui.py", line 301, in interact
File "renpy/display\core.py", line 2166, in interact
File "renpy/display\core.py", line 2688, in interact_core
File "renpy/display\displayable.py", line 431, in visit_all
File "renpy/display\displayable.py", line 431, in visit_all
File "renpy/display\displayable.py", line 431, in visit_all
File "renpy/display\screen.py", line 480, in visit_all
File "renpy/display\core.py", line 2688, in <lambda>
File "renpy/display\screen.py", line 491, in per_interact
File "renpy/display\screen.py", line 697, in update
File "renpy/sl2\slast.py", line 2713, in __call__
File "renpy/sl2\slast.py", line 2651, in execute
File "renpy/sl2\slast.py", line 500, in execute
File "renpy/sl2\slast.py", line 1880, in execute
File "game/screens.rpy", line 2650, in <module>
TypeError: unsupported operand type(s) for -: 'int' and 'NoneType'

Full traceback:
File "renpy/bootstrap.py", line 359, in bootstrap
File "renpy/main.py", line 663, in main
File "renpy/main.py", line 150, in run
File "renpy/execution.py", line 955, in run_context
File "script.rpyc", line 187, in script
File "lib/python3.9/future/utils/__init__.py", line 444, in raise_
File "script.rpyc", line 187, in script
File "renpy/ast.py", line 2560, in execute
File "renpy/ast.py", line 583, in execute
File "renpy/ast.py", line 52, in statement_name
File "renpy/common/000window.rpy", line 126, in _window_auto_callback
File "renpy/common/000window.rpy", line 70, in _window_show
File "renpy/exports.py", line 1782, in with_statement
File "renpy/display\core.py", line 1549, in do_with
File "renpy/display\core.py", line 2166, in interact
File "renpy/display\core.py", line 2688, in interact_core
File "renpy/display\displayable.py", line 431, in visit_all
File "renpy/display\displayable.py", line 431, in visit_all
File "renpy/display\displayable.py", line 431, in visit_all
[Previous line repeated 1 more time]
File "renpy/display\screen.py", line 480, in visit_all
File "renpy/display\core.py", line 2688, in <lambda>
File "renpy/display\screen.py", line 491, in per_interact
File "renpy/display\screen.py", line 697, in update
File "game/screens.rpy", line 2647, in execute
File "game/screens.rpy", line 2647, in execute
File "game/screens.rpy", line 2650, in execute
File "game/screens.rpy", line 2650, in <module>
TypeError: unsupported operand type(s) for -: 'int' and 'NoneType'

While running game code:


File "renpy/common/000window.rpy", line 126, in _window_auto_callback
File "renpy/common/000window.rpy", line 70, in _window_show
File "game/screens.rpy", line 2647, in execute
File "game/screens.rpy", line 2647, in execute
File "game/screens.rpy", line 2650, in execute
File "game/screens.rpy", line 2650, in <module>
TypeError: unsupported operand type(s) for -: 'int' and 'NoneType'

You might also like