Page cover

πŸ’ΏInstallation

Discover how to install your script.

β€’ STEP 1: DEPENDENCIES

Make sure you have this resources installed in your server!

  1. ESX or QB-CORE

β€’ STEP 2: START ORDER

ensure biyei_coins

β€’ STEP 3: ADD SERVER COINS

ESX Installation Coins

  1. Opens the config.lua file of es_extended

  2. In Config.Accounts add new Account type with your own name coins for example 'coins'

OLD ESX:

Config.Accounts = {
	bank = _U('account_bank'),
	black_money = _U('account_black_money'),
	money = _U('account_money'),
	coins = 'coins',
}

Config.StartingAccountMoney 	= {bank = 25000, money = 5000, coins = 0}

NEW ESX:

QB-CORE Installation Coins

  1. Opens the config.lua file of qb-core

  2. In QBConfig.Money.MoneyTypes add new Account type with your own name coins for example 'coins'

Last updated