ID:174891
 
How do I make it so when somebody disbands a guild that it checks all the mobs with the same guild even if they are offline?
mob/var/guildlist = list()

mob/verb/Add(mob/M as mob in world)
guildlist += M

mob/verb/Check()
for(var/mob/M in guildlist)
src << M

That's a way to show you how to loop through list and add to it.
In response to Super16
oh yeah i cant believe i forgot about lists O.0 (Even though i use them to store my guilds...)