12345678910111213141516171819 |
- <?php
- ///////
- // webirc-client - 2013-2020
- // (C) Chris Dorman, GPL v3 - (C) Microchat devs
- // https://github.com/Pentium44/cwchat
- ///////
-
- $title = "CWChat"; // Chat title
- $desc = "Chris' Website IRC Chat"; // Chat description
- $server = "127.0.0.1"; // IRC server connected to (for information display panel)
- $port = "1337"; // IRC server port (for information display panel)
- $server_msgcount = "80"; // Number of messages to leave at the end of the server database
- $channels = array("#theroot"); // IRC channel
-
- ///// NO TOUCHY /////
- $version = "1.2.0"; // CWChat version
-
- ?>
|