Search found 2 matches

by Bellrose980
Tue Jul 17, 2018 11:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Only allowing a variable to add to a value the first time an option is clicked?
Replies: 8
Views: 1135

Re: Only allowing a variable to add to a value the first time an option is clicked?

If you want you could use an if statement so that it will only add a point if the variable equals zero. menu meetings: "Who do you want to talk to?" "Meet Saturn.": jump saturnmeeting if sat_point == 0 : $ sat_points += 1 "Meet Mercury.": jump mercurymeeting if mer_poin...
by Bellrose980
Tue Jul 17, 2018 9:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Positioning Sprites
Replies: 3
Views: 1150

Positioning Sprites

Hi. I'm trying to place two sprites on the screen. One on the left and one on the right. I tried using the "at left" and "at right" commands but they place the sprites both to high and in the centre. So instead I used this command to create my own positions: transform my_left: xa...