Search found 792 matches

by rayminator
Wed Oct 21, 2020 11:27 am
Forum: Ren'Py Questions and Announcements
Topic: My variable is resetting to 0 on load or game close.
Replies: 9
Views: 966

Re: My variable is resetting to 0 on load or game close.

you can use this if everything you tried and didn't work

Code: Select all

$ renpy.retain_after_load()
by rayminator
Fri Oct 16, 2020 10:21 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How to wipe from center?
Replies: 2
Views: 537

Re: How to wipe from center?

you need to post your code what you are using
by rayminator
Fri Oct 02, 2020 9:59 pm
Forum: Ren'Py Questions and Announcements
Topic: How to change the titlescreen when 'settings' is pressed
Replies: 4
Views: 404

Re: How to change the titlescreen when 'settings' is pressed

you will have to remove this as well cause it's using the game_menu settings

Code: Select all

use game_menu(_("Settings"), scroll="viewport"):
and backspace the vbox
by rayminator
Fri Oct 02, 2020 9:02 pm
Forum: Ren'Py Questions and Announcements
Topic: How to change the titlescreen when 'settings' is pressed
Replies: 4
Views: 404

Re: How to change the titlescreen when 'settings' is pressed

you an image in screen like this

Code: Select all

screen preferences:
     add "mod_assets/bg/titlescreenblank.png"[code]
by rayminator
Thu Oct 01, 2020 4:07 pm
Forum: Ren'Py Cookbook
Topic: [Tutorial]Adding a Love Meter Bar
Replies: 44
Views: 35359

Re: [Tutorial]Adding a Love Meter Bar

is there anyway to put this into a screen and how? screen horizontal_bar_example(): frame: xalign 0.5 ypos 50 xsize 500 bar: value VariableValue("love_points", 100, style=u'my_bar_style') style my_bar_style: left_bar my_image1.png right_bar my_image2.png # TODO: make your own style using ...
by rayminator
Mon Sep 28, 2020 10:30 pm
Forum: Ren'Py Cookbook
Topic: [Tutorial]Adding a Love Meter Bar
Replies: 44
Views: 35359

Re: [Tutorial]Adding a Love Meter Bar

is there anyway to put this into a screen and how?
by rayminator
Tue Sep 22, 2020 11:50 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with choices
Replies: 7
Views: 551

Re: Problem with choices

it cause you forgot to add these to the other menus

Code: Select all

$ gop = 1

Code: Select all

$ rct = 1
by rayminator
Tue Sep 22, 2020 10:03 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with choices
Replies: 7
Views: 551

Re: Problem with choices

change the zero into 1's my mistake

Code: Select all

if pws == 0:
if gop == 0:
if rct == 0:
by rayminator
Tue Sep 22, 2020 8:10 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with choices
Replies: 7
Views: 551

Re: Problem with choices

would do it this way it better default pws = 0 default gop = 0 default rct = 0 menu: "Alright, It's time to choose some nice lingerie" "Purple with stockings": $ pws = 1 jump continue "Grey one piece": jump continue "Red C Thru": jump continue label continue: ...
by rayminator
Wed Sep 16, 2020 4:18 pm
Forum: Ren'Py Questions and Announcements
Topic: Game randomly stops responding
Replies: 4
Views: 537

Re: Game randomly stops responding

you just found out what's your problem is something is eating your memory

your memory capacity should be around 10% with just those three programs running your system should be using at least 10 to 20%
by rayminator
Mon Sep 14, 2020 9:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Parallel rotate and hide image
Replies: 4
Views: 602

Re: Parallel rotate and hide image

you will have adjust the number either the yalign/linear to get rid of the jump part that you have to figure out yourself

question:
1. what is the code for your button? so we can help you to hide it
by rayminator
Sun Sep 13, 2020 11:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Parallax for Main Menu
Replies: 3
Views: 506

Re: Parallax for Main Menu

they used webp format video as a background and used imagebutton or hotspots for the menu and over lapping then menu over the video
by rayminator
Sun Sep 13, 2020 12:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Adding Date to The Screen
Replies: 3
Views: 477

Re: Adding Date to The Screen

this one way of doing it but there are other ways too

I don't know how you setting up your variables

you can do it like this

Code: Select all

text "[date][day][month]"
by rayminator
Sat Sep 12, 2020 9:11 am
Forum: Ren'Py Questions and Announcements
Topic: Game randomly stops responding
Replies: 4
Views: 537

Re: Game randomly stops responding

sounds like ram problem

How old is you computer?
What are you spec?
Any other programs running while playing?
by rayminator
Wed Sep 09, 2020 12:40 pm
Forum: Ren'Py Questions and Announcements
Topic: FMV doesn't play.
Replies: 1
Views: 372

Re: FMV doesn't play.

I suggest that you convert you avi to webp or to something like Ren'Py is capable of using libav (included) to play movies using the video codecs: VP9 VP8 Theora MPEG-4 part 2 (including Xvid and DivX) MPEG-2 MPEG-1 and the following audio codecs: Opus Vorbis MP3 MP2 PCM inside the following contain...