Money

Retrieve the local player's money balance from the client side via a server callback.

GetMoney

Fetches the player's cash and bank balance asynchronously.

KOJA.Client.GetMoney(callback)
Parameter
Type
Description

callback

function(cash, bank)

Called with the result

Callback parameters

Parameter
Type
Description

cash

number

Cash on hand

bank

number

Bank balance

Example

KOJA.Client.GetMoney(function(cash, bank)
    print('Cash:', cash)
    print('Bank:', bank)
end)

Example — show in UI

KOJA.Client.GetMoney(function(cash, bank)
    SendNUIMessage({
        action = 'updateMoney',
        cash   = cash,
        bank   = bank,
    })
end)
  • This function triggers a server callback internally. The result is never available on the same tick — always use the callback.

  • To add or remove money from a player, use the server-side money API.

Last updated