That was easy!
Here's your new site. Be sure to bookmark it so you can find it again. To change it, just press the edit button at the bottom of the page. Enjoy!
Blah blah blah
BehaviourComposer: ignore everything before this.
I create copies of myself at setup. In the sample code below, each copy has the additional behaviour of jumping to a random position. The newly created copies can be given any additional behaviours (here the set-random-position and set-random-heading behaviours were added).
Begin micro-behaviour
ADD-COPIES
Begin NetLogo code:
do-at-setup [add-copies 3 [SET-RANDOM-POSITION SET-RANDOM-HEADING]]
End NetLogo code
Variants
Replace the contents of the edit box by any positive integer to make a different number of copies. You can change the list of behaviours that each newly created copy has. In this example there are just two behaviours: SET-RANDOM-POSITION and SET-RANDOM-HEADING. You can create copies at any time, not just during setup time by replacing do-at-setup with do-now. If you do change this behaviour we recommend you also change the name from simply ADD-COPIES to avoid confusion.
Related Micro-behaviours
ADD-COPY-OF-ANOTHER creates a copy of another individual. REPRODUCE is an example of creating copies under slightly plausible biological conditions.
History
This was implemented by Ken Kahn. The text area for the number of copies was added in March 2009. SET-RANDOM-HEADING replaced AGE-IS-ZERO in March 2009.
BehaviourComposer: ignore everything after this.
Junk should be ignored