Randomize point rewarding choices

This commit is contained in:
2022-11-02 12:07:52 +11:00
parent b586e8f4e9
commit dc2abc5494
8 changed files with 116 additions and 120 deletions

View File

@ -20,6 +20,7 @@ init -1 python:
mod_menu_access = []
init python:
import random
import webbrowser
#function for insult layers
@ -48,6 +49,12 @@ init python:
if persistent.autoup == None:
persistent.autoup = False
def randomize_choices(choices):
# fine for size of 2
if (renpy.random.randint(0, 1)):
choices.reverse()
return choices
pass
transform randPosition: