ID:171690
 
Here's what I want to do.

I know how to make a proc to automatically add a mob to a list, but how would you define it's variables before adding it to the list to make it unique? Such as name, strength, ect.
var/mob/M
M.name="MOBEE"
var/list/L=list()
L+=M
In response to Airjoe
I know how to add a mob to a list I thought i said very clearly. What I don't know is how to edit its vars before adding it.
In response to ZLegend
var/mob/M
M.name="MOBEE"
var/list/L=list()
L+=M