ID:142468
 
Code:
obj
var
list
firing = list("E-jutsu" = 30,"D-jutsu" = 50, "C-jutsu" = 70, "B-jutsu" = 120, "A-jutsu" = 250)


Problem description:
Not certainly a problem, but I'm not too known well with lists and such, and my question was, how can I read "E-jutsu", for example as an outcome for 30?

My goal is to use that in a sleep() / spawn(). I guess I'd need to do it with params2list() or list2params().

So, if I call "E-jutsu" from that list, how can I make a sleep or spawn be 30?

Thanks for your time,

Rick(Sokkiejjj)
sleep(firing["E-jutsu"])
In response to Popisfizzy
Thanks for the help Popisfizzy.