Search found 715 matches

by Andredron
Wed Apr 24, 2024 2:09 am
Forum: Ren'Py Cookbook
Topic: Animated application icon
Replies: 0
Views: 60

Animated application icon

https://boosty.to/7dots/posts/242cd9cb-8e41-4428-ad8d-b49e5dd5b1b4 https://images.boosty.to/image/b3a12770-c82c-4bb7-88e0-e784146c8759?change_time=1700936473&mw=545 set_icon.rpy ## HOW TO USE: # set static icon (only works with files) # $ set_icon(filename) # return the default icon # $ set_icon...
by Andredron
Fri Apr 19, 2024 8:24 am
Forum: Ren'Py Questions and Announcements
Topic: Implementing TTS in Android (for self voicing)
Replies: 3
Views: 554

Re: Implementing TTS in Android (for self voicing)

Good afternoon, has there been any progress since the fast? I'm curious to know the result.
by Andredron
Fri Apr 19, 2024 7:22 am
Forum: Ren'Py Questions and Announcements
Topic: Type out predetermined word when player types?
Replies: 4
Views: 776

Re: Type out predetermined word when player types?

Awesome! Been looking for something like this to create a screen by hacker man type, http://tentaculus.ru/hackerman/
by Andredron
Tue Apr 16, 2024 2:01 am
Forum: Ren'Py Cookbook
Topic: Randomness in renpy or Random number generators
Replies: 0
Views: 327

Randomness in renpy or Random number generators

if you've rollbacked this code and click it through once again then you should get the same result. That's how renpy.random works. If you need different values after rollback, try to use random.randint(1, 5) instead. https://www.renpy.org/doc/html/other.html#renpy-random # return a random float betw...
by Andredron
Thu Apr 11, 2024 3:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Help with a "connect the dots" mini game?
Replies: 3
Views: 1697

Re: Help with a "connect the dots" mini game?

Hey there everyone! I wanted to try and create some kind of "connect the dots" minigame in my VN but I have no idea what I should be trying to do to make it happen. The game must be able to register if the user hit all the correct points Something like if the user can connect point A to p...
by Andredron
Thu Apr 11, 2024 3:10 pm
Forum: Ren'Py Questions and Announcements
Topic: How to Update Outdated Shake Effect
Replies: 1
Views: 174

Re: How to Update Outdated Shake Effect

transform shake2(rate=0.090): linear rate xoffset 2 yoffset 0 linear rate xoffset -2.8 yoffset 2 linear rate xoffset 2.8 yoffset 0 linear rate xoffset -2 yoffset 2 linear rate xoffset +0 yoffset +0 repeat transform shake3(rate=0.090): linear rate xoffset 2 linear rate xoffset -2.8 linear rate xoffs...
by Andredron
Thu Apr 11, 2024 12:15 pm
Forum: Ren'Py Questions and Announcements
Topic: How from a joystick to a gamepad, to create a mouse analog?
Replies: 0
Views: 133

How from a joystick to a gamepad, to create a mouse analog?

How to create a joystick, I know how to move images and object I know, but I do not get to make a joystick analogy

viewtopic.php?t=50655

https://www.renpy.org/doc/html/keymap.html
by Andredron
Tue Apr 09, 2024 2:09 am
Forum: Ren'Py Cookbook
Topic: Entering the character's name on Renpy
Replies: 0
Views: 278

Entering the character's name on Renpy

1)Plain define g = Character("[name]") label start: python: name = renpy.input(_("What's your name?")) name = name.strip() or __("Zhora!t") "hello [name]" g "Hello to you too" - define g = Character("[name]") - we write the name of the cha...
by Andredron
Mon Apr 08, 2024 3:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Is there a way to make a Database?
Replies: 4
Views: 7977

Re: Is there a way to make a Database?

Only the old renpy python version used to make a base like this. Download and install python 2.7.10 (https://www.python.org/downloads/release/python-2710/) Copy: C:\Program Files (x86)\Python\Python 2.7.10\Lib\sqlite3 C:\Program Files (x86)\Python\Python 2.7.10\DLLs\_sqlite3.pyd C:\Program Files (x8...
by Andredron
Thu Apr 04, 2024 6:47 am
Forum: Ren'Py Cookbook
Topic: Little used features choice menu
Replies: 1
Views: 378

Little used features choice menu

1) Blur scene behind choice menu, fade choices in and out . https://patreon.renpy.org/dev-2020-09.html#menu-blurring And https://gist.github.com/dossy/cbb7b7ed18a292e4d9c51c8d63a15c69 screen choice(items): style_prefix "choice" $ renpy.show_layer_at(choice_bg_transform_show, layer='master...
by Andredron
Tue Apr 02, 2024 6:45 am
Forum: Ren'Py Cookbook
Topic: Connect RenPy with Stable Diffusion(Сonfetti)
Replies: 0
Views: 323

Connect RenPy with Stable Diffusion(Сonfetti)

Connect RenPy with Stable Diffusion via ComfyUI https://github.com/unLomTrois/Confetti It is a Python script to connect your RenPy visual novels to Stable Diffusion via ComfyUI workflows What is a "workflow"? It is a file with step-by-step instructions for Stable Diffusion on what image yo...