ID:161362
 
mob
var
list
lt=list("punch forward" = 0, "punch reverse" = 0, \
"punch jab" = 0)


How could I add something to "punch forward" (like +1) and read it?
Like, with the gain of strength, I want to make a tie with the punches you made to forward, reverse and jab, so how could I add +1 to it and read that later on?

Thanks for your time,

Rick
lt["punch forward"] ++
//Or
lt["punch forward"] += 1
//Or
lt["punch forward"] -= -1 //But this is just getting weird.
In response to Popisfizzy
Thanks PIF.
This sure is very useful to me. It made me shorten alot of *tmp* variables, lol.