-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.lua
29 lines (25 loc) · 1.34 KB
/
server.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
ESX = exports['es_extended']:getSharedObject()
ESX.RegisterUsableItem('pistol-ammobox', function(source)
local xPlayer = ESX.GetPlayerFromId(source)
xPlayer.addInventoryItem('pistol-ammo', 20)
TriggerClientEvent('esx:showNotification', source, '20 darab lőszert szedtél ki a dobozból!')
xPlayer.removeInventoryItem('ammobox', 1)
end)
-- ESX.RegisterUsableItem('rifle-ammobox', function(source)
-- local xPlayer = ESX.GetPlayerFromId(source)
-- xPlayer.addInventoryItem('rifle-ammo', 20)
-- TriggerClientEvent('esx:showNotification', source, '20 darab lőszert szedtél ki a dobozból!')
-- xPlayer.removeInventoryItem('rifle-ammobox', 1)
-- end)
-- ESX.RegisterUsableItem('shotgun-ammobox', function(source)
-- local xPlayer = ESX.GetPlayerFromId(source)
-- xPlayer.addInventoryItem('shotgun-ammo', 20)
-- TriggerClientEvent('esx:showNotification', source, '20 darab lőszert szedtél ki a dobozból!')
-- xPlayer.removeInventoryItem('shotgun-ammobox', 1)
-- end)
-- ESX.RegisterUsableItem('smg-ammobox', function(source)
-- local xPlayer = ESX.GetPlayerFromId(source)
-- xPlayer.addInventoryItem('smg-ammo', 20)
-- TriggerClientEvent('esx:showNotification', source, '20 darab lőszert szedtél ki a dobozból!')
-- xPlayer.removeInventoryItem('smg-ammobox', 1)
-- end)