You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
385 B
14 lines
385 B
if (parent == -1 && scavenge == -1)
|
|
{
|
|
if (distance_to_object(oCharacter) < 48)
|
|
instance_destroy()
|
|
if (distance_to_object(oEnemy) < 16)
|
|
instance_destroy()
|
|
if (distance_to_object(oMEgg1) < 48)
|
|
instance_destroy()
|
|
if (distance_to_object(oMEgg2) < 48)
|
|
instance_destroy()
|
|
if (distance_to_object(oMEgg2A) < 48)
|
|
instance_destroy()
|
|
}
|