ID:264474
 
Code:
mob/var/Ttime=0
mob/verb/Elementtraining()
if(!Ttime)
src<<"You begin focusing on training your elements"
switch(alert("which element would you like to focus on?","Choose Element","Fire","Water","Lightning","Wind"))
if("Fire")
if("Fire" in src.Elements)
src<<"You begin focusing on the Fire element"
src.emasteryfire=1
if(stuff==1)
if(fire==1)
if(prob(18.4))
src<<"You feel more knowledge of the Fire element flow through you!"
src.masteryf+=1
if(prob(27.9))
src<<"You gain a LOT more knowledge of the Fire element!"
src.masteryf+=2
if(prob(53.7))
src<<"You gained no new knowledge"
if("Water")
if("Water" in src.Elements)
src<<"You begin focusing on the Water element"
src.emasterywater=1
if(stuff==1)
if(water==1)
if(prob(18.4))
src<<"You feel more knowledge of the Water element flow through you!"
src.masteryw+=1
if(prob(27.9))
src<<"You gain a LOT more knowledge of the Water element!"
src.masteryw+=2
if(prob(53.7))
src<<"You gained no new knowledge"
if("Wind")
if("Wind" in src.Elements)
src<<"You begin focusing on the Wind element"
src.emasterywind=1
if(stuff==1)
if(wind==1)
if(prob(18.4))
src<<"You feel more knowledge of the Wind element flow through you!"
src.masterywi+=1
if(prob(27.9))
src<<"You gain a LOT more knowledge of the Wind element!"
src.masterywi+=2
if(prob(53.7))
src<<"You gained no new knowledge"
if("Lightning")
if("Lightning" in src.Elements)
src<<"You begin focusing on the Lightning element"
src.emasterylightning=1
if(stuff==1)
if(lightning==1)
if(prob(18.4))
src<<"You feel more knowledge of the Lightning element flow through you!"
src.masteryl+=1
if(prob(27.9))
src<<"You gain a LOT more knowledge of the Lighnting element!"
src.masteryl+=2
if(prob(53.7))
src<<"You gained no new knowledge"
if("Ice")
if("Ice" in src.Elements)
src<<"You begin focusing on the Ice element"
src.emasteryice=1
if(stuff==1)
if(ice==1)
if(prob(18.4))
src<<"You feel more knowledge of the Ice element flow through you!"
src.masteryi+=1
if(prob(27.9))
src<<"You gain a LOT more knowledge of the Ice element!"
src.masteryi+=2
if(prob(53.7))
src<<"You gained no new knowledge"


Problem description:
i need to add more elements to the list of choose able ones. but the dream dameon wont let me their apparently is a maximum of six arguments. i don't want to use input() because it'll pull up as a list can anyone help me?
Use an interface window with buttons?
Alert switches can only have three buttons at most.