Search found 2 matches

by OpheliaElle
Mon May 14, 2018 3:43 pm
Forum: Ren'Py Questions and Announcements
Topic: Using renpy.random.randint - not working?
Replies: 3
Views: 811

Re: Using renpy.random.randint - not working?

Thank you so much! I knew there had to be something I was overlooking! It works now! :)
by OpheliaElle
Sun May 13, 2018 11:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Using renpy.random.randint - not working?
Replies: 3
Views: 811

Using renpy.random.randint - not working?

I'm very new to using renpy, and I want to be able to use a random randint to move an image across the screen. This is what I have written: show red car: xalign 1.0 label mcrace: $ mcrace = renpy.random.randint(1,2) if mcrace == 1: show red car: xalign 1.0 linear 1.1 else: show red car: xalign 1.0 l...