<?php

################################################
# EVILCMS FLATFILE RECODE - 100% FUNCTIONALITY #
################################################

Session_Start();

Include "Class.EvilCMS.php";

############### CHANGE THESE TO CORRECT VALUES ###############
$DB = "Server/Database/"; // The path to the servers database.

$DCR_BASE = ""; // The path for the DCR files, can not end with a /
$DCR_DCR = ""; // The DCR file.
$DCR_VARS = ""; // The external vars.
$DCR_TEXTS = ""; // The external texts.

$IP = "127.0.0.1"; // Your IP
$Port = "90"; // Your port
$WWW = ""; // Your site URL, this can not end with a /
$Articles = "Articles.ini"; // The path to the articles storage.
$Use_SSO = 0; // Use SSO? Only if the server allows it.

$Hotel_Name = "Habbo Hotel"; // Your hotel name.
$In_Maintnence = 0; // Dont touch this.
$Hotel_Version = 0; // Hotel DCR version, THIS MUST BE FILLED IN.
$Use_Chat = 0; // If you want to enable the Chat page, remember to add chat at Page_chat.php!

########## DO NOT TOUCH THESE !! THEY ARE REALLY IMPORTNANT!! #################
$CMS = new EvilCMS($DB, array($DCR_BASE, $DCR_DCR, $DCR_TEXTS, $DCR_VARS), array($IP, $Port, $WWW, $Articles, $Use_SSO), array($Hotel_Name, $In_Maintnence, $Hotel_Version, $Use_Chat));
$CMS->Prechecks();

?>