54 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| 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 = {
 | |
|     {license = "license:43fa1860292da1e353911cb3a8e7faaee95879e3", totalSlot = 10},
 | |
|     {license = "license:fff901d8f6568f356416076df59251aede9c6b68", totalSlot = 3},
 | |
|     {license = "license:60b5f8ebf593295e3f65cbf4cb4c85096b37da2a", totalSlot = 3},
 | |
|     {license = "license:0eafabe308cf0eaca0b0fbf5c1ca13f756d224f2", totalSlot = 3},
 | |
|     {license = "license:fff901d8f6568f356416076df59251aede9c6b68", totalSlot = 2},
 | |
|     {license = "license:f890b0820373e5721abc1177513f0ad82e33785b", totalSlot = 2},
 | |
|     {license = "license:7670072db4258a31e67f66e432cd307d9e3495bd", totalSlot = 2},  
 | |
|     {license = "license:af732c42d19a3d8b6a0169ebb13fc135e1d26859", totalSlot = 2},
 | |
|     {license = "license:ce2d42d247530f908b29287321e18ba52fe62925", totalSlot = 3},
 | |
|     {license = "license:4caf5e96ae09a88da5a00e8de4d1e72434ce8dcf", totalSlot = 2},
 | |
|     {license = "license:dae8d3f44cc7de24638a82ff53a7643475267ef0", totalSlot = 3},
 | |
|     {license = "license:916536709a866cb002a6b9622590e03a3e7d8517", totalSlot = 2},
 | |
| 
 | |
| 
 | |
| 
 | |
|     -- {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
 | 
