Files
ND_Core/ND_ATMs/source/server.lua
Andyyy7666 96f89d60ff Updated 2.1.0
Updated everything to new format, N1K0 is about to work on some more stuff.
2022-07-16 04:46:27 +02:00

16 lines
749 B
Lua

NDCore = exports["ND_Core"]:GetCoreObject()
NDCore.functions:versionChecker("ND_ATMs", GetCurrentResourceName(), "https://github.com/Andyyy7666/ND_Framework", "https://raw.githubusercontent.com/Andyyy7666/ND_Framework/main/ND_ATMs/fxmanifest.lua")
RegisterNetEvent("ND_ATMs:withdraw")
AddEventHandler("ND_ATMs:withdraw", function(amount)
local player = source
local update = NDCore.functions:withdrawMoney(amount, player)
TriggerClientEvent("ND_ATMs:update", player, update)
end)
RegisterNetEvent("ND_ATMs:deposit")
AddEventHandler("ND_ATMs:deposit", function(amount)
local player = source
local update = NDCore.functions:depositMoney(amount, player)
TriggerClientEvent("ND_ATMs:update", player, update)
end)