Search found 9 matches

by CatNip23
Sun Mar 19, 2023 9:34 pm
Forum: Ren'Py Questions and Announcements
Topic: Apk name for different projects bug
Replies: 5
Views: 803

Re: Apk name for different projects bug

Just a heads up if anyone is also having this problem. I couldn't fix it, instead I just use an app editor program and change the install name there
by CatNip23
Sat Dec 10, 2022 8:34 pm
Forum: Ren'Py Cookbook
Topic: 81 mini game Renpy
Replies: 73
Views: 179787

Re: 54 mini game Renpy

My editor says that ui.add is obsolete, but I don't know what to use in its place, and I can find almost nothing about it.

Regarding my problem, I was able to solve it. It was nothing related to the ui.add however. My fish were just spawning outside the screen. I fixed that
by CatNip23
Fri Dec 09, 2022 8:31 pm
Forum: Ren'Py Cookbook
Topic: 81 mini game Renpy
Replies: 73
Views: 179787

Re: 54 mini game Renpy

Hello, I seem to be having a problem with the dog minigame #10, specifically with the replayability. I managed to get it to work, but when I start new round, it looks like the one before stays under, and the fish that are under are invisible. I think it comes from the ui.add( FishCatcherGame() ) fro...
by CatNip23
Wed Oct 26, 2022 3:43 pm
Forum: Ren'Py Questions and Announcements
Topic: Apk name for different projects bug
Replies: 5
Views: 803

Re: Apk name for different projects bug

Just a guess, did you forget to change the name in options.rpy before building game2? No, but it shouldn't be a problem since by default Renpy makes the buid name the project name, but I always change it to add the version, so I for sure am not leaving the default as well It does for PC builds but ...
by CatNip23
Thu Oct 13, 2022 12:54 pm
Forum: Ren'Py Questions and Announcements
Topic: Apk name for different projects bug
Replies: 5
Views: 803

Re: Apk name for different projects bug

plastiekk wrote: Thu Oct 13, 2022 2:43 am Just a guess, did you forget to change the name in options.rpy before building game2?
No, but it shouldn't be a problem since by default Renpy makes the buid name the project name, but I always change it to add the version, so I for sure am not leaving the default as well
by CatNip23
Wed Oct 12, 2022 2:33 pm
Forum: Ren'Py Questions and Announcements
Topic: Apk name for different projects bug
Replies: 5
Views: 803

Apk name for different projects bug

Hello, I'm having a problem for a long time, and I'm not sure how to fix it. I also don't know if anyone else is having the same problem since I can't find anything like that when searching. When I make the Android ports for different projects, the name always come out wrong. For example, I make &qu...
by CatNip23
Mon Jun 27, 2022 1:08 pm
Forum: Ren'Py Questions and Announcements
Topic: Choice statements with weights
Replies: 4
Views: 346

Re: Choice statements with weights

Oh, it's a lot simpler than I thought. Thanks!
by CatNip23
Mon Jun 27, 2022 12:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Choice statements with weights
Replies: 4
Views: 346

Re: Choice statements with weights

It's not clear to me how I would use it. I tried using: image anim1: atl_choice ::= "choice" (0.7)? ":" "animation1.png" 0.07 "animation2.png" 0.07 "animation3.png" 0.07 atl_choice ::= "choice" (0.3)? ":" "animation4.png"...
by CatNip23
Mon Jun 27, 2022 12:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Choice statements with weights
Replies: 4
Views: 346

Choice statements with weights

Hello, I would like to show some specific ATL animations but I'm having some problems. The choice statement chooses block with equal probabilites, but I would like to have some weights when choosing, like this: image anim1: choice if renpy.random.randint(1, 10) > 3: "animation1.png" 0.07 &...