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.
AM2R-The-Horde-Multitroid/Export_Code/gml_Script_platformCharacte...

8 lines
296 B

if (argument0 == ON_GROUND && (state == RUNNING || state == STANDING || state == DUCKING || state == BALL))
return 1;
if (argument0 == IN_AIR && (state == JUMPING || state == FALLING || state == AIRBALL))
return 1;
if (argument0 == ON_LADDER && state == CLIMBING)
return 1;
return 0;