Skip to content

Commit 4cd559c

Browse files
committed
docs(banking/exports): improved doc on AddMoneyToSociety and RemoveMoneyFromSociety
1 parent 28ecfdd commit 4cd559c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/banking/exports.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ print(json.encode(accountData))
7979

8080

8181
### AddMoneyToSociety (server-side only)
82-
Adds money to the specified society account. (It's meant to replace qb-banking `AddMoney` export)
82+
Adds money to the specified society account.
8383

8484
**Parameters:**
85-
- `societyName` (string) - The name of the society.
85+
- `societyName` (string) - The name of the society. (Make sure to use the exact name! Check your database to verify the name. It might include the `society_` prefix)
8686
- `amount` (number) - The amount to add to the society account.
8787
- `reason` (string) - The reason for adding money to the society account.
8888

@@ -92,10 +92,10 @@ exports["s1n_banking"]:AddMoneyToSociety("police", 1000, "Paycheck")
9292
```
9393

9494
### RemoveMoneyFromSociety (server-side only)
95-
Removes money from the specified society account. (It's meant to replace qb-banking `RemoveMoney` export)
95+
Removes money from the specified society account.
9696

9797
**Parameters:**
98-
- `societyName` (string) - The name of the society.
98+
- `societyName` (string) - The name of the society. (Make sure to use the exact name! Check your database to verify the name. It might include the `society_` prefix)
9999
- `amount` (number) - The amount to remove from the society account.
100100
- `reason` (string) - The reason for removing money from the society account.
101101

0 commit comments

Comments
 (0)