33 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Enter channels here as an array. Add multiple channels like: channels=("a11y" "channel2" "channel3")
 | |
| # Channel names should NOT include the # prefix
 | |
| channels=("a11y")
 | |
| # The date format for log entries. man date for details.
 | |
| dateFormat='%B %d, %I:%m%P'
 | |
| # Greet people who enter the channel? (true/false)
 | |
| # Configure greetings in triggers/greet/greet.sh
 | |
| greet=true
 | |
| # Say something when people leave the channel? (true/false)
 | |
| # Configure bye messages in triggers/bye/bye.sh
 | |
| leave=true
 | |
| # Path to log file
 | |
| log="log.txt"
 | |
| nick="storm_bot"
 | |
| port=6697
 | |
| # Use SSL/TLS for IRC connection (true/false)
 | |
| # Port 6697 is standard for SSL, 6667 for plain text
 | |
| useSSL=true
 | |
| # Message to give when the bot logs off the server
 | |
| quitMessage="$nick vanishes in a sudden flash of brilliant lightning."
 | |
| server="irc.libera.chat"
 | |
| # format=username hostname servername :realname
 | |
| user="$nick ${server%.} $server :$nick"
 | |
| # auto rejoin if kicked from channel?
 | |
| autoRejoinChannel=true
 | |
| # Say something nasty to whomever kicked the bot?
 | |
| curseKicker=true
 | |
| # Symbols used to specify you are calling a bot module.
 | |
| botCaller=",.!+?"
 | |
| # People who are allowed to private message the bot separate multiple names with |
 | |
| allowList=""
 | |
| ignoreList="storm_bot"
 |