Skip to main content

Getting Started

On this page: How to install, configure & edit script

Requirements

To install that script, you need to have:

  • Framework: ESX 1.2, ESX Legacy or QBCore
  • Database: MySQL Async or oxmysql

Installation

  1. Buy script here

  2. Download script here

  3. Extract script from archive and move it to resources folder

  4. Open script folder and configure framework in fxmanifest.lua

    • ESX 1.2

      local framework = 'esx'
      local mysql = "mysql-async"
    • ESX Legacy

      local framework = 'esx'
      local mysql = "oxmysql"
    • QB Core

      local framework = 'qb'
      local mysql = "oxmysql"
info

After making changes in fxmanifest.lua you need to refresh your scripts by using command /refresh. After that, you can restart script

  1. Go to shared/lang.lua and configure your language
  2. Go to server/sv_config.lua and configure script
Config = Config or {}

-- Your locale from locales folder
Config.Locale = 'en'

-- Check server/sv_config.lua to more options
  1. If you want, you can translate your script into your language. (optional)
    1. Go to locales folder
    2. Make copy of en.lua and rename it to your language code
    3. Open renamed file
    4. Change variable fileLocale to your language code
    5. Translate messages
    6. Go to shared/lang.luaand change Config.Locale to your language code
  2. Start the server (or script after using /refresh command)

Editing script

You can edit almost every feature of that script. Only discover function is protected by Escrow.

danger

I won't fix issues that happened after editing the script!