configGangAccounts.lua
config.gangAccounts = {
{
gangName = "lostmc",
accountName = "The Lost MC",
ibanNumber = "G000TLMC0000TG001234", -- unique iban number (don't use space)
gradePerms = { -- un added graders cannot view the account.
[0] = {
["can_withdraw"] = false,
["can_deposit"] = true,
["can_transfer"] = false,
["can_ask"] = false,
},
[1] = {
["can_withdraw"] = false,
["can_deposit"] = true,
["can_transfer"] = false,
["can_ask"] = false,
},
[2] = {
["can_withdraw"] = false,
["can_deposit"] = true,
["can_transfer"] = false,
["can_ask"] = false,
},
[3] = {
["can_withdraw"] = true,
["can_deposit"] = true,
["can_transfer"] = true,
["can_ask"] = true,
},
}
},
{
gangName = "ballas",
accountName = "Ballas",
ibanNumber = "G000TLMC0000TG001234", -- unique iban number (don't use space)
gradePerms = { -- un added graders cannot view the account.
[0] = {
["can_withdraw"] = false,
["can_deposit"] = true,
["can_transfer"] = false,
["can_ask"] = false,
},
[1] = {
["can_withdraw"] = false,
["can_deposit"] = true,
["can_transfer"] = false,
["can_ask"] = false,
},
[2] = {
["can_withdraw"] = false,
["can_deposit"] = true,
["can_transfer"] = false,
["can_ask"] = false,
},
[3] = {
["can_withdraw"] = true,
["can_deposit"] = true,
["can_transfer"] = true,
["can_ask"] = true,
},
}
},
}
Last updated