Search found 91 matches

by Zherot
Mon Sep 04, 2017 1:17 am
Forum: Ren'Py Questions and Announcements
Topic: Display stats or information on a screen?
Replies: 17
Views: 2533

Re: Display stats or information on a screen?

You shouldn't declare your variables inside labels (you can alter them from inside labels just fine), else it will eventually result in save/load troubles. So always use default (or define)! I edited my post but you were really quick to respond so i will just copy paste what i edited: About showing...
by Zherot
Mon Sep 04, 2017 1:13 am
Forum: Ren'Py Questions and Announcements
Topic: Display stats or information on a screen?
Replies: 17
Views: 2533

Re: Display stats or information on a screen?

Note: Current best practices are to declare variables outside of labels using default (unless they are persistent variables which use define). So not this: label start: $ MC_name = "Joe" $ MC_HP = 100 $ MC_maxHP = 100 $ Char_ATK = "8" $ Char_DEF = "10" $ Char_SPD = &qu...
by Zherot
Sun Sep 03, 2017 1:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Display stats or information on a screen?
Replies: 17
Views: 2533

Re: Display stats or information on a screen?

I will check the code dude thank you,i suspected it was frames but there are also other types of user interfaces that are kinda in the documentation but since there is no graphical examples you can't tell what they look like and how you could use them.
by Zherot
Sat Sep 02, 2017 10:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Display stats or information on a screen?
Replies: 17
Views: 2533

Display stats or information on a screen?

Hi again, maybe this question is stupid but i want to know how to display "stats" or names or whatever information i want in menus or displayables, so how would be the best way to do it? I see there are other types of user interfaces but they are not explained in the renpy tutorial. If you...
by Zherot
Fri Aug 18, 2017 11:42 am
Forum: Ren'Py Questions and Announcements
Topic: Best video format for Renpy?
Replies: 13
Views: 13512

Re: Best video format for Renpy?

Your threads, with all the answers you got so far, are already becoming a treasure guide for any Ren'Py beginner :) . When you build a game distribution, Ren'Py automatically gets the game assets and put them into a monolithic archive.rpa file. It's possible to have several rpa files, one for each ...
by Zherot
Fri Aug 18, 2017 1:26 am
Forum: Ren'Py Questions and Announcements
Topic: Best video format for Renpy?
Replies: 13
Views: 13512

Re: Best video format for Renpy?

Is this not the Renpy forum??? Lemma Soft Forums is a general story based games discussion site, not only a Ren'Py site. You have posted several Ren'Py questions in the general discussion thread, out of the Ren'Py section. That's why they had to be moved to the proper place. Whe you compile and dis...
by Zherot
Thu Aug 17, 2017 2:12 pm
Forum: Ren'Py Questions and Announcements
Topic: Best video format for Renpy?
Replies: 13
Views: 13512

Re: Best video format for Renpy?

Whe you compile and distribute a pryect what happens to the videos, images and other resources? are they ecnrypted or anyone can access them without even playing the game?
by Zherot
Thu Aug 17, 2017 2:12 pm
Forum: Ren'Py Questions and Announcements
Topic: Best video format for Renpy?
Replies: 13
Views: 13512

Re: Best video format for Renpy?

Taleweaver wrote: Thu Aug 17, 2017 1:04 pm Ren'Py questions should be posted in the Ren'Py forum.

Moved.
Is this not the Renpy forum???
by Zherot
Wed Aug 16, 2017 10:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Best video format for Renpy?
Replies: 13
Views: 13512

Re: Best video format for Renpy?

I'll check it out.
by Zherot
Wed Aug 16, 2017 12:25 pm
Forum: Ren'Py Questions and Announcements
Topic: Best video format for Renpy?
Replies: 13
Views: 13512

Re: Best video format for Renpy?

Yes, mkv is matroska. It isn't a format though (and neither is mp4) but rather a container file. Think of it like a zip. You only see myfile.zip, but open it in the right program and now you see more files. In the case of mkv, that would be a video stream, audio and maybe subtitles, pictures and fo...
by Zherot
Wed Aug 16, 2017 1:30 am
Forum: Ren'Py Questions and Announcements
Topic: Best video format for Renpy?
Replies: 13
Views: 13512

Re: Best video format for Renpy?

Imperf3kt wrote: Wed Aug 16, 2017 1:08 am After a lot of misunderstandings and trial and error, I found vp8 or vp9 in an mkv container best.

.mp4 is not supported.
Ah, so that is why it didn't worked then, noted.

mkv its matroska?
by Zherot
Tue Aug 15, 2017 5:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Best video format for Renpy?
Replies: 13
Views: 13512

Best video format for Renpy?

What do you think would be the best format in terms of file size (short), in terms of quality and of course compatibility?

I tried to use MP4 but it didn't even appeared but for AVI it did worked.
by Zherot
Tue Aug 15, 2017 5:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5452

Re: Actual guides?

A mod can put this on solved.
by Zherot
Tue Aug 15, 2017 5:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Buttons in front of a video?
Replies: 5
Views: 509

Re: Buttons in front of a video?

Well i think this problem is solved, thanks to Irina i could solve the problem of the screen and i messed around with the size and i had to make it a bit larger so it could fit perfectly on the screen.
by Zherot
Tue Aug 15, 2017 3:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Buttons in front of a video?
Replies: 5
Views: 509

Re: Buttons in front of a video?

screen tv_menu: zorder 2 # <<<<< add this line vbox: xalign 0.0 yalign 0.5 textbutton "Channel 1" action Jump("channel1") textbutton "Channel 2" action Jump("channel2") textbutton "Stop Watching TV" action Hide("tv_menu"), Jump("livin...