For the complete documentation index, see llms.txt. This page is also available as Markdown.

Installation

  1. Download the purchased resource from keymaster, FiveM's official hub for downloading purchased resources

  2. Download the following dependencies

Resource Name & Link

ox_inventory/qb-inventory/qs-inventory (We are open to supporting other inventories, make a ticket)

ox_target/qb-target (We are open to supporting other target systems, make a ticket)

  1. 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',
	`fullz` 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
;
  1. Install inventory items (different for each inventory system)

ox_inventoryqb-inventoryqs-inventory
  1. 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.

  2. Ensure the scripts in your server.cfg in the following order

    ensure devm-bridge ensure devm-minigames ensure devm-fraudv2

Last updated