AddAccountMoney

Add to the society's current bank balance

Syntax:

Bridge.Managment.AddAccountMoney(account, amount, reason)

Parameters:

  • account (string) - Name of account/society

  • amount (number) - Number to add to the account balance

  • reason (string) - Reason to add the balance

Example:

local Bridge = exports['community_bridge']:Bridge()

local account = "police"
local amount = 1000
local reason = "For testing"
local accountmoney = Bridge.Managment.AddAccountMoney(account, amount, reason)

Last updated