Search found 48 matches
- Fri Feb 23, 2018 4:51 pm
- Forum: Ren'Py Questions and Announcements
- Topic: I got a newbie question?
- Replies: 17
- Views: 1138
Re: I got a newbie question?
Alright, so I got day1.rpy built, so how do I use it. Jump to day1 and use a label. Does it remember in your script file like images, or varible.?
- Fri Feb 23, 2018 4:02 pm
- Forum: Ren'Py Questions and Announcements
- Topic: I got a newbie question?
- Replies: 17
- Views: 1138
Re: I got a newbie question?
And how do you do that??IrinaLazareva wrote: ↑Fri Feb 23, 2018 3:50 pmAnd don't forget, that a text file must be saved in UTF-8 coding.
- Fri Feb 23, 2018 3:56 pm
- Forum: Ren'Py Questions and Announcements
- Topic: I got a newbie question?
- Replies: 17
- Views: 1138
Re: I got a newbie question?
Thank you, now for my next question, how you can make so nobody can read your script file or anything you create??
- Fri Feb 23, 2018 2:48 pm
- Forum: Ren'Py Questions and Announcements
- Topic: I got a newbie question?
- Replies: 17
- Views: 1138
I got a newbie question?
How to you make another .rpy file. Say you have main file( which is your script file) and say you have a day by day vn. How do you make a day1.rpy file and so on and so on??
- Wed Feb 21, 2018 5:36 am
- Forum: Ren'Py Questions and Announcements
- Topic: Payday day
- Replies: 4
- Views: 441
Re: Payday day
Thank you!!!
- Tue Feb 20, 2018 7:19 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Payday day
- Replies: 4
- Views: 441
Re: Payday day
Code: Select all
"The next day"
$ day_gone_by +=1
"Day = %(day_gone_by)d" - Tue Feb 20, 2018 6:53 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Payday day
- Replies: 4
- Views: 441
Payday day
I need a code that monitors the day. For example: I get paid every 7 day, I need a code that monitors and does that automatically. I know I asking alot.
- Sun Feb 18, 2018 7:23 pm
- Forum: Ren'Py Questions and Announcements
- Topic: how to make a random choice against 2
- Replies: 9
- Views: 933
Re: how to make a random choice against 2
Thank you!!!!!!!!!!!!!!!!!!!! I should have known that!!!
- Sun Feb 18, 2018 7:11 pm
- Forum: Ren'Py Questions and Announcements
- Topic: how to make a random choice against 2
- Replies: 9
- Views: 933
Re: how to make a random choice against 2
I have the indent, but i doesn't show up here, I don/t know how to include the Code: Select All box, and thats the reason why it didn't show up. I took the code you offer and put in my game. The select all box. and i doesn't work. I know i'm doing something wrong, i just need to know what i'm doing ...
- Sun Feb 18, 2018 6:58 pm
- Forum: Ren'Py Questions and Announcements
- Topic: how to make a random choice against 2
- Replies: 9
- Views: 933
Re: how to make a random choice against 2
if slept_alone == True: $ randchara = renpy.random.choice(['m', 's']) if randchara == m: "Then m" "Mom" if randchara == s: "Then s" "Sis" if sis_slept == True: "Sis" "Sis!!!!" if mom_slept == True: "Mom" "Mom!!!!" "Mom told us what was happing" not working. I got the spaces alright, just not gonna s...
- Sun Feb 18, 2018 2:13 pm
- Forum: Ren'Py Questions and Announcements
- Topic: how to make a random choice against 2
- Replies: 9
- Views: 933
Re: how to make a random choice against 2
"The next day." $ day_gone_by += 1 # return a random float between 0 and 1 #$ randfloat = renpy.random.random() # return a random integer between 1 and 20 #$ d20roll = renpy.random.randint(1, 20) # return a random element from a list #$ randfruit = renpy.random.choice(['apple', 'orange', 'plum']) if...
- Sun Feb 18, 2018 1:18 pm
- Forum: Ren'Py Questions and Announcements
- Topic: how to make a random choice against 2
- Replies: 9
- Views: 933
how to make a random choice against 2
I'm just a newbi, so bear with me. I need to make a choice between 2 characters. A random choice, so I can play it one time and I get choice 1, and I play it a second time and get the same or choice 2.
- Sat Feb 17, 2018 8:25 am
- Forum: Ren'Py Questions and Announcements
- Topic: Max and minimum on varibles
- Replies: 2
- Views: 642
Re: Max and minimum on varibles
Thank you!!!!!!!!!
- Sat Feb 17, 2018 6:01 am
- Forum: Ren'Py Questions and Announcements
- Topic: Max and minimum on varibles
- Replies: 2
- Views: 642
Max and minimum on varibles
I know I seen this somewhere before on this forum but I can't find it. I need to know how you can calculate the min and the max of variables. I have a variables that can go from 0 to 100. I need to find that ,in or max of the variables and stop it if it goes past the min or max. example: Mom Favorit...
- Tue Feb 13, 2018 6:25 am
- Forum: Ren'Py Questions and Announcements
- Topic: choice button
- Replies: 3
- Views: 581
Re: choice button
Thank you!!!!!!!