πInstallation
Resource installation guide and dependencies
Framework
Dependencies
Resource
Install
Description
1 - Start
1. Download your resource from FiveM's Keymaster.
2. Unzip fs_trapphone.zip folder and place it into your resource folder.2 - Items
-- Run Sql by selecting ur database
UPDATE INTO `items` (`name`, `label`, `weight`) VALUES
('fs_trapphone', 'Trap Phone', 30)
;-- add item into qb_core items file under last item
['fs_trapphone'] = {
['name'] = 'fs_trapphone',
['label'] = 'Trap Phone',
['weight'] = 100,
['type'] = 'item',
['image'] = 'fs_trapphone.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Secure Phone for Drug sell'
}-- add item into ox_inventory/shared/items.lua under last item
["fs_trapphone"] = {
label = "Trap Phone",
weight = 30,
stack = true,
close = true,
description = 'Secure Phone for Drug sell'
},3 - Configuration
4 - Logs
5 - Ready
Last updated