Skip to main content

RiP-BankingV2

Due to many options RiP-BankingV2 is one of the best and most extensive banking scripts.

Config

Some options are explained here. However this does not represent the original config file.

RiP.Credit

With this option you can adjust the credit options. Because many players might abuse this function, you can change the maximum amount per credit and more.

RiP.Credit = {
MaxCredits = 10, -- [INTEGER] maximum number of concurrent credits
MaxAmount = 20, -- [INTEGER] maximum percentage of a credit related to the bank balance
Interest = 6, -- [INTEGER] Zinsen/interest in percent
Time = 7 -- [INTEGER] credit deadline in days
}

RiP.Savings

With this you can modify the interests for the savings account.

RiP.Savings = {
Interval = 60, -- [INTEGER] time until player gets his interests again
Interest = 2 -- [INTEGER] interest percentage players get from their savings account
}

RiP.Taxes

Activate RiP.Taxes.Active to enable income- & vehicle taxes with multiple tax classes.

RiP.Taxes = {
Active = true, -- [BOOLEAN] players pay taxes
Time = 120, -- [INTEGER] the time between the taxes in minutes
Classes = {
[1] = {
MinimalAmount = 100, -- [INTEGER] the amount that is needed to be this tax class
Tax = 3 -- [DECIMAL] the amount of tax in percent
},
[2] = {
MinimalAmount = 300,
Tax = 4
},
},
CarTaxes = {
Active = true, -- [BOOLEAN] enable cartaxes
CarPrice = 100 -- [INTEGER] taxes per owned car
},
}

RiP.Discord

Money is a touchy subject due to modders. To better monitor this, the script provides extensive logs with a discord webhook.

RiP.Discord = {
Color = 10181046, -- [INTEGER] webhook color
Icon = '', -- [STRING] icon url
Webhook = '', -- [STRING] discord webhook for all logs
ActiveAmount = { -- [INTEGER] minimum amount to trigger webhook (-1 = deactivated)
['deposit'] = 1000,
['withdraw'] = 1000, -- all actions over 1000$ will be logged
['transfer'] = 0, -- all actions will be logged
['credit'] = -1, -- no actions will be logged
['savings'] = -1
},
}

RiP.Banks & RiP.AtmModels

You can add two different types of access-points: RiP.Banks is for coords (vector3) and opens the entire banking menu. RiP.AtmModels is for objects/props (hash) and opens the limited atm menu.

RiP.Banks = {
vector3(150.26, -1040.20, 29.37), -- [VECTOR] bank coords (x,y,z)
}

RiP.AtmModels = { -- https://forge.plebmasters.de/objects
[-1364697528], -- [HASH] atm object/prop hash
}