đŸ”Ŧ
RX Scripts
STOREDISCORD
  • 👋Overview
  • Find us
    • 🔗Store
    • 🔗Discord
    • 🔗Youtube
  • 🌐Scripts
    • Garages
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Banking
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Reports PRO
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Mining
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Fishing
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Player Stores
      • đŸ› ī¸Installation
      • 🚚Jobs DLC
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Drug Labs
      • đŸ› ī¸Installation
      • âœˆī¸Operation DLC
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Hunting
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Plantation
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Gang Wars
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Šī¸Events
    • Housing
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Šī¸Events
    • Chopshop
      • đŸ› ī¸Installation
      • 📝Configurables
    • Death System
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Šī¸Events
    • Recyclers
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Smelters
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Crates & Storages
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Šī¸Exports
      • â†Šī¸Events
    • Black Markets
      • đŸ› ī¸Installation
      • 📝Configurables
    • Hazard Zones
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Report System
      • đŸ› ī¸Installation
      • 📝Configurables
      • â†Ēī¸Exports
      • â†Šī¸Events
    • Billing System
      • đŸ› ī¸Installation
      • â†Ēī¸Exports
      • â†Šī¸Events
Powered by GitBook
On this page
  • Client Side
  • Server Side
  1. Scripts
  2. Banking

Exports

Exports can be requested at our discord! (https://discord.rxscripts.xyz/)

Client Side

Server Side

---@param iban string
exports['RxBanking']:GetAccount(iban)
---@param identifier string
exports['RxBanking']:GetLoan(identifier)
---@param iban string
---@param amount number
---@param type? 'payment'|'deposit'|'withdraw'|'transfer'|'interest'
---@param reason? string
---@param fromIban? string
---@return Transaction?
exports['RxBanking']:AddAccountMoney(iban, amount, type, reason, fromIban)
---@param iban string
---@param amount number
---@param type? 'payment'|'deposit'|'withdraw'|'transfer'|'interest'
---@param reason? string
---@param toIban? string
---@return Transaction?
exports['RxBanking']:RemoveAccountMoney(iban, amount, type, reason, toIban)
---@param society string
---@param amount number
---@param type? 'payment'|'deposit'|'withdraw'|'transfer'|'interest'
---@param reason? string
---@param fromIban? string
---@return Transaction?
exports['RxBanking']:AddSocietyMoney(society, amount, type, reason, fromIban)
---@param society string
---@param amount number
---@param type? 'payment'|'deposit'|'withdraw'|'transfer'|'interest'
---@param reason? string
---@param toIban? string
---@return Transaction?
exports['RxBanking']:RemoveSocietyMoney(society, amount, type, reason, toIban)
---@param identifier string
---@param includeAuthorized? boolean
---@param filter? { type: 'checking' | 'saving', count: boolean }
---@return Account[]|number|nil
exports['RxBanking']:GetPlayerBankAccounts(iban)
---@param identifier string
exports['RxBanking']:GetPlayerPersonalAccount(identifier, includeAuthorized, filter)
---@param society string
exports['RxBanking']:GetSocietyAccount(society)
---@param amount number
---@param type 'payment'|'deposit'|'withdraw'|'transfer'|'interest'
---@param fromIban? string
---@param toIban? string
---@param reason? string
exports['RxBanking']:CreateTransaction(amount, type, fromIban, toIban, reason)
PreviousConfigurablesNextEvents

Last updated 16 days ago

🌐
â†Ēī¸