mob/var/upgrade = list(1="204",2="420",3="800")
(There are alot more values than this)
How would I input 1 and get 204, input 3 and get 800 ect. without using
if(input = 1)
//do this
else if(input = 3)
//do this
//or
switch(input)
if(1)
//do this
if(2)
//do this