-- name: No BLJs -- description: Quick edit of Sunk's 'BLJ Anywhere' .lua script to have the exact opposite effect and prevent BLJs altogether. local function blj_preventor(m) if ((m.action == ACT_LONG_JUMP or m.action == ACT_LONG_JUMP_LAND or m.action == ACT_LONG_JUMP_LAND_STOP) and m.forwardVel < -15) then m.forwardVel = -15; end end hook_event(HOOK_BEFORE_MARIO_UPDATE, blj_preventor)