Hi, we are pretty very new to this and are stuck on the tutorials. It is the worm part and we are trying to get the crab to eat the worm. We feel we have copied the code correctly but it is coming up still with errors like illegal start of expression and identifier expected.
}
Actor worm;
worm = getOneObjectAtOffset(O, O, Worm.class);
if (worm != null)
{
World world;
world = getWorld();
world.removeObject(worm);
}
}