mob/var
list/moneyex
// confrom= ""
// conto = ""
mob/verb
Ex_money()
set name = "curency exchange"
if(usr.Orch)
moneyex.Add("Orch")
if(usr.Dram)
moneyex.Add("Dram")
if(usr.Elo)
moneyex.Add("Elo")
if(usr.Lygh)
moneyex.Add("Lygh")
if(usr.Jing)
moneyex.Add("Jing")
if(usr.Raan)
moneyex.Add("Ra'an")
if(!moneyex)
_message(usr,"You have no money!")
return
if(moneyex)
switch(input(src, "What kind of Currency?","Currency Type") in list(moneyex))
if("Orch")
_message(usr,"Orch")
return
if("Dram")
_message(usr,"Dram")
return
if("Elo")
_message(usr,"Elo")
return
if("Lygh")
_message(usr,"Lygh")
return
if("Jing")
_message(usr,"Jing")
return
if("Ra'an")
_message(usr,"Ra'an")
return</b>
Problem description:
I'm trying to use a actual list var as the options to choose from so that I can continue a process accordingly. But alas, as I click the verb nothing shows on my screen unless I have nothing set in the list. Then it shows the output text.