Initialization failed
It seems like you are missing a couple of steps in your setup of ConquerChat. In order to setup ConquerChat correctly, please make sure to follow the steps described in the included README.TXT file.
This file is shown below for your convenience...
<%
Dim fs, readme
Set fs = CreateObject("Scripting.FileSystemObject")
Set readme = fs.openTextFile(Server.MapPath("readme.txt"))
Do While (NOT readme.AtEndOfStream)
Response.Write(readme.readLine & "
")
Loop
readme.Close
Set fs = Nothing
%>