NeveraDev Docs
  • Welcome
  • Paid
    • Realistic ATM
    • Private Yacht
    • Weed Planting
    • Advanced Scoreboard
    • Weapon Shop
    • Control Security Cameras
  • Free
    • OX Debug
    • ESX Scoreboard
    • Loading Screen
    • Sit On Every Chair
  • Social
    • Tebex Shop
    • Fivem Forum
    • Discord Support
Powered by GitBook
On this page
  • Script
  • Installation
  • Code
  • Support
  1. Paid

Realistic ATM

How to install Nevera Development - Realistic ATM script.

PreviousWelcomeNextPrivate Yacht

Last updated 5 months ago

This script is compatible with ESX and QB.

This script requires the or

Script

Installation

  1. Add the resource to your server start config: ensure nv_atm, the name of the folder must not be changed or the resource will not function correctly. Ensure the script is the latest one.

server.cfg
# ...
# All the other resources
ensure nv_atm
  1. Open the config.lua and configure it correctly, paying attention to all the variables!

  2. Restart server or type ensure nv_atm in console.

  1. Add the resource to your server start config: ensure nv_atm, the name of the folder must not be changed or the resource will not function correctly. Ensure the script is the latest one.

server.cfg
# ...
# All the other resources
ensure nv_atm
  1. Open the config.lua and configure it correctly, paying attention to all the variables!

  2. Restart server or type ensure nv_atm in console.

Code

config = {}

config.notifyName = "Fleeca Bank"
config.notifyDesc = "ATM Machine"
config.notifyIcon = "CHAR_BANK_FLEECA"
config.enableNotification = false

config.atmModels = {
	"prop_atm_01",
	"prop_atm_02",
	"prop_atm_03",
	"prop_fleeca_atm"
}

config.msg_deposit1 = "You don't have enough money."
config.msg_deposit2 = {"You are successfully deposit $","to bank."}

config.msg_withdraw1 = "You don't have enough money."
config.msg_withdraw2 = {"You are successfully withdraw $","from bank."}

config.atm_lang = {
	welcome_title = "Welcome to",
	title="FL<b>EE</b>CA BANK",
	insert_card="Insert a card",

	balance="Balance",
	withdraw="Withdrawal",
	deposit="Deposit",
	exit="Exit",
	back="Back",
	custom_input="Custom Input",
	msg_balance="Your Balance",
	
	msg_deposit="How much money you want to deposit?",
	msg_withdraw="How much money you want to withdraw?",

	msg_thanks = "Thanks for using our services",
	msg_soon = "See you soon!"

}

-- If you want to enable QB Target, you can set this to true
config.qbtarget = false 
config.qbtarget_name = "Open ATM"

-- If you want to enable OX Target, you can set this to true
config.ox_target = false 
config.ox_target_name = "Open ATM"
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)

Support

Download from and unzip the Realistic ATM on desktop. Open ESX folder, and move nv_atm in your server's resource folder.

Download from and unzip the Realistic ATM on desktop. Open QB folder, and move nv_atm in your server's resource folder.

If you have any problems or need help, contact us on

keymaster
keymaster
Discord!
ox_target
qb-target
LogoRealistic ATMCfx.re Community