mirror of
https://github.com/ND-Framework/ND_Core.git
synced 2026-08-17 05:56:01 +01:00
15 lines
682 B
Lua
15 lines
682 B
Lua
NDCore = exports["ND_Core"]:GetCoreObject()
|
|
NDCore.Functions.VersionChecker("ND_ATMs", GetCurrentResourceName(), "https://github.com/ND-Framework/ND_Framework", "https://raw.githubusercontent.com/ND-Framework/ND_Framework/main/ND_ATMs/fxmanifest.lua")
|
|
|
|
RegisterNetEvent("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", function(amount)
|
|
local player = source
|
|
local update = NDCore.Functions.DepositMoney(amount, player)
|
|
TriggerClientEvent("ND_ATMs:update", player, update)
|
|
end)
|