|
1
|
global.facing = 0;
|
|
2
|
obj_mainchara.hspeed = 0;
|
|
3
|
obj_mainchara.image_index = 0;
|
|
4
|
obj_mainchara.image_speed = 0;
|
|
5
|
t = 2;
|
|
6
|
dog1 = instance_create(obj_mainchara.x - 34, room_height - 40, obj_mandog_actor);
|
|
7
|
dog2 = instance_create(obj_mainchara.x + 20, room_height - 40, obj_womandog_actor);
|
|
8
|
dog1.vspeed = -1;
|
|
9
|
dog2.vspeed = -1;
|
|
10
|
alarm[2] = 142; gml_Object_obj_forcedright_Alarm_2.gml
if (t < 13)
{
dog1.speed = 0;
dog2.speed = 0;
}
if (t == 7)
t = 8;
if (t == 3)
t = 4;
if (t == 2)
{
t = 3;
alarm[2] = 20;
}
if (t == 11)
t = 12;
if (t == 15)
t = 16;
|