shortkeys
Getter / Setter for enabling/disabling the shortkey slots for the inventory.
LocalPlayer.state.shortkeys = true
Example (disable shortkeys when the player is cuffed)
addEventHandler("onPlayerCuffed", function()
LocalPlayer.state.shortkeys = false
end)
addEventHandler("onPlayerUnCuffed", function()
LocalPlayer.state.shortkeys = true
end)