ID:174891
Jul 9 2003, 7:56 pm
|
|
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?
|
In response to Super16
|
|
oh yeah i cant believe i forgot about lists O.0 (Even though i use them to store my guilds...)
|
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.