Installation
Download the purchased resource from keymaster, FiveM's official hub for downloading purchased resources
Download the following dependencies
Resource Name & Link
ox_inventory/qb-inventory/qs-inventory (We are open to supporting other inventories, make a ticket)
Run SQL
CREATE TABLE `devm_fraud` (
`identifier` VARCHAR(60) NOT NULL DEFAULT '' COLLATE 'utf8mb3_general_ci',
`crypto` FLOAT NULL DEFAULT '0',
`crypto_last_price` INT(11) NULL DEFAULT NULL,
`dumps` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb4_bin',
`sims` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
PRIMARY KEY (`identifier`) USING BTREE,
CONSTRAINT `dumps` CHECK (json_valid(`dumps`))
)
COLLATE='utf8mb3_general_ci'
ENGINE=InnoDB
;
Install inventory items (different for each inventory system)
Get a API key from CoinGecko and put it inside of configs/gecko_config.lua. A demo api key is usually more than enough for most servers.
Ensure the scripts in your server.cfg in the following order
ensure devm-bridge ensure devm-minigames ensure devm-fraudv2
Last updated