Reply to Re: Dynamically generated choices
If you don't have an account, just leave the password field blank.
You should be able to do something like this
int &crap = 3
choice_start()
set_y 200
set_title_color 15
title_start()
Dynamic choice
title_end()
(&crap >= 1) "Choice 1"
(&crap >= 2) "Choice 2"
(&crap >= 3) "Choice 3"
(&crap >= 4) "Choice 4"
(&crap >= 5) "Choice 5"
choice_end()
say("I've picked &result", 1)






