The Dink Network

Reply to Re: Dynamically generated choices

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
December 17th, 01:08 PM
death.gif
Seseler
Peasant He/Him Heard Island And Mcdonald Islands
 
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)