Search found 124 matches

by bonnie_641
Tue Aug 03, 2021 7:47 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Add text in image in list
Replies: 2
Views: 605

[Solved]Add text in image in list

label renpy_:#(1,2)fc #scene receta_generico $ ren0 = ['{b}{size=+3}{u}Prueba Título {/u}{/size}{/b}', '{size=-2}\nTEXTTTTTT XD{/size}' 'More text', '\n{image=deco}\n', # <--- I add the image but it does not allow me to add text over it '{u}subtitle nº 1{/u}: {a=lenguaje}see link content{/a}', ] ca...
by bonnie_641
Mon Aug 02, 2021 7:49 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Regards image path with renpy.show() function
Replies: 8
Views: 927

Re: Regards image path with renpy.show() function

Thanks, it worked, is there a way to specify image resolution with renpy.show(). I tried many ways and the only one that worked requires specifying the image path XD. image pic = im.Scale("images/pic.png", 300, 300) # <---- 300 x 300 pixels label start: $ renpy.show("pic") "Test to show image with ...
by bonnie_641
Sun Aug 01, 2021 2:17 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Regards Changing Background Scene Using Python
Replies: 6
Views: 1075

Re: Regards Changing Background Scene Using Python

No, it is not working. I have image "Pic.jpg" in game/images folder I have tried renpy.show("game/images/Pic.jpg"), renpy.show("images/Pic.jpg"), and renpy.show("Pic.jpg") with renpy.scene() before this statement, but it is not showing the image it is only showing the path I entered in renpy.show()...
by bonnie_641
Sun Aug 01, 2021 2:06 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Regards image path with renpy.show() function
Replies: 8
Views: 927

Re: Regards image path with renpy.show() function

how to use renpy.show() You don't need to define the images, since Ren'py detects all the images you add in the "images" folder. There are different ways to call them in the game (in label) 1.- show image_name with effect_name 2.- $ renpy.show("image_name_without_extension") # can be any label # If...
by bonnie_641
Thu Jul 29, 2021 10:37 pm
Forum: General Discussion
Topic: [Solved]Ren'py game + local website
Replies: 0
Views: 4231

[Solved]Ren'py game + local website

I solved the problem from another point of view: edit a template (including internal search engine) made from an html (open source).
by bonnie_641
Mon Jun 07, 2021 6:36 pm
Forum: Ren'Py Questions and Announcements
Topic: About Atom editor and Ren'Py
Replies: 10
Views: 5343

Re: About Atom editor and Ren'Py

This is an infuriating 'feature' that results in wasted time, lost code and an angry me. Does anybody know how to disable this? Because of this feature I left Sublime Text :( and looked for alternatives: at the beginning I used Editra, Atom (one of my favorites), Notepad++... but I ended up using V...
by bonnie_641
Sun Jun 06, 2021 5:36 pm
Forum: Ren'Py Cookbook
Topic: Image Gallery/CGs/Album- Free source code on itch.io
Replies: 4
Views: 2237

Re: Image Gallery/CGs/Album- Free source code on itch.io

Yay!
I am very happy for your great contribution :D
Thanks to you I can finally have a gallery for my game.
Regards.
by bonnie_641
Sun May 30, 2021 1:21 pm
Forum: Development of Ren'Py
Topic: Ren'Py games not registering on sound mixer
Replies: 4
Views: 3785

Re: Ren'Py games not registering on sound mixer

Hi all, I'm encountering a rather frustrating issue concerning audio channels on Windows 10. Hello! I don't know if I understood the problem correctly, but all Ren'Py games I tested on Windows 10 the Python icon appears. In case it doesn't appear, it's probably an operating system problem (maybe so...
by bonnie_641
Sat May 29, 2021 7:32 pm
Forum: Ren'Py Cookbook
Topic: [Source Code] Rhythm Game in Ren'Py!
Replies: 2
Views: 2617

Re: [Source Code] Rhythm Game in Ren'Py!

I have wanted this type of demo for a long time. Thank you very much <3 !
by bonnie_641
Sat May 29, 2021 7:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Does Ren'py have a GUI to design Frames/Windows easier?
Replies: 18
Views: 2766

Re: Does Ren'py have a GUI to design Frames/Windows easier?

We need a GUI that lets us design screens on the fly, then lets us populate it with the following on the fly, letting us drag and resize, etc Here: https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=22565&start=75#p455107 Although I have little experience with Ren'Py, thanks to this tutorial (f...
by bonnie_641
Tue Mar 09, 2021 6:54 am
Forum: Ren'Py Cookbook
Topic: Path motion
Replies: 43
Views: 16018

Re: Path motion

So, Uncle Mugen mentioned this in channel and sent me a copy; it didn't work right for current Ren'py and lacked the ability to work on different resolutions, so I updated it. Here ya go. https://lemmasoft.renai.us/forums/download/file.php?id=33566 In Ren`Py version 7.3.5 it works perfectly. The on...
by bonnie_641
Sat Feb 27, 2021 5:46 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Enter ingredient to find 1 or more recipes
Replies: 9
Views: 293

Re: Enter ingredient to find 1 or more recipes

Showed the solution define recipes = dict( recipe1=[ ("ingredient1", 2, "kg"), ], recipe2=[ ("ingredient1", 3, "kg"), ("ingredient2", 3, "kg"), ] ) init python: def getRecipes(recipes, *ingredients): rcps = set() for iing in ingredients: iing = iing.strip().lower() for rn, ings in recipes.items(): f...
by bonnie_641
Sat Feb 27, 2021 5:35 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Enter ingredient to find 1 or more recipes
Replies: 9
Views: 293

Re: Enter ingredient to find 1 or more recipes

You can wrap the input part inside a while loop. label start: $ rcps = [] while not rcps: # keep asking while there is no match. `not rcps` is when the list containing the recipes is empty so it translates as `while rcps is empty` $ rcps = getRecipes(recipes, renpy.input("Ingredient 1"), renpy.inpu...
by bonnie_641
Fri Feb 26, 2021 9:27 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Enter ingredient to find 1 or more recipes
Replies: 9
Views: 293

Re: Enter ingredient to find 1 or more recipes

So basically my code is correct, only that you want two instead of one? try this. define recipes = dict( recipe1=[ ("ingredient1", 2, "kg"), ], recipe2=[ ("ingredient1", 3, "kg"), ("ingredient2", 3, "kg"), ] ) init python: def getRecipes(recipes, *ingredients): rcps = set() for iing in ingredients:...
by bonnie_641
Fri Feb 26, 2021 8:20 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Enter ingredient to find 1 or more recipes
Replies: 9
Views: 293

Re: Enter ingredient to find 1 or more recipes

No error message appears, but it does not work at all :oops: (I did something wrong again) When I enter ing1="ingredient1" and ing2="ingredient2", I get only "recipe2" (What happened to "recipe1"?) and the associated hyperlink is from "recipe1" :C Desired results for ing1="ingredient1" and ing2="ing...