From 7ea7f77c38c2d1b1057c64fcc5f0952e195efdef Mon Sep 17 00:00:00 2001 From: Miho931 <98314142+Miho931@users.noreply.github.com> Date: Tue, 10 Jun 2025 11:54:11 +0200 Subject: [PATCH] Update sh_banking.lua --- .../jobs_creator/_modules/banking/example/sh_banking.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/[creator]/jobs_creator/_modules/banking/example/sh_banking.lua b/resources/[creator]/jobs_creator/_modules/banking/example/sh_banking.lua index be2ca7ced..2e3934d18 100644 --- a/resources/[creator]/jobs_creator/_modules/banking/example/sh_banking.lua +++ b/resources/[creator]/jobs_creator/_modules/banking/example/sh_banking.lua @@ -11,20 +11,20 @@ table.insert(Integrations.modules[moduleType], moduleName) -- This is just an EXAMPLE, so you have to edit it to make it work Integrations[moduleType][moduleName].getSocietyMoney = function(societyName) --local money = exports['example-banking']:getMoney(societyName) - local money = exports['okokBanking']:GetAccount(society) + local money = exports['okokBanking']:GetAccount(societyName) return money end -- This is just an EXAMPLE, so you have to edit it to make it work Integrations[moduleType][moduleName].giveMoneyToSociety = function(societyName, amount) --local success = exports['example-banking']:giveMoney(societyName, amount) - local success = exports['okokBanking']:AddMoney(society, value) + local success = exports['okokBanking']:AddMoney(societyName, amount) return success -- Return true if success, false if not end -- This is just an EXAMPLE, so you have to edit it to make it work Integrations[moduleType][moduleName].removeMoneyFromSociety = function(societyName, amount) --local success = exports['example-banking']:removeMoney(societyName, amount) - local success = exports['okokBanking']:RemoveMoney(society, value) + local success = exports['okokBanking']:RemoveMoney(societyName, amount) return success -- Return true if success, false if not end