Search found 20 matches

by yuuri88
Sun Oct 06, 2019 2:55 am
Forum: Ren'Py Questions and Announcements
Topic: Steam uploading error
Replies: 1
Views: 426

Steam uploading error

I don't know if I can ask this question here. So here's the problem about what we faced: The game's VDF of appid and depots was all done, but when we running steamcmd's run_app_build it failed. The message below is what it failed: Steam>run_app_build C:\Users\USER\Desktop\sdk\tools\ContentBuilder\sc...
by yuuri88
Tue Sep 10, 2019 3:24 pm
Forum: Ren'Py Questions and Announcements
Topic: movie .mkv
Replies: 5
Views: 1203

Re: movie .mkv

I remember mkv is one of the matroska. Am I wrong? Btw,I try other mkv(smaller)movie and works successful. So maybe how to let renpy handle a large movie is the big problem to me
by yuuri88
Tue Sep 10, 2019 6:26 am
Forum: Ren'Py Questions and Announcements
Topic: movie .mkv
Replies: 5
Views: 1203

movie .mkv

I have some problem about movie. I try to use other mkv movie and it can work anyway. but when I put a 200mb movie in game ,it just turn black screen.
Is that because the data is too large?
by yuuri88
Mon Sep 02, 2019 8:31 am
Forum: Ren'Py Questions and Announcements
Topic: save problem about empty slots
Replies: 2
Views: 487

Re: save problem about empty slots

I'm trying to save a file slot. Not just a set slot ,but a slot which can be in sequence of the save list. I don't want this save can overwrite a used save slot.
by yuuri88
Sun Sep 01, 2019 3:52 am
Forum: Ren'Py Questions and Announcements
Topic: save problem about empty slots
Replies: 2
Views: 487

save problem about empty slots

Need to ask.I need to save game at an empty save slots . How do I code this. I try to use renpy.save(empty slot, save_name) and it can't work. I try to find it at lemmasoft but confuse more I need to let 1-1 change to a empty slots init python: def purge_saves(): saves = renpy.list_slots() for save ...
by yuuri88
Thu Aug 29, 2019 10:32 pm
Forum: Ren'Py Questions and Announcements
Topic: Wrong inheritance about save and persistent data
Replies: 4
Views: 572

Re: Wrong inheritance about save and persistent data

Yes, that's the part of what I want.

All in all is to prevent the old version influence the newer version
by yuuri88
Thu Aug 29, 2019 8:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Wrong inheritance about save and persistent data
Replies: 4
Views: 572

Wrong inheritance about save and persistent data

This is a wired question. When I save at the old version, the newer version can see what I save in this computer. It also happen on many questions as screen resolution and the persistent data I made from script.

How can I let these settings can't be inherit from old version :?: :cry: :cry:
by yuuri88
Mon Aug 26, 2019 9:07 am
Forum: Ren'Py Questions and Announcements
Topic: when I play the game I click F4 can open save list but...
Replies: 2
Views: 504

when I play the game I click F4 can open save list but...

I need some help. I define F4 is the key to save list, and F5 is the key to option when I play the game I click F4 can open save list but if I click F5 again, it will jump to option. I propose let two features seperate. As I click F4 and close it, then I can acturally click F5 and go to option, If y...
by yuuri88
Mon Aug 26, 2019 8:46 am
Forum: Ren'Py Questions and Announcements
Topic: save problem
Replies: 2
Views: 475

Re: save problem

It's ok, I use default a persistent value to fix this problem
by yuuri88
Sun Aug 25, 2019 4:27 am
Forum: Ren'Py Questions and Announcements
Topic: save problem
Replies: 2
Views: 475

save problem

I just use this solution about save. And when I save at the point I forse to save,the other save data will be delete. :cry: :cry: how to keep other save data?

https://www.reddit.com/r/RenPy/comments ... c/ega2uhl/
by yuuri88
Fri Aug 23, 2019 8:55 pm
Forum: Ren'Py Questions and Announcements
Topic: I have two question about flag and text box
Replies: 3
Views: 547

Re: I have two question about flag and text box

And here is the other question. When I try to use persistent save I don't know how to write. I just wrote this and doesn''t work. default a = False default b = False label start: $ autosave if coin1 and coin2: jump next else: menu: "a": jump a "b": jump b label a: $ a = True $ a....
by yuuri88
Fri Aug 23, 2019 5:03 pm
Forum: Ren'Py Questions and Announcements
Topic: I have two question about flag and text box
Replies: 3
Views: 547

Re: I have two question about flag and text box

thank you so much I have been stuck these problems few weeks and don't know how to figure out!
by yuuri88
Fri Aug 23, 2019 5:08 am
Forum: Ren'Py Questions and Announcements
Topic: I have two question about flag and text box
Replies: 3
Views: 547

I have two question about flag and text box

1. I want to set two choice and both are bad end. The real end will be found after two choice have been chosen. But this is the question,when the game goes bad end. I need to return to title and autosave. but the flag can't be saved after it returns to title. How can I solve it? 2.I want to let diff...
by yuuri88
Sun Aug 11, 2019 6:43 am
Forum: Ren'Py Questions and Announcements
Topic: How can I force to save game before an important event
Replies: 4
Views: 594

Re: How can I force to save game before an important event

I'm asking another Ren'Py question ,how to let the game remeber value however it's return to title. such as $ bin = 0 default s1 = False default s2 = False label start: "save after this" $ purge_saves() if bin >=2: jump hai "1": jump sel1 "2": jump sel2 label sel1: $ bi...