Search found 5 matches

by nixrlz
Mon Oct 09, 2017 2:02 am
Forum: Ren'Py Questions and Announcements
Topic: Resize Frame textbox...
Replies: 6
Views: 6679

Re: Resize Frame textbox...

Im also having the same problem . I change my sceen size so it can fit the smartphone . But that cost me my chatbox/textbox , it so small that makes the textbox unbalance with the screen . And tried tweak in on screen.rpy / option.rpy and nothings help. I tried above solution and wasnt working eithe...
by nixrlz
Sat Aug 19, 2017 12:57 pm
Forum: Ren'Py Questions and Announcements
Topic: re: On Asking Questions
Replies: 113
Views: 21866

Re: On Asking Questions

How do I link user choice to two variable ? FOR EXAMPLE : $ USERCHOICE = "X" OR "Y" X = IMAGE_CHARACTER1 Y= IMAGE_CHARACTER2 the chosen X or Y become 1 variable = image CHOOSENCHARATER so i can just type show image CHOOSENCHARACTER and the shown image will depend on user choice(w...
by nixrlz
Sat Aug 19, 2017 12:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Making user to decided two characters ?
Replies: 6
Views: 914

Re: Making user to decided two characters ?

Very basic example... define g = Character("Girl") define b = Character("Boy") label start: "Words" menu: "Girl": $ player = Character(kind=g) "Boy": $ player = Character(kind=b) player "Words said by chosen type" I am not too sure how tha...
by nixrlz
Fri Aug 18, 2017 1:04 pm
Forum: Ren'Py Questions and Announcements
Topic: Making user to decided two characters ?
Replies: 6
Views: 914

Re: Making user to decided two characters ?

but how to make the system to remember the choice we choose , like if there is a 2 choice between mc1 and mc2 , how to make them remember as one 1 variable?
by nixrlz
Sun Aug 13, 2017 11:58 am
Forum: Ren'Py Questions and Announcements
Topic: Making user to decided two characters ?
Replies: 6
Views: 914

Making user to decided two characters ?

i've been trying to make a VN where the user can decided which character they want to play and to let them choose , i decided to make a branch button so they can choose it base on the image i display in the screen. the problem is what is the python code for that? i've been looking for tutorial but n...