Search found 91 matches

by Adabelitoo
Sat May 11, 2024 3:51 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Variable as a part of another variable's name?
Replies: 9
Views: 399

Re: Variable as a part of another variable's name?

For me it works. I open the console, then type "long"<Enter>, then type "rp"<Enter>, and I see the whole output of rp without ellipsis. My bad. I thought I would see the whole output in the variable viewer. I didn't realise you were still talking about the console. Yes it works ...
by Adabelitoo
Fri May 10, 2024 5:19 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Variable as a part of another variable's name?
Replies: 9
Views: 399

Re: Variable as a part of another variable's name?

jeffster wrote: Thu May 09, 2024 8:21 pm
Adabelitoo wrote: Thu May 09, 2024 6:00 pm How can I do the second thing?
You type

Code: Select all

long
in the console and press Enter.
This doesn't work. You mean presing Shift+o to open the console and then type long there, right? Because it still looks the same.
by Adabelitoo
Thu May 09, 2024 6:00 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Variable as a part of another variable's name?
Replies: 9
Views: 399

Re: Variable as a part of another variable's name?

Ocelot wrote: Thu May 09, 2024 5:41 pm 1) You can use rp["bob"] in developer console to check specific variable you want.
2) You can use long command in developer console to switch to the long display mode. After that " rp " will show you full info instead of shortened data.
How can I do the second thing?
by Adabelitoo
Thu May 09, 2024 5:08 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Variable as a part of another variable's name?
Replies: 9
Views: 399

Re: Variable as a part of another variable's name?

Thank you both for your answers. But to be honest, if you just have 4 variables, you could also use conditions, right... readable code is better than fancy looking one. It probably takes the CPU less time to execute simple if-else statements as well. if cha_name == "linda": $ rp_linda -= 1...
by Adabelitoo
Wed May 08, 2024 5:35 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Variable as a part of another variable's name?
Replies: 9
Views: 399

[SOLVED]Variable as a part of another variable's name?

I was looking for that and I found this post with the same question, but I didn't understand exactly how that works. https://lemmasoft.renai.us/forums/viewtopic.php?t=65398 This is my situation, I'd like to adapt and understand it applied to this. default rp_linda = 0 default rp_bob = 0 default rp_r...
by Adabelitoo
Sat Apr 13, 2024 5:10 pm
Forum: Ren'Py Questions and Announcements
Topic: Empty textbox shows up while using renpy.pause()
Replies: 5
Views: 469

Re: Empty textbox shows up while using renpy.pause()

https://lemmasoft.renai.us/forums/viewtopic.php?t=46790 I went back to that older thread that I found before making this thread but I thought it wouldn't be useful to my, given how old it was and how it was fixed. I made a transpatent textbox like the guy said and it worked for me, so now my code is...
by Adabelitoo
Sat Apr 13, 2024 2:57 am
Forum: Ren'Py Questions and Announcements
Topic: Empty textbox shows up while using renpy.pause()
Replies: 5
Views: 469

Re: Empty textbox shows up while using renpy.pause()

When choosing the text editor, Renpy adds under the Atom option "Atom is deprecated and its bugs are known for corrupting games, using another editor is recommended." I really don't want to change it so if Atom really doesn't corrupt games, that would be great for me. About the windows iss...
by Adabelitoo
Fri Apr 12, 2024 6:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Empty textbox shows up while using renpy.pause()
Replies: 5
Views: 469

Empty textbox shows up while using renpy.pause()

Some time ago I started working on a second game. I copy-pasted many things from my first game to my second game but something I noticed shortly after was that the textbox remained on screen during renpy.pause() while in my first game it hid automatically, and it hid automatically without the need o...
by Adabelitoo
Fri Mar 01, 2024 8:04 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] About choosing names and caps/case sensitive
Replies: 5
Views: 245

Re: About choosing names and caps/case sensitive

Thank you everyone for your answers. Everything works as planned now.

Marked as solved.
by Adabelitoo
Fri Mar 01, 2024 5:41 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] About choosing names and caps/case sensitive
Replies: 5
Views: 245

[Solved] About choosing names and caps/case sensitive

Let's imagine that the player wants to name his character Markus, so I'll do this $ mc = renpy.input(What will be your name (Default name will be MC)) $ mc = mc.strip() Now, let's imagine that the player writes markus or mARKUS instead of Markus. Is it possible to force the name to be Markus? Also, ...
by Adabelitoo
Mon Feb 26, 2024 4:26 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Help making a slider bar to change the Save/Load page
Replies: 14
Views: 752

Re: Help making a slider bar to change the Save/Load page

I used current-page, and especially used - instead of _, to indicate that that was what I wanted to replace but I didn't know what would replace it. I know current-page is wrong, that was the point, maybe I should have written something like xxxxxxxxxx >= 99 to make it easier to tell. I tried with p...
by Adabelitoo
Mon Feb 26, 2024 2:13 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Help making a slider bar to change the Save/Load page
Replies: 14
Views: 752

Re: Help making a slider bar to change the Save/Load page

Thanks! The bar became a slider bar and I managed to make the thumb bigger than the bar itself by mixing the custom image with empty spaces and increasing the area height. Thank you both. Marked as solved, although I'm still curious about how yaling would have worked. Edit: I found an issue. If I pr...
by Adabelitoo
Mon Feb 26, 2024 12:14 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Help making a slider bar to change the Save/Load page
Replies: 14
Views: 752

Re: Help making a slider bar to change the Save/Load page

Sorry I think I'm still missing the point here. I understand how left and right work, but I don't want to use the bar bar (game/gui/bar/), I want to use the slider bar (game/gui/slider/). Copy-pasting your code shows a bar and I'd like to make it a slider bar.
by Adabelitoo
Sun Feb 25, 2024 5:08 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Help making a slider bar to change the Save/Load page
Replies: 14
Views: 752

Re: Help making a slider bar to change the Save/Load page

I'm still confused. I messed up with those thumb values before but I didn't get any results. Now I thought you meant adding thumb_yalign 0.5 below area(780, 98, 800, 25) but that also doesn't work.
by Adabelitoo
Sun Feb 25, 2024 4:51 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Help making a slider bar to change the Save/Load page
Replies: 14
Views: 752

Re: Help making a slider bar to change the Save/Load page

I'm confused. I managed to make the bar smaller than the thing you slide by doing this bar value Preference("music volume"): area (780, 98, 800, 25) Ignoring the fact that is says Preference("music volume") because that's the one I copy pasted to use until I learn how to change t...