var/i
for(i=1, i<quantity, i++)
var/mob/creator/help
help = new /mob/creator
help.Move(locate("Top of List")
world
New()
Clone(2,"Dan")
Clone(2,"Tom")
That should help shorten the infamous and ever-expanding 'list'.
flick()
ID:137490
Nov 6 2001, 12:04 pm
|
|
Clone(var/quantity as num, var/mob/creator)
var/i for(i=1, i<quantity, i++) var/mob/creator/help help = new /mob/creator help.Move(locate("Top of List") world New() Clone(2,"Dan") Clone(2,"Tom") That should help shorten the infamous and ever-expanding 'list'. flick() |