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_oA3Stomper_Step_...

24 lines
358 B

if active
{
if (state == 1)
{
if (image_index < 13)
image_index += 1
else
{
alarm[1] = 180
state = 2
}
}
if (state == 3)
{
if (image_index > 0)
image_index -= 1
else
{
alarm[0] = 60
state = 4
}
}
}