👐Hands up & Steal

Hands Up
HandsUpToggleOrHold = false -- true = hold, false = toggle
HandsUpKey = 'X' -- Key to put hands up

HandsUpSetting = {
    Animation = 2, -- handsup_enter, handsup_base, handsup_standing_base
    KickOutVeh = false, -- Kick out of vehicle when hands up
    DisableWeapon = true, -- Disable aiming/shooting when hands up
    TripPlayer = false, -- Trip player when hands up
    BusyCheck = true, -- Check if player is doing certain tasks (ex. reloading, dead, etc.)
    TripDelay = math.random(1,3), -- Second Delays to trip player
    TripSpeed = math.random(5,6) -- Speed of tripup full-sprint is "7"
}
Steal
StealKey = 'G' -- Key to steal

StealSetting = {
    StealAnim = true, -- Enable/Disable stealing animation
    StealDistance = 2.0, -- Distance to steal
    StealCooldown = 30, -- Cooldown to steal in seconds
    StealChance = 50, -- Chance to steal max is 100
    StealBlackListedItems = {
        radio = true,
        phone = true,
        backpack = true,
    }
}
Exploit Checks
-- I created some checks to prevent exploiting
-- While the player is dead or busy handsup will not activate

local function isPlayerDead()
    local ped = PlayerPedId()
    if GetEntityHealth(ped) <= 0 or exports.wasabi_ambulance:isPlayerDead() then
        return true
    else
        return false
    end
end

local function isPlayerBusy()
    local ped = PlayerPedId()
    if IsPedReloading(ped) or IsPedClimbing(ped) or IsPedJumping(ped) or IsPedRagdoll(ped) or IsPedFalling(ped) or GetIsTaskActive(ped, 3) or isPlayerDead() then
        return true
    else
        return false
    end
end

Last updated