function Player::
function player::isFalling(%this){ %velocity=%this.getVelocity(); %yvel = getWord(%velocity,2); if(%yvel < -3) return 1; return 0;}edit: then later do if(%player.isFalling()) { %player.kill(); } or w/e you're planning to do