Commands
Example commands to give coins
Create file server/commands.lua
local ESX = exports["es_extended"]:getSharedObject()
ESX.RegisterCommand('givecoins', {'god'}, function(xPlayer, args, showError)
local xTarget = args.playerId
if args.type ~= 'coins' and args.type ~= 'points' then
xPlayer.showNotification('Błędny typ coinsów!')
return
end
if xTarget then
local coins = tonumber(args.coins)
if args.type == 'coins' then
exports['zscripts-itemshop']:AddCoins(xTarget.source, coins)
elseif args.type == 'points' then
exports['zscripts-itemshop']:AddPoints(xTarget.source, coins)
end
-- xTarget.showNotification('Dostałeś ' .. coins .. ' coinsów', 'success')
xPlayer.showNotification('Pomyślnie nadano ' .. args.coins .. args.type .. ' dla uid ' .. args.uid)
return
end
end, true, {help = 'Dodaj coinsy', validate = true, arguments = {
{name = 'playerId', help = 'Player Id', type = 'player'},
{name = 'coins', help = 'Ilość', type = 'number'},
{name = 'type', help = 'Typ', type = 'string'},
}})
ESX.RegisterCommand('setcoins', {'god'}, function(xPlayer, args, showError)
local xTarget = args.playerId
if args.type ~= 'coins' and args.type ~= 'points' then
xPlayer.showNotification('Błędny typ coinsów!')
return
end
if xTarget then
local coins = tonumber(args.coins)
if args.type == 'coins' then
exports['zscripts-itemshop']:SetCoins(xTarget.source, coins)
elseif args.type == 'points' then
exports['zscripts-itemshop']:SetPoints(xTarget.source, coins)
end
xTarget.showNotification('Jakiś kurwa chuj ustawił ci coinsy na ' .. coins, 'warn')
xPlayer.showNotification('Pomyślnie ustawiono ' .. args.coins .. args.type .. ' dla uid ' .. args.playerId.source, 'success')
return
end
end, true, {help = 'Ustaw coinsy', validate = true, arguments = {
{name = 'playerId', help = 'Player Id', type = 'player'},,
{name = 'coins', help = 'Ilość', type = 'number'},
{name = 'type', help = 'Typ', type = 'string'},
}})
ESX.RegisterCommand('givecoinsall', {'owner'}, function(xPlayer, args, showError)
local coins = tonumber(args.coins)
if args.type == 'coins' then
exports['zscripts-itemshop']:AddCoinsAll(coins)
elseif args.type == 'points' then
exports['zscripts-itemshop']:AddPointsAll(coins)
end
print('[z-scripts] Pomyślnie nadano ' .. args.coins .. args.type .. ' dla wszystkich!')
-- TriggerClientEvent('esx:showNotification', -1, 'Dostałeś ' .. coins .. ' coinsów')
if not xPlayer then
xPlayer.showNotification('Pomyślnie nadano ' .. args.coins .. args.type .. ' dla wszystkich!', 'success')
end
end, true, {help = 'Nadaj kurwa wszystkim coinsy i chuj', validate = true, arguments = {
{name = 'coins', help = 'Ilość', type = 'number'},
{name = 'type', help = 'Typ', type = 'string'},
}})
Edit fxmanifest.lua
server_scripts {
--Mysql
'@oxmysql/lib/MySQL.lua',
--Config
'server-config.lua',
'server-functions.lua',
'items/shop.lua',
'items/time-shop.lua',
--Script
'server/main.lua',
--Commands
'server/commands.lua',--NEW
}
Last updated