|
1
|
if (num < 6)
|
|
2
|
{
|
|
3
|
xx = lengthdir_x(165, image_angle);
|
|
4
|
yy = lengthdir_y(165, image_angle);
|
|
5
|
fl = instance_create(x + xx, y + yy, obj_floweyx_flame);
|
|
6
|
fl.direction = image_angle;
|
|
7
|
alarm[0] = 3; gml_Object_obj_floweyx_oldflamethrower_Alarm_0.gml
if (num < 6)
{
xx = lengthdir_x(165, image_angle);
yy = lengthdir_y(165, image_angle);
fl = instance_create(x + xx, y + yy, obj_floweyx_flame);
fl.direction = image_angle;
alarm[0] = 3;
num += 1;
}
else
{
alarm[0] = 50;
num = 0;
}
|
|
8
|
num += 1;
|
|
9
|
}
|
|
10
|
else
|
|
11
|
{
|
|
12
|
alarm[0] = 50; gml_Object_obj_floweyx_oldflamethrower_Alarm_0.gml
if (num < 6)
{
xx = lengthdir_x(165, image_angle);
yy = lengthdir_y(165, image_angle);
fl = instance_create(x + xx, y + yy, obj_floweyx_flame);
fl.direction = image_angle;
alarm[0] = 3;
num += 1;
}
else
{
alarm[0] = 50;
num = 0;
}
|
|
13
|
num = 0;
|
|
14
|
}
|