Search found 92 matches

by senisanti
Sun Aug 06, 2023 12:56 am
Forum: Ren'Py Questions and Announcements
Topic: Character name as image
Replies: 13
Views: 3302

Re: Character name as image

What format do you put the images in, what size, because I may not understand the original message very well, but I thought this message was to put a small image on the left side.

With the method given, the image is with the text and appears below the text.
by senisanti
Sat Aug 05, 2023 6:00 am
Forum: Ren'Py Questions and Announcements
Topic: Character name as image
Replies: 13
Views: 3302

Re: Character name as image

Hi.

I reopen this thread because today in 2023 none of the proposed solutions work, so I'd like to know how we can now put an image instead the name.

Thanks.
by senisanti
Sun Jun 12, 2022 3:04 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Ranking
Replies: 16
Views: 644

Re: Ranking

I redefined all the values being careful and not leaving out any part and I succeeded, thanks guys.
by senisanti
Fri Jun 10, 2022 5:50 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Ranking
Replies: 16
Views: 644

Re: Ranking

for match in matches:

This line send me an error...

name matches is not defined...


Why? I need to put...
default matches = []
by senisanti
Fri Jun 10, 2022 5:10 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Ranking
Replies: 16
Views: 644

Re: Ranking

by senisanti
Fri Jun 10, 2022 4:45 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Ranking
Replies: 16
Views: 644

Re: Ranking

I can't make a picture of my ranking, I can't do it, that's what I ask.
I ask you to give me a method to do the ranking.
by senisanti
Fri Jun 10, 2022 3:29 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Ranking
Replies: 16
Views: 644

Re: Ranking

I don't understand your new code. I don't know how to do it. I decided to make it simpler. $ b1 = 0 $ b2 = 0 $ b5 = 0 $ b6 = 0 $ b7 = 0 $ b8 = 0 $ b9 = 0 $ b10 = 0 $ b11 = 0 $ b12 = 0 $ b13 = 0 $ b14 = 0 $ b15 = 0 $ b16 = 0 $ b3 = "Aztecas" $ b4 = "DNorth" $ b17 = "Leones&qu...
by senisanti
Fri Jun 10, 2022 12:25 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Ranking
Replies: 16
Views: 644

Re: Ranking

I'll put the whole code and with the new modification I made. label basketgames: if basketgames == 0: $ b1 = 0 $ b2 = 0 $ b5 = 0 $ b6 = 0 $ b7 = 0 $ b8 = 0 $ b9 = 0 $ b10 = 0 $ b11 = 0 $ b12 = 0 $ b13 = 0 $ b14 = 0 $ b15 = 0 $ b16 = 0 $ b3 = "Aztecas" $ b4 = "DNorth" $ b17 = &quo...
by senisanti
Fri Jun 10, 2022 11:41 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Ranking
Replies: 16
Views: 644

Re: Ranking

If the DNorth make 21 points against 17 in Leones

Then the code you made shows
DNorth 21
Leones 17

the second day

if DNorth 14 - 21 Leones

then your code should show

Leones 38
Dnorth 35
by senisanti
Fri Jun 10, 2022 11:38 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Ranking
Replies: 16
Views: 644

Re: Ranking

It's great the code you made but it's not quite what I want. Maybe there is something that is obvious to you but not to me. The code with the teams next to each other I need it for the end of the game. It's the screen results of the current day's games. It's afterwards that I have to use the code yo...
by senisanti
Fri Jun 10, 2022 10:03 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Ranking
Replies: 16
Views: 644

Re: Ranking

Yes, when the player plays the game at the end of the game he sees the results of the games. name1, pts, name2 it gives for example Leones 21-17 Dnorth but when the player finishes the match and continues the game he can go to a page where he can see the championship ranking. I want the teams to be ...
by senisanti
Fri Jun 10, 2022 1:14 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Ranking
Replies: 16
Views: 644

[SOLVED]Ranking

Hi, I have a code that creates a championship. You can see below the code that gives the results of the match played by the player and the results of the other matches. label resultbasketweek: scene black $ renpy.pause(1) show screen weekbasket sp "And now, enjoy the results of the week." ...
by senisanti
Sun May 22, 2022 8:04 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]sort list
Replies: 10
Views: 506

Re: sort list

Sorry, I didn't understand that I had the right to put several with different names. So now I'll even put one for each AI player. It will allow me to put them in random, it's even better. Thanks a lot Alex. I was just asking for a small thing, you gave much more than I asked for, even better than I ...
by senisanti
Sun May 22, 2022 2:02 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]sort list
Replies: 10
Views: 506

Re: sort list

Thanks, it's great what you've done, I love the renpy.pause thing, the results appear in turn, it's great. I'm going to use the two methods you suggest for my game, the second method with the label for the end of each competition so that the player can see the results as if he was live. and the scre...
by senisanti
Sat May 21, 2022 8:28 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]sort list
Replies: 10
Views: 506

Re: sort list

I also have another important question about the code. The player does not appear in the list but I have to add it. But the player will put a score that depends on his choices in the game. How can I add the score of the player which is random. I tried like this, but it doesn't work. default playersc...