forked from Simnation/Main
15 lines
No EOL
375 B
Lua
15 lines
No EOL
375 B
Lua
RegisterNetEvent("nv_atm:client:open",function()
|
|
--print("ATM is opened")
|
|
end)
|
|
|
|
RegisterNetEvent("nv_atm:client:close",function()
|
|
--print("ATM is closed")
|
|
end)
|
|
|
|
RegisterNetEvent("nv_atm:client:deposit",function(money)
|
|
--print("Player deposit: "..money)
|
|
end)
|
|
|
|
RegisterNetEvent("nv_atm:client:withdraw",function(money)
|
|
--print("Player withdraw: "..money)
|
|
end) |