- Dec 25, 2019
- 177
- 260
OK so basically i want to randomise the scene the player gets when they go through a door based on their choices. I have a piece of the puzzle already
$ randomnum = renpy.random.randint(1,2) # (randomize between 1 and 2)
if randomnum==1:
jump manbiman1
elif randomnum==2:
jump manbiwoman1
but this only randomises it at the start of a new game. Is there a way to randomise it when they choose to open the door?
$ randomnum = renpy.random.randint(1,2) # (randomize between 1 and 2)
if randomnum==1:
jump manbiman1
elif randomnum==2:
jump manbiwoman1
but this only randomises it at the start of a new game. Is there a way to randomise it when they choose to open the door?