πInstallation
Resource installation guide and dependencies
Framework
Dependencies
Resource
Install
Description
1 - Start
1. Download your resource from FiveM's Keymaster.
2. Unzip fs_placeables.zip folder and place it into your resource folder.2 - Items
-- incase u want to use button on item using right click on item
-- button we only supported with ox_inventory currently soon we will
-- add support for more inventories
lockpick = {
label = "Lockpick",
weight = 10,
stack = true,
close = true,
description = "This is description.",
buttons = {
{
label = "Place on Ground",
action = function(slot)
exports.ox_inventory:closeInventory();
TriggerServerEvent("fs_placeables:placeonground", "lockpick");
end
}
}
},3 - Configuration
4 - Is Items stay after restart?
5 - Ready
Last updated