Search found 4 matches

by bruzer_
Sat Nov 02, 2019 9:41 am
Forum: Ren'Py Questions and Announcements
Topic: PicklingError: Can't pickle <type 'module'>
Replies: 1
Views: 452

PicklingError: Can't pickle <type 'module'>

This error occurs when I try to save or restart the game. What do I do to fix it? [code] I'm sorry, but an uncaught exception occurred. While running game code: File "renpy/common/00keymap.rpy", line 396, in script python hide: File "renpy/common/00keymap.rpy", line 411, in <modu...
by bruzer_
Sat Jul 20, 2019 7:05 am
Forum: Ren'Py Questions and Announcements
Topic: The game doesn't continue until the function stops.
Replies: 4
Views: 530

Re: The game doesn't continue until the function stops.

--- But I need these pauses between changing of persistent. Maybe you should use a screen instead? That would run without interfering with the game. default likes = 0 default randlikes1 = renpy.random.randint(7,20) default randlikes2 = renpy.random.randint(4,17) default randlikes3 = renpy.random.ra...
by bruzer_
Sat Jul 20, 2019 6:19 am
Forum: Ren'Py Questions and Announcements
Topic: The game doesn't continue until the function stops.
Replies: 4
Views: 530

Re: The game doesn't continue until the function stops.

Imperf3kt wrote: Sat Jul 20, 2019 5:44 am Remove these lines?
renpy.pause(3.4, hard=True)
But I need these pauses between changing of persistent.
by bruzer_
Sat Jul 20, 2019 4:22 am
Forum: Ren'Py Questions and Announcements
Topic: The game doesn't continue until the function stops.
Replies: 4
Views: 530

The game doesn't continue until the function stops.

There is the functinon: init python: likes = 0 randlikes1 = renpy.random.randint(7,20) randlikes2 = renpy.random.randint(4,17) randlikes3 = renpy.random.randint(2,8) def likes_grow(): global likes while likes<=113: likes = likes + randlikes1 renpy.pause(3, hard=True) likes = likes + randlikes2 renpy...