Search found 248 matches

by Nero
Wed Mar 06, 2024 6:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Go to Main Menu and auto reload script
Replies: 1
Views: 109

Go to Main Menu and auto reload script

How can I return to main menu after clicking Main Menu option and after that have scrip auto reload the game? My game doesn't fully restarts once you go back to main menu which bugs game out. So my idea would be to run this 2 functions one after another but the problem is that they cancel each other...
by Nero
Mon Jan 01, 2024 9:29 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Server and Clients online text chat
Replies: 2
Views: 1868

Re: Server and Clients online text chat

Yes you got it right, nice idea I just tested it and it works. Thanks for the help!
by Nero
Sun Dec 31, 2023 8:31 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Server and Clients online text chat
Replies: 2
Views: 1868

[SOLVED]Server and Clients online text chat

I'm trying to make very basic text chat between renpy client and server I have coded using python language. Are we able to run renpy.input() and while loop in same time? Idea is that while loop would constantly be getting data from the server and input would be used to send data to back server whene...
by Nero
Sun Apr 02, 2023 5:23 pm
Forum: Completed Games
Topic: Cops&Robbers [one/two-player][dungeon][Free]
Replies: 10
Views: 9242

Re: Cops&Robbers [one/two-player][dungeon][Free]

Hi xavimat, Do you still have the copy of this code maybe? I'm unable to find it anywhere else on the internet. I know it's been a while but no one has ever done something like this in Ren'Py I would like to see the example for this code is there a way you could reupload this again? Also I want to s...
by Nero
Sat Apr 01, 2023 4:49 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a multiplayer Ren'Py game?
Replies: 3
Views: 407

Re: Making a multiplayer Ren'Py game?

Oh sorry Alex, I expressed myself the wrong way. I meant online over the internet over 2 computers by IP address (or maybe some other way)
by Nero
Sat Apr 01, 2023 3:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a multiplayer Ren'Py game?
Replies: 3
Views: 407

Making a multiplayer Ren'Py game?

Anyone here have any experience of making multiplayer based game in Ren'Py? So I want to do a basic thing like making 2 players being able to click on the screen and move slide for example? Note that I have never had any experience with multiplayer coding so I'm not sure if I'm asking for very diffi...
by Nero
Wed Aug 03, 2022 8:44 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] I want sounds to overlap
Replies: 2
Views: 444

Re: I want sounds to overlap

Oh I thought those channel names are just strings with no effects. Naming my channel to "audio" solved the problem. Thanks Ocelot.
by Nero
Wed Aug 03, 2022 8:20 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] I want sounds to overlap
Replies: 2
Views: 444

[SOLVED] I want sounds to overlap

I was wondering is there a way to make sound effect on single channel to overlap each other. For example I have a card draw effect that is set to 0.1 loop delay and duration of .mp3 is 1 second so if I run this code it will work but I will get this choppy-breaking sound, same as you would get by spa...
by Nero
Sat Jul 09, 2022 1:46 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Using Function action in imagebutton
Replies: 5
Views: 398

Re: Using Function action in imagebutton

Yes that's it. Thanks laure, however it makes no sense to me why it needs to be called this way.
by Nero
Sat Jul 09, 2022 1:08 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Using Function action in imagebutton
Replies: 5
Views: 398

Re: Using Function action in imagebutton

I will need little bit more help on this one possible with example, I was reading what you posted but it doesn't help my case I understand what it does but I don't see the need for this in my case. My function does not need any of *args and **kwargs as I already know the number of arguments that I n...
by Nero
Sat Jul 09, 2022 12:27 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Using Function action in imagebutton
Replies: 5
Views: 398

[SOLVED]Using Function action in imagebutton

I want to use Function option for action imagebutton but it looks like it only works for functions without arguments. How do I use a function with 1,2 or unlimited number of arguments? Not sure what I'm doing wrong I'm getting an TypeError if I try to use it like shown in code below : TypeError 'Non...
by Nero
Tue Jun 16, 2020 12:59 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Image Zoom From Center Doesn't Work
Replies: 3
Views: 337

Re: Image Zoom From Center Doesn't Work

Both of your solutions worked fine guys.

Per K Grok your case also works now that I fixed the frame problem.

Remix as you said problem was that it was inside of a frame but I managed to make it work with some tweaking.

Thanks!
by Nero
Mon Jun 15, 2020 11:29 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Image Zoom From Center Doesn't Work
Replies: 3
Views: 337

[SOLVED]Image Zoom From Center Doesn't Work

Hi, this might be a simple problem to solve but I'm having some trouble. Basically I want my picture to be zoomed out from the CENTER of its position not from the LEFT upper corner as it is default. I was searching some documentation but it seems like it doesn't work or maybe I'm using it incorrectl...
by Nero
Fri Jun 05, 2020 2:41 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Making Screen Disappear After Few Seconds
Replies: 3
Views: 376

Re: Making Screen Disappear After Few Seconds

Yes that's exactly what I wanted, timer inside of a screen. Thanks!
by Nero
Thu Jun 04, 2020 11:49 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Making Screen Disappear After Few Seconds
Replies: 3
Views: 376

[SOLVED]Making Screen Disappear After Few Seconds

Does anyone know how can I make screen that will close itself after few seconds? For example I use show screen test and then after 3-4 seconds it should disappear? Im aware that this can be done via function but then I need to use pause which will interfere with the program itself. I looked everywhe...