I haven't finished my new website yet, so for now you get a 1990's style looking thing.
A transaction_type is a unsigned 16-bit integer (number) used to determine the transaction type in a transaction log. The veriables are defined in _G.
These are all the transaction_types in ARCBank 1.4.0. These are for reference purpose only, please use the actual variable names. To get a human-readable description of the transaction, use the ARCBank.Msgs.AccountTransactions table. For example, ARCBank.Msgs.AccountTransactions[ARCBANK_TRANSACTION_TRANSFER]
ARCBANK_TRANSACTION_WITHDRAW_OR_DEPOSIT = 1 -- Cash Withdraw/deposit ARCBANK_TRANSACTION_TRANSFER = 2 -- Transfer ARCBANK_TRANSACTION_INTEREST = 4 -- Interest ARCBANK_TRANSACTION_UPGRADE = 8 -- Account upgraded ARCBANK_TRANSACTION_DOWNGRADE = 16 -- Account downgraded ARCBANK_TRANSACTION_GROUP_ADD = 32 -- Group member added ARCBANK_TRANSACTION_GROUP_REMOVE = 64 -- Group member removed ARCBANK_TRANSACTION_CREATE = 128 -- Account created ARCBANK_TRANSACTION_DELETE = 256 -- Account deleted ARCBANK_TRANSACTION_SALARY = 512 -- Player received salaries ARCBANK_TRANSACTION_OTHER = 32768 -- Unused ARCBANK_TRANSACTION_EVERYTHING = 65535 -- All transactions (used for searching)