-- name: No BLJs -- description: Quick edit of Sunk's 'BLJ Anywhere' .lua script to have the exact opposite effect and prevent BLJs altogether. function blj(m) if (m.action == ACT_LONG_JUMP) and (m.controller.buttonDown & Z_TRIG) ~= 0 and m.forwardVel < -15 then m.forwardVel = -15; end end hook_event(HOOK_BEFORE_MARIO_UPDATE, blj)