WEB AUSTRALDocumentation
Welcome
Our Products
Introduction
What WebAustral Paychecks does
Configuration
Installation
Exports
Troubleshooting
Introduction
What WebAustral PauseMenu does
Configuration
Installation
Developers
Troubleshooting
Created by: Austral Web
WebAustral Paychecks

Installation

1. Upload the resource

Place the resource in your server resources folder:

resources/[webaustral]/webaustral_paychecks

2. Add it to server.cfg

ensure webaustral_paychecks

Qbox installation

ensure ox_lib
ensure qbx_core
ensure webaustral_paychecks

Recommended config:

Config.Framework = 'auto'
-- or force it:
Config.Framework = 'qbox'

QBCore installation

ensure ox_lib
ensure qb-core
ensure webaustral_paychecks

Recommended config:

Config.Framework = 'auto'
-- or force it:
Config.Framework = 'qbcore'

ESX installation

ensure ox_lib
ensure es_extended
ensure webaustral_paychecks

Recommended config:

Config.Framework = 'auto'
-- or force it:
Config.Framework = 'esx'

Standalone installation

ensure ox_lib
ensure webaustral_paychecks

Recommended config:

Config.Framework = 'standalone'
Config.Paycheck.Enabled = false

Payment mode

To use the resource only as a visual notification, keep payments disabled:

Config.Paycheck.Enabled = false

To let this script pay players automatically:

Config.Paycheck.Enabled = true
Config.Paycheck.Account = 'bank'

Useful exports

exports['webaustral_paychecks']:SendPaycheck(source, 2000, {
    title = 'MAZE BANK',
    message = 'You received your paycheck'
})

exports['webaustral_paychecks']:PayPlayer(source, 2000, {
    account = 'bank',
    title = 'MAZE BANK',
    message = 'You received your paycheck'
})
On this page 1. Upload the resource 2. Add it to server.cfg Qbox installation QBCore installation ESX installation Standalone installation Payment mode Useful exports