Presential Billing Payment

In this case we present the other payment method available with quasar billing, with this you can go to a configured branch to make the payment of the invoice, and in which you will not be charged any payment tax.


Basic configuration of Invoices creation

It is fully configurable, you can enable or disable it, you can also enable or disable the blip of the payment branch, you can add the payment points you want and you can find this part of the configuration in the config.lua.

Config.PresentialBillingPayment = {
    ['Enabled'] = true,
    ['Distance'] = 1.5,
    ['Blips'] = {
        enabled = true,
        sprite = 207,
        display = 4,
        scale = 0.8,
        colour = 2,
        shortRange = true,
    },
    ['Points'] = {
        {
            label = 'Pay Invoice', -- if you need stack the blip in the map you can use the same label in all points
            coords = vector3(241.8698, 224.2415, 106.2868),
            markerId = 21,
            distance = 3
        },
        {
            label = 'Pay Invoice',
            coords = vector3(246.7510, 222.9073, 106.2868),
            markerId = 21,
            distance = 3
        },
        {
            label = 'Pay Invoice',
            coords = vector3(-1270.0256, -3048.5208, 13.9807),
            markerId = 21,
            distance = 3
        }
    }
}

Last updated