BAE Trello Bans

How could I get the information for BAE trello bans? I’m struggling to figure out how to get all three things needed.

Can you send me your BAE configuration file?

Sure. In a code block or a file?

Code block should do the job!

local Configuration = {
	['Loader ID'] = script.MainModule,

	--[[
		
		Example:
		
		['Super Admins'] = {
			["1"] = "ROBLOX",
			["2"] = "John Doe",
			["3"] = "Jane Doe",
		},

		["1"] is the User ID
		"ROBLOX" is their Username
		
		This format is the same for
		Super Admins, Admins, Mods,
		and Banned.
		
	--]]
	
	['Super Admins'] = {
	},
	
	['Admins'] = {
	
	},
		
	['Mods'] = {
	
	},
	
	['Banned'] = {

	},
	
	['Group Configuration'] = {
		{
			['Group ID'] = 8501134,
			['Group Rank'] = 8,
			['Tolerance Type'] = '>=',
			['Admin Level'] = 1,
		},
		{
			['Group ID'] = 8501134,
			['Group Rank'] = 12,
			['Tolerance Type'] = '>=',
			['Admin Level'] = 2,
		},
		{
			['Group ID'] = 8501134,
			['Group Rank'] = 15,
			['Tolerance Type'] = '>=',
			['Admin Level'] = 3,
		},
		{
			['Group ID'] = 8501134,
			['Group Rank'] = 19,
			['Tolerance Type'] = '>=',
			['Admin Level'] = 4,
		},
		{
			['Group ID'] = 8501134,
			['Group Rank'] = 18,
			['Tolerance Type'] = '==',
			['Admin Level'] = 0,
		}
	},
	
	['Command Configuration'] = {
		--i'll save you quite a few lines of reading and hide this
	},

	['Prefix'] = ('.'), -- The prefix to the admin, i.e :cmds or :sm hi
	['Kick Reason'] = ('Malibu Hotels | You have been kicked from this server.'), -- Displayed to people that are kicked.
	['Ban Reason'] = ('Malibu Hotels | You have been banned from this server.'), -- Displayed to people that are banned.
	['Shutdown Reason'] = ('This server is shutting down..\nTry joining a different server!'), -- Displayed to people when the server is shut down.
	['Server Message'] = ('Important announcement'), -- Displayed in the :sm command's title.
	['Server Lock Reason'] = ('The server is locked.'), -- Displayed to people being kicked that try to enter a locked server.
	['Trello'] = true, -- Use trello? HttpService must be enabled.
	['Trello Board'] = ('N1ORlwn1'), -- Trello board ID.
	['Trello App Key'] = (''), -- Private trello application key.
	['Trello Token'] = (''), -- Private trello token.
	['Creator Debugging'] = true, -- Allows the creator to debug potential issues with the admin.
	['Donor Perks'] = true, -- Gives people who purchase an admin donation the ability to cape, put hats on, etc.
	['Public Commands'] = true, -- Will people that are not admin be able to say :cmds, or !clean?
	['Auto Clean'] = true, -- Will hats and gear automatically be cleaned up every so often?
	['System Color'] = Color3.new(31/255,31/255,31/255), -- Color of the admin's guis.
	['Tools Location'] = game.ServerStorage, -- Where the :tools and :give command will get tools from.
	['Command Confirmation'] = true, -- Validates certain commands like :Ban all, or :PBan all.
	['Datastore Key'] = ('BAE_#$DGF') -- What cape data, ban data, etc. is stored under. Changing will wipe it.
}

Alright, so bear with me

We’re going to have to edit this set of code.

So first of all, I can see you have got your board ID, which is a great start.

Next of all you need to get your app key, to do this you must go to this link.

Copy the number (E.g 123) & then paste it into this line.

E.g:

['Trello App Key'] = ('123'), -- Private trello application key.

Then click the button down below to generate your token:

image

Once you’ve done that you should be good to go, make sure HttpService is enable and give it a go, I’ve never used BAE trello bans, so tell me if you continue to encounter errors.


(In addition to this make sure your board is public & make a list under “Ban List”.)

image

image

After some quick testing everything seems to work!

Remember to format bans like this:

Username:UserId

image

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.