KuzQuality - FiveM Documentation
Webstore
  • KuzQuality - FiveM Scripts
  • Useful links
    • KuzQuality.com | Shop now
    • Our Discord
  • General
    • Common issues
    • Frequently asked questions
    • Updating server artifacts
    • Installation basics
  • RESOURCES
    • Premium Resources
      • Shell Creator
        • Config
        • Installation Guide
        • Video guide
        • API
          • Server
          • Client
      • Cocaine Production
        • Config
        • Installation Guide
      • Roof boxes & bike racks
        • Config
        • Installation Guide
        • API
      • Meth Cooking
        • Config
        • Installation Guide
      • Private islands
        • Config
        • Installation Guide
      • Real offroad physics
        • Config
        • Installation Guide
        • API
      • Placeable items
        • Config
        • Inventory integrations
        • Installation Guide
      • Car Dyno
        • Config
        • Installation Guide
      • Outfit Bag 2.0
        • Config
        • Installation Guide
      • Realistic wheel damage
        • Config
      • Smash 'n Grab 2.0
        • Config
        • Installation Guide
      • Animation Suggestions
        • Config
        • Installation Guide
      • Smugglers Heist
        • Config
        • Installation Guide
      • Car Heist
        • Config
      • Towing & Winching
        • Config
        • Installation Guide
      • Security Systems
        • Config
        • Developer Docs
      • Drift Tires
        • Config
        • Installation Guide
      • Engine Swaps [ESX]
        • Config
      • Engine Swaps [QBCore]
        • Config
      • Islands Generator
        • Config
        • Installation Guide
      • Brake Overheating
        • Config
        • Installation Guide
      • Drift Smoke
        • Config
      • Advanced Ped Looting
        • Config
        • Installation Guide
      • Bike Jump Ability
        • Config
        • Installation Guide
      • Hideouts 2.0
        • Config
      • Detective Tools
        • Config
      • Classic Outfit Bag
        • Config
      • Traction Control Toggle
        • Config
      • Car Lift
        • Config
      • Vehicle Towing
        • Config
      • RGB Controller (Full)
        • Config
      • Diving [ESX]
        • Config
      • Diving [QBCore]
        • Config
    • Free Resources
      • Prop Placer
        • Config
      • Nightclub Heist
        • Config
      • Basic Security Lasers
        • Config
        • Developer Docs
      • Advanced Airdrop
        • Config
      • Smooth Throttle Control
        • Config
      • Better rollbacks & handbrake turns
        • Config
      • Wild Cannabis (Loot Areas Example)
        • Config
      • RGB Controller (Basic)
        • Config
      • Dragy
        • Config
      • Easter Egg Hunt
        • Config
      • Loot Areas
        • Config
        • Developer docs
  • KQ Link
    • KQ Link | Installation guide
    • Using Git
    • Developer reference
      • Exports
        • Server
        • Client
Powered by GitBook
On this page
  1. RESOURCES
  2. Premium Resources
  3. Bike Jump Ability

Config

Config = {}

Config.debug = false

-- Vehicles from which players can jump
Config.jumpableVehicles = {
    classes = { 8, 13 },
    models = {
        'blazer',
        'blazer2',
        'blazer3',
        'blazer4',
        'seashark',
    },
}

-- Type of the input hints. '3d-text' or 'floating'
Config.inputType = 'floating'
-- Size of the 3d text. (Only applicable for the 3d-text option)
Config.textScale = 1.0

-- Minimum bike speed in km/h
Config.minBikeSpeed = 10.0

-- Force of a normal jump. (side, front, up)
Config.jumpForce = vector3(8.0, 0.7, 5.0)

-- Settings related to landing and holding onto roofs of cars
Config.roofHolding = {
    enabled = true,

    -- Minimum force to fall off a roof
    falloffForces = 8.0,

    -- Multiplier of the minimum force required to fall off when holding onto the roof
    holdingForceMultiplier = 2.5,

    -- Whether to allow players to enter vehicles from the roof
    allowVehicleEntering = true,
}

-- Settings related to "focus" jumping. (Jumping onto specific vehicles, sort of an aimbot for jumping)
Config.focusJump = {
    enabled = true,

    -- Maximum difference of velocity for focused jump
    maxVelocityDifference = 5.0
}

-- Controls which will be disabled when jumping/preparing a jump
Config.jumping = {
    disableControls = {
        24, 69, 92, 106, 122, 135, 223, 257,
        25, 68, 70, 91, 114, 330,
        38, 86,
        140, 141, 142, 143
    }
}

-- Keybinds
-- https://docs.fivem.net/docs/game-references/controls/
Config.keybinds = {
    -- Hardcoded keybinds
    jumpRight = {
        name = 'INPUT_VEH_AIM',
        label = 'RMB',
        input = 68,
    },
    jumpLeft = {
        name = 'INPUT_VEH_ATTACK',
        label = 'LMB',
        input = 69,
    },
    jumpFocus = {
        name = 'INPUT_VEH_HORN',
        label = 'E',
        input = 86,
    },
    enterVehicleSeat = {
        name = 'INPUT_VEH_HORN',
        label = 'E',
        input = 86,
    },

    -- FiveM Keybinds. Editable through the in-game keybinds settings
    jumpPrepare = {
        key = 'G',
    }
}
PreviousBike Jump AbilityNextInstallation Guide

Last updated 8 months ago