1
0
Fork 0
forked from Simnation/Main
Main/resources/[um]/um-multicharacter/server/list/slotslist.lua

44 lines
1.5 KiB
Lua
Raw Normal View History

2025-06-07 08:51:21 +02:00
local Slots = {}
-- Add the user's rockstar license or license2: and how many slots they want to have in total
-- If you are using Qbox, change license:xxxxx to license2:xxxxx
-- @ If Slots.DiscordPerm.status is false | for manuel license works
-- This does not include Config.DefaultSlots, it sets the direct slot limit of the character
Slots.List = {
2025-06-07 08:51:21 +02:00
-- {license = "license:xxxx2", totalSlot = 7},
-- {license = "license:xxxx3", totalSlot = 3},
-- {license = "license:xxxx4", totalSlot = 4},
}
-- This structure configures extra slot allocations based on Discord roles.
-- The `Slots.DiscordPerm` structure allows you to assign additional slots to users
-- based on specific Discord roles that they possess
Slots.DiscordPerm = {
status = false, -- Set to true to enable this feature, or false to disable it.
role = {
{ id = "roleid", addExtraSlot = 20 }, -- Example: Users with this role will have 20 + Config.DefaultSlots = 25 in total.
{ id = "roleid", addExtraSlot = 3 }, -- Replace 'roleid' with your Discord role ID and specify the total extra slots.
{ id = "roleid", addExtraSlot = 4 }, -- Repeat this pattern for as many roles as you need.
{ id = "roleid", addExtraSlot = 5 },
{ id = "roleid", addExtraSlot = 6 },
}
}
Slots.CustomDeleteCharacterAccess = {
status = false, -- Set to true to enable this feature, or false to disable it.
list = {
--"license:xxxxx1",
--"license2:xxxxx3",
}
}
return Slots