Search found 10 matches

by AliceandHare_
Tue Sep 19, 2023 2:12 am
Forum: Ren'Py Questions and Announcements
Topic: Sync server timeout error help
Replies: 6
Views: 942

Re: Sync server timeout error help

Thanks for the help with the DNS, I now get this in the console: >ping sync.renpy.org Pinging sync.renpy.org [104.131.160.235] with 32 bytes of data: Response from 104.131.160.235: bytes=32 time=109ms TTL=48 Response from 104.131.160.235: bytes=32 time=107ms TTL=48 Response from 104.131.160.235: byt...
by AliceandHare_
Mon Sep 18, 2023 7:14 am
Forum: Ren'Py Questions and Announcements
Topic: Sync server timeout error help
Replies: 6
Views: 942

Re: Sync server timeout error help

I tried again, and now I'm getting this: > ping sync.renpy.org Server: sync.renpy.org Address: 104.131.160.235 DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. *** Waiting time run out from request to sync.renpy.org > nslookup sync.renpy.org Server: sync.re...
by AliceandHare_
Mon Sep 18, 2023 2:40 am
Forum: Ren'Py Questions and Announcements
Topic: Sync server timeout error help
Replies: 6
Views: 942

Re: Sync server timeout error help

I'm sorry but I don't know exactly how I could use those lines of code, I'm still kinda new to renpy and python. Is it something I should write in the developer's mode console (shift+O), or in the code itself, or the windows console? Pinging in the windows console I get this: Pinging sync.renpy.org ...
by AliceandHare_
Mon Sep 11, 2023 7:15 am
Forum: Ren'Py Questions and Announcements
Topic: Sync server timeout error help
Replies: 6
Views: 942

Sync server timeout error help

Hello! I've been having this problem lately with the game I'm still making, and it is that when I try to upload sync, I receive a "server timeout" notification, so I cannot move my save files that way. Also, the log says: Sync error: Traceback (most recent call last): File "/home/tom/...
by AliceandHare_
Thu Sep 07, 2023 2:25 am
Forum: Ren'Py Questions and Announcements
Topic: Sound not loading in save file
Replies: 2
Views: 304

Re: Sound not loading in save file

I didn't know I could just type the name of the song without the extension and it would work.
Before I got your answer, I discovered I had a "stop music" in the after_load label. Removing it fixed the issue, but everything still works.
Thank you very much!
by AliceandHare_
Tue Sep 05, 2023 9:19 am
Forum: Ren'Py Questions and Announcements
Topic: Sound not loading in save file
Replies: 2
Views: 304

Sound not loading in save file

Hello! I'm having issues with my game. I can play my game and everything works fine, and the sounds play correctly, but when I load a save file, the music that should be playing, doesn't appear, so it's completely silent. This is an example of how my code looks like: define audio.Song1 = "audio...
by AliceandHare_
Tue Aug 29, 2023 4:27 am
Forum: Ren'Py Questions and Announcements
Topic: Need help with DLC/added content to a game through Steam.
Replies: 1
Views: 232

Re: Need help with DLC/added content to a game through Steam.

Hello again! Turns out I had some other code that wasn't properly written and that's why the tutorial didn't work, but I finally have it! So I come back with new questions. If I update the game in the future, after releasing the DLC, is there anything to keep in mind so players do not lose their pro...
by AliceandHare_
Mon Aug 28, 2023 5:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Need help with DLC/added content to a game through Steam.
Replies: 1
Views: 232

Need help with DLC/added content to a game through Steam.

I'm working on a VN that started as something small, but developed into a quite long story, so my team and I decided to divide the story in episodes. We plan on releasing them through Steam separately, so I've been looking into DLC tutorials and such, but I haven't found any that work for me right n...
by AliceandHare_
Fri Aug 25, 2023 3:33 am
Forum: Creator Discussion
Topic: Need help with persistent data and loading save files
Replies: 1
Views: 1221

Re: Need help with persistent data and loading save files

Hi again! I got something working that may not be super optimized, but it gets the job done! label after_load: #First image if Imagelock01 == True: $ mp.unlock_Imagelock01p = True #Second image if Imagelock02 == True: $ mp.unlock_Imagelock02p = True This way, if I open the game as if I just installe...
by AliceandHare_
Thu Aug 24, 2023 12:33 pm
Forum: Creator Discussion
Topic: Need help with persistent data and loading save files
Replies: 1
Views: 1221

Need help with persistent data and loading save files

Hello! I'm not that experienced with programming in Ren'py, and this is my first time trying to code professionally, so any advice is welcomed! So far I haven't had much trouble with normal VN stuff like route branching, affection point systems, menus, etc. , but in my game we expect to release futu...