Lucia Cafe admin configuration

There is a way in fact, at line 80 in the module there’s the 4 levels;

Permissions = {
		gameOwners = {4,{}},
		superAdmins = {3,{}},
		Admins = {2,{}},
		Mods = {1,{}},
		Banned = {},
	},

to add a new level you can just copy paste one of the tables and change the numbers, for example;

Permissions = {
		level7 = {7,{}},
		level6 = {6,{}},
		level5 = {5,{}},
		level4 = {4,{}},
		level3 = {3,{}},
		level2 = {2,{}},
		level1 = {1,{}},
		Banned = {},
	},

don’t forget to modify commands like “admins”, “ingameadmins”, “info” and change essentials code admintitles, also at line 2816 and line 2818 you should change “gameOwners” to your highest admin level