Search found 532 matches
- Sun Aug 21, 2022 8:04 pm
- Forum: Ren'Py Cookbook
- Topic: RADC - Ren'Py Asset Download Complement
- Replies: 3
- Views: 488
RADC - Ren'Py Asset Download Complement
https://user-images.githubusercontent.com/77955772/184478128-93046a80-f326-43c9-9960-efdcd61f03b6.png https://github.com/CharlieFuu69/RenPy_Asset_Download_Complement Hello! I present to you RADC, an In-Game download plugin that you can integrate into games developed with the "Ren'Py" engine. What i...
- Sun Aug 21, 2022 7:48 pm
- Forum: Ren'Py Cookbook
- Topic: 49 mini game Renpy
- Replies: 54
- Views: 106928
Clean the banana snake
autor - https://www.renpy.cn/thread-528-1-7.html Videos - https://vk.com/video-7553243_456239257 (adult material) image cock = "cock.png" transform trans_cock_show(): "cock.png" function func_show_cock transform trans_normal_cock(): trans_cock_show 0.1 repeat transform trans_touch_cock(): trans_cock...
- Sun Aug 21, 2022 4:36 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help, the code is too crooked in mini game
- Replies: 5
- Views: 2262
Re: Help, the code is too crooked in mini game
Recently I came across a beautiful reworking of the code from a friend ( 红月茶会 ) from China. https://www.bilibili.com/read/cv18210668 Videos - https://www.bilibili.com/video/BV1sG411b7iu?spm_id_from=333.337.search-card.all.click init python: class FishingHandler(object): def __init__(self): self.stat...
- Sun Aug 21, 2022 1:24 pm
- Forum: Demos & Beta Testing
- Topic: Character Creation Demo
- Replies: 15
- Views: 2424
- Sun Aug 21, 2022 1:54 am
- Forum: Ideas
- Topic: Invasion of the Panty Snatchers
- Replies: 102
- Views: 13711
- Sun Aug 21, 2022 12:09 am
- Forum: Ren'Py Questions and Announcements
- Topic: Drawing in Ren'Py
- Replies: 29
- Views: 6105
Re: Drawing in Ren'Py
the coolest way to use in games that I've seen
- Sat Aug 20, 2022 2:45 am
- Forum: Ren'Py Cookbook
- Topic: Yandex Mobile Ads in Ren'Py Game
- Replies: 3
- Views: 540
Re: Yandex Mobile Ads in Ren'Py Game
Note that replacing PythonSDLActivity.java like this might work for the version of Ren'Py this was designed for, but it may cause problems as new versions are released. Good afternoon, I have forwarded your comment to the author. Thank you for your comment. I'm planning to write a walkthrough, but ...
- Thu Aug 18, 2022 12:35 pm
- Forum: Ren'Py Cookbook
- Topic: Yandex Mobile Ads in Ren'Py Game
- Replies: 3
- Views: 540
Yandex Mobile Ads in Ren'Py Game
https://github.com/valery-iwanofu/rapt-yandex-ads This repository contains modified files from the rapt folder that will allow you to add an advertising banner to the game made on Ren'Py Installation The rapt folder is located in the directory where the Ren'Py executable (renpy.exe) is located. 1. D...
- Fri Aug 12, 2022 5:07 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Renpy 8 TypeError: sort()
- Replies: 4
- Views: 264
Re: Renpy 8 TypeError: sort()
Empty list is often sign of CPython internal error when operation on list. But in this case an exception should be thrown. One reason for error might be non-symmetrical or non-transitive sorting function. if not s1.is_floor() and s2.is_floor(): return 0 elif s1.is_floor() and not s2.is_floor(): ret...
- Fri Aug 12, 2022 5:31 am
- Forum: Ren'Py Questions and Announcements
- Topic: Renpy 8 TypeError: sort()
- Replies: 4
- Views: 264
Re: Renpy 8 TypeError: sort()
https://docs.python.org/3/library/stdtypes.html#list.sort sort(*, key=None, reverse=False) [...] sort() accepts two arguments that can only be passed by keyword (keyword-only arguments): [...] The functools.cmp_to_key() utility is available to convert a 2.x style cmp function to a key function . Th...
- Fri Aug 12, 2022 4:56 am
- Forum: Ren'Py Questions and Announcements
- Topic: Renpy 8 TypeError: sort()
- Replies: 4
- Views: 264
Renpy 8 TypeError: sort()
Python 2.7 had a complex sort function that now crashes: def mz_sortF(s1, s2): if s1.get_iz() < s2.get_iz(): return 1 elif s1.get_iz() > s2.get_iz(): return -1 else: if not s1.is_floor() and s2.is_floor(): return 0 elif s1.is_floor() and not s2.is_floor(): return -1 else: if s1.get_iy() < s2.get_iy(...
- Fri Aug 12, 2022 2:19 am
- Forum: Ren'Py Questions and Announcements
- Topic: Self-voicing gender and history
- Replies: 0
- Views: 268
Self-voicing gender and history
https://github.com/renpy/renpy/blob/master/sphinx/source/self_voicing.rst init python: if renpy.windows: config.tts_voice = "Mark" elif renpy.macintosh: config.tts_voice = "Alex" elif renpy.linux: config.tts_voice = "english_rp" Hello everyone, I accidentally saw the code from the tts_voice And stud...
- Mon Aug 08, 2022 6:40 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] How to Use Sprite Manager and Creator Defined Displayables to Collide Certain Sprites
- Replies: 2
- Views: 371
Re: [SOLVED] How to Use Sprite Manager and Creator Defined Displayables to Collide Certain Sprites
Brother, thank you for the codes, and for sharing solutions. God grant you good health.
- Fri Aug 05, 2022 8:47 am
- Forum: Ren'Py Questions and Announcements
- Topic: How to make a character zoom in a bit when talking, just like in DDLC
- Replies: 4
- Views: 405
Re: How to make a character zoom in a bit when talking, just like in DDLC
http://renpyfordummies.blogspot.com/2022/05/3.html?m=1 It's confusing, and it's in Russian init python: # automatic declaration of sprites config.automatic_images_minimum_components = 1 config.automatic_images = [" ", "_", "/"] config.automatic_images_strip = ["images"] init: # brightness and scale...
- Tue Aug 02, 2022 3:00 pm
- Forum: Ren'Py Questions and Announcements
- Topic: minimized voice's auto forward time
- Replies: 1
- Views: 191
Re: minimized voice's auto forward time
label start:
"text[nw=3.0]"
?
"text[nw=3.0]"
?