Set handcuffs state

To set the handcuffs state of a player, without the animation

Export

exports["jobs_creator"]:setHandcuffs(playerId, state)

Parameters

NameData typeDescription

playerId

integer

The target player server ID

state

boolean

true = handcuffed, false = free

Example

-- This is just an example and won't work, require you to use the export properly
RegisterNetEvent("hospital_script:playerDead", function(playerId)
    -- The script code
    -- The script code
    -- The script code
    
    -- The dead player is not handcuffed anymore
    exports["jobs_creator"]:setHandcuffs(playerId, false)
end)

Last updated