-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexample.config.php
88 lines (56 loc) · 2.53 KB
/
example.config.php
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/*
* Example Configuration Settings
*
* Yeah I wouldn't really advise changing any
* of this unless you know what you're doing lmao
*/
global $cf;
$cf = [
/* Output raw information to the console, you probably
want to have this on if you first run a bot init ;) */
'debugmode' => 'on',
/* IRC Bot details */
/* Bot Username */
'nick' => 'Valeyard',
/* The part of the vhost that says ident@hostmask */
'ident' => 'bot',
/* The GECOS (realname) of the bot */
'realname' => 'Dis mah bot',
/* The host */
'host' => 'example.pornhub.com', /*lmoa*/
/* NickServ password */
'password' => 'SupahNickServPassWad123',
/* Email used for NickServ */
'email' => '[email protected]',
/* Oper shit. Will be partially useless if not oper. */
'opernick' => 'Oppah',
'operpass' => 'GangnamStyle123lmao',
/* Server details. If you want to connect using SSL/TLS, prefix your servername with `ssl://` like `ssl://irc.valware.uk */
'serverip' => '127.0.0.1', /* Will probably work for you if you are running IRCd on the same server */
'port' => '6667', /* 6697 is the "default" secure port. */
'network' => 'NetworkName',
/* takes 'yes' or 'no'. When 'yes', attempts SASL. When 'no', attempts to identify with NickServ upon connect */
'caps' => 'account-notify account-tag extended-join chghost away-notify server-time cap-notify message-tags sasl',
/* Uncomment the following line if you want Valeyard to ignore playback messages (chathistory) */
//'ignoreplayback' => true,
/* Uncomment the following line for your bot to set the bot mode on itself when it can */
//'botmode' => true,
/* Uncomment the following line if the server uses a password */
//'serverpassword' => 'CrazyServerPassword123:D', /* Left commented out because don't have one yet lmoa */
/* SQL Config for the user database */
/* IP of the SQL server */
'sqlip' => '127.0.0.1', /* would work if your SQL server is on same server as us lol */
/* Username to access SQL server */
'sqluser' => 'sql_username_lol',
/* Password for the SQL user */
'sqlpass' => 'sql_password_lol_123',
/* Name of the database within the SQL server */
'sqldb' => 'sql_db_name',
/* Important chans yo. These are the chans that GateWay will try to join before all the others. */
'statschan' => '#gatewaystats', /* The channel that GateWay outputs its activity to */
'serviceschan' => '#services', /* The channel that Services outputs its activity to */
'staffchan' => '#staff', /* The staff room */
'helpchan' => '#help', /* The Help room */
]
?>