Install guide
Download the qb
_realistic_atmresource.Move the qb
_realistic_atmfolder into your server'sresourcesdirectory.Open your server configuration file (default:
server.cfg)Add the following line to ensure the resource is started when the server runs:
ensure qb_realistic_atmRemove/Modify your banking scripts that handle ATM opening or PIN code management (if using cached pincodes).
Start the server
qb-banking:
Go to client.lua
Delete these:
~line 169:
CreateThread(function()
for i = 1, #Config.atmModels do
local atmModel = Config.atmModels[i]
exports['qb-target']:AddTargetModel(atmModel, {
options = {
{
icon = 'fas fa-university',
label = 'Open ATM',
item = 'bank_card',
action = function()
OpenATM()
end,
}
},
distance = 1.5
})
end
end)~ line 20
~line 127:
~line 47
Go to server.lua and delete:
~line 453:
Last updated