mob/player/var
list/animals = list ()
mob/animal/cur_monster
proc/Selection()
var/select = input("Select Animal") in usr.animals
usr.cur_monster = select
It's saying animals and cur_monster are undefined (in the selection proc), yet I have defined them above.
Help?
-The trying to get back into programming, Sariat