mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 01:08:54 +00:00
1c68b1b6245830050c1316d6467e2b0af773dd37
fxserver-esx_addonaccount
ESX AddonAccount
[INSTALLATION]
- CD in your resources folder
- Clone the repository
git clone https://github.com/FXServer-ESX/fxserver-esx_addonaccount esx_addonaccount
- Add this in your server.cfg :
start esx_addonaccount
[USAGE]
There is two types of accounts : shared and not shared.
- Shared accounts dont belong to a specific user. Example : society account.
- Not shared accounts are created for every user in the server. Example : property black money
You must create the account in the database (addon_account) before using it :
name = name of the account, label = label of the account, shared (0 or 1) = Is account shared
TriggerEvent('esx_addonaccount:getSharedAccount', 'society_realestateagent', function(account)
account.addMoney(500)
end)
TriggerEvent('esx_addonaccount:getAccount', 'property_black_money', 'steam:0123456789', function(account)
account.removeMoney(500)
end)
Description
Languages
JavaScript
62.3%
Lua
34.8%
TypeScript
1.2%
HTML
0.8%
CSS
0.7%
Other
0.2%