Deltarune (Chapter 2) script viewer

← back to main script listing

gml_Object_obj_queen_sm_deleter_Collision_obj_collidebullet

(view raw script w/o annotations or w/e)
1
if (other.object_index == obj_queen_social_media && other.handle == 1)
2
{
3
    exit;
4
}
5
else if (irandom(9) == 9)
6
{
7
    other.sprite_index = spr_queen_handle;
8
    other.image_blend = c_teal;
9
    other.handle = 1;
10
}
11
else
12
{
13
    instance_destroy(other);
14
}