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.
AM2Rogue/Export_Code/gml_Object_oGFTrooperRed_Ot...

17 lines
321 B

if (shots > 0)
{
shot = instance_create((x + 20), (y - 21), oGFTBullet1)
shot.direction = random(3)
shot.image_angle = shot.direction
shot.speed = 6
sfx_stop(sndGFTrooperRifleShot)
sfx_play(sndGFTrooperRifleShot)
shots -= 1
}
else
{
image_speed = 0
image_index = 0
alarm[1] = 30
}