Installation & Configuration & Integration

Step By Step Installation

Install

Login to your keymasterarrow-up-right account, check Granted Assets section and download script you bought from us

Script Start Order

ensure es_extended
ensure dialog
ensure dusa_photographer

Add Items ( Item icons can be found inside dusa_photographer > items folder )

For default ESX ( Run this sql )

INSERT INTO `items` (name, label, weight) VALUES
	('camera','Camera', 1),
	('photo','Photo', 1),
	('simoncoin','Simon Coin', 1)
;

For OX Inventory

	['camera'] = {
		label = 'Camera',
		weight = 500,
		stack = true,
		close = true,
		description = nil
	},

	['photo'] = {
		label = 'Photo',
		weight = 1,
		stack = false,
		close = true,
		description = nil
	},
	
	['simoncoin'] = {
		label = 'Simon Coin',
		weight = 1,
		stack = true,
		close = true,
		description = nil
	},

Configuration

Set Framework

Configure Target & Inventory

Change options for your server

Translation

Find Config.Dialogues in config and edit strings

Change Coin Amount When Task Is Done

Changing money amount when player take random civilian photo

Returns a random value between specified values

Adding New Zones for Photographing

You can find everything you need to know from this video! Credits goes to FlenN

After taking coordinates find Config.Zones in config.lua

Replace coordinates with this format

Last updated