Search found 9 matches

by Feleven
Thu Oct 21, 2021 2:49 pm
Forum: Ren'Py Questions and Announcements
Topic: Best way to change screens and their text on android
Replies: 2
Views: 373

Re: Best way to change screens and their text on android

Thank you, I'll give it a go although I already managed to solve it by using if renpy.variant("small") before the style. Pretty much the same thing I guess.
by Feleven
Wed Oct 20, 2021 3:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Best way to change screens and their text on android
Replies: 2
Views: 373

Best way to change screens and their text on android

I have a lot of screens (usually quite small) that work well on PC but not phones (small devices). Any idea what's the best way on changing them without altering the PC version? Most of these screens have simple stuff like "text", for example: screen gameinfo(): modal True add "gui/cu...
by Feleven
Fri Sep 24, 2021 11:54 am
Forum: Ren'Py Questions and Announcements
Topic: Variable to access file
Replies: 2
Views: 558

Re: Variable to access file

You use selectedCharacter.imageName which means it's a complex object, not a string. That object probably has a field like "name" or something, which would be the string you need. Then the solution is: textbutton "1" action SetVariable("selectedCharacter.imageName", &q...
by Feleven
Thu Sep 23, 2021 10:50 am
Forum: Ren'Py Questions and Announcements
Topic: Variable to access file
Replies: 2
Views: 558

Variable to access file

I'm making a glossary and want to make textbuttons that change the character's picture. Atm I have a different set of buttons for each character but I'd like to make only 1 set for all of them. Just to tidy up. It looks like this atm: textbutton "1" action SetVariable("boy.imageName&q...
by Feleven
Tue Sep 14, 2021 11:00 am
Forum: Ren'Py Cookbook
Topic: 81 mini game Renpy
Replies: 73
Views: 175423

Re: 8 mini games

Hi Gas, Do you happen to still have the 3-in-1 image files? The orginal link doesn't seems to work anymore. Thank you. Had the same issue but fortunately all you need to do is make them yourself in like 10 minutes. Grab some free vectors or w/e and edit them in photoshop or gimp to be 100x100 pixel...
by Feleven
Mon Jun 28, 2021 11:10 am
Forum: Ren'Py Cookbook
Topic: 81 mini game Renpy
Replies: 73
Views: 175423

Re: 16 mini game Renpy

Thanks for the reply but unfortunately the link found there is dead as well. When you click on "Kri2.rar" it sends you there: https://vk.com/doc28338738_463390421?ha ... dc674af1dd
by Feleven
Sat Jun 19, 2021 2:56 am
Forum: Ren'Py Cookbook
Topic: 81 mini game Renpy
Replies: 73
Views: 175423

Re: 16 mini game Renpy

Any chance someone could reupload "3 in 1 row"?
Link is dead so obviously all images etc. are gone.
by Feleven
Sun Jun 13, 2021 7:04 am
Forum: Ren'Py Questions and Announcements
Topic: Accessing a class list
Replies: 2
Views: 564

Re: Accessing a class list

So all I missed were (). It's funny that I usually struggle a few hours looking for a solution and it's something plain simple & obvious.
Thanks a lot. I will also give the changed code a go later.
by Feleven
Sun Jun 13, 2021 5:40 am
Forum: Ren'Py Questions and Announcements
Topic: Accessing a class list
Replies: 2
Views: 564

Accessing a class list

Hey, I'm using a simple day/time script found here https://lemmasoft.renai.us/forums/viewtopic.php?t=49177 More precisely I'm talking about this list found here at self.time_of_day: init python: class day_time(object): def __init__(self): self.day = 1 # set this to whatever starting day is self.week...