Delete bill

Export

exports["billing_ui"]:deleteBillId(billId)

Parameters

NameData TypeDescription

billId

integer

The bill ID you can find in the database table billing

Example

-- Example command /deleteBillId 51
RegisterCommand("deleteBillId", function(playerId, args)
    local billId = tonumber(args[1])
    exports["billing_ui"]:deleteBillId(billId)
end)

Last updated