Install guide

  • Download the qb_realistic_atm resource.

  • Move the qb_realistic_atm folder into your server's resources directory.

  • 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_atm
  • Remove/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