You've already forked AM2R-Community-Updates
mirror of
https://github.com/izzy2lost/AM2R-Community-Updates.git
synced 2026-03-10 11:23:35 -07:00
6 lines
310 B
Plaintext
6 lines
310 B
Plaintext
/// platformCharacterIs()
|
|
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;
|