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

21 lines
406 B

damagemissiles = global.mod_monstersDmissiles
damagesupermissiles = global.mod_monstersDsuper
if (state >= 2)
{
if (state != 5)
{
with (other.id)
event_user(1)
}
else
{
with (other.id)
event_user(0)
if (other.smissile == 1)
hp -= damagesupermissiles
else
hp -= damagemissiles
event_user(0)
}
}