-
Notifications
You must be signed in to change notification settings - Fork 0
/
hybrid.cf
58 lines (54 loc) · 2.68 KB
/
hybrid.cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/path/to/executable/hybridcore
# $KYAULabs: hybrid.cf,v 1.1.0 2021/11/26 12:46:34 kyau Exp $
#
# █████████▀█ █████████ █ ▀▀▀▀▀▀▀▀▀▀ █████████▀█ █████████▀█
# █████████ █ █████████ █ ██████████ █████████ █ █████████ █
# █████████▀█ █████████▀▄ ██████████ █████████▀▄ █████████▀█
# ───────────────────────── ██████████ ──────────────────bz!────
#
# hybrid.cf - config for hybrid(core)
# Copyright (C) 2021 KYAU Labs (https://kyaulabs.com)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
set admin "kyau" ;# administrator
set hub "hc" ;# botnet-nick for hub bot
set infobot "info" ;# botnet-nick for info bot
set username "kyau" ;# ident
set nick "hc" ;# irc nickname
set altnick "hc-" ;# irc alternate nickname
set timezone "PST" ;# timezone
;# CET : Frankfurt/DE (offset -1)
;# : Amsterdam/NL
;# EST : Buffalo/NY (offset 5)
;# CST : Dallas/TX (offset 6)
;# PST : Seattle/WA (offset 8)
;# : Los_Angeles/CA
set offset "8" ;# timezone offset
set vhost4 "" ;# vhost (ipv4)
#set vhost6 "" ;# vhost (ipv6)
set listen-addr "" ;# ip addr for incoming connections
set prefer-ipv6 0 ;# prefer ipv6 over ipv4?
set reserved-portrange 5000:5050 ;# dcc data port range
set main_config [info script] ;# main config file
if { ${botnet-nick} != ${nick} } { set botnet-nick "$nick" }
if { ${nick} == ${hub} } {
set private-global [set private-user 1]
set override-bots 0
} else {
set private-global [set private-user 0]
set override-bots 1
}
if { [catch { loadmodule blowfish } err] } { die "\00304‼ ERROR:\003 can't load blowfish module:\n$err" }
# vim: ft=tcl sw=4 ts=4 noet: