65 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| return {
 | |
| 
 | |
| 	-- Your authorization token from the botfather.
 | |
| 	bot_api_key = '',
 | |
| 	-- Your Telegram ID.
 | |
| 	admin = 1337,
 | |
| 	-- Two-letter language code.
 | |
| 	lang = 'de',
 | |
| 	-- The channel, group, or user to send error reports to.
 | |
| 	-- If this is not set, errors will be printed to the console.
 | |
| 	log_chat = nil,
 | |
| 	-- The port used to communicate with tg for administration.lua.
 | |
| 	-- If you change this, make sure you also modify launch-tg.sh.
 | |
| 	cli_port = 4567,
 | |
| 	-- The block of text returned by /start.
 | |
| 	about_text = [[
 | |
| Dies ist die BETA-Version von Brawlbot v2.
 | |
| 
 | |
| Sende /hilfe, um zu starten
 | |
| 	]],
 | |
| 	-- The symbol that starts a command. Usually noted as '/' in documentation.
 | |
| 	cmd_pat = '/',
 | |
| 
 | |
| 	-- false = only whitelisted users can use inline querys
 | |
| 	-- NOTE that it doesn't matter, if the chat is whitelisted! The USER must be whitelisted!
 | |
| 	enable_inline_for_everyone = true,
 | |
| 	
 | |
| 	-- Redis settings. Only edit if you know what you're doing.
 | |
| 	redis = {
 | |
| 		host = '127.0.0.1',
 | |
| 		port = 6379,
 | |
| 		use_socket = false, -- Set to true, if you need to connect over a socket
 | |
| 		socket_path = 'unix:///home/path/to/your/redis/sock',
 | |
| 		password = nil, -- Set, if you need a password to connect to redis
 | |
| 		database = nil -- Set, if you want to select another database. Default is 0 (use no ""!)
 | |
| 	},
 | |
| 
 | |
| 	errors = { -- Generic error messages used in various plugins.
 | |
| 	    generic = 'An unexpected error occurred.',
 | |
| 		connection = 'Verbindungsfehler.',
 | |
| 		quotaexceeded = 'API-Quota aufgebraucht.',
 | |
| 		results = 'Keine Ergebnisse gefunden.',
 | |
| 		sudo = 'Du bist kein Superuser. Dieser Vorfall wird gemeldet!',
 | |
| 		argument = 'Invalides Argument.',
 | |
| 		syntax = 'Invalide Syntax.',
 | |
| 		chatter_connection = 'Ich möchte gerade nicht reden',
 | |
| 		chatter_response = 'Ich weiß nicht, was ich darauf antworten soll.'
 | |
| 	},
 | |
| 	
 | |
|     remind = {
 | |
|         persist = true,
 | |
|         max_length = 1000,
 | |
|         max_duration = 526000,
 | |
|         max_reminders_group = 10,
 | |
|         max_reminders_private = 50
 | |
|     },
 | |
| 
 | |
|     chatter = {
 | |
|         cleverbot_api = 'https://brawlbot.tk/apis/chatter-bot-api/cleverbot.php?text=',
 | |
|         connection = 'I don\'t feel like talking right now.',
 | |
|         response = 'I don\'t know what to say to that.'
 | |
|     }
 | |
| 
 | |
| }
 | 
