Jeff H says (4:59 PM)
// get the bear
%bear = new Bear();
MissionCleanup.add(%bear);
// eat ALL the ponies
for (%i = 0; %i < MissionGroup.getCount(); %i ++) {
%obj = MissionGroup.getObject(%i);
if (%obj.getClassName() $= Pony) {
%bear.eat(%obj); // bear eats ponies
}
}
echo(Ponies are eaten.);
Andrew says (5:00 PM)
I am a programmer. Most here know me for being one of the major contributors to Marble Blast Platinum and PlatinumQuest.