<?php

if($debugMode == 1) { error_reporting(1); }else{ error_reporting(0); }
session_start();

####################################
#   EvilCMS WAS CREATED BY X1M!    #
####################################
# I DONT DEMAND THAT YOU KEEP THE  #
# COPYRIGHT IN THE FOOTER, BUT I   #
# DO DEMAND THAT THIS NOTE IS KEPT #
# IN THE SOURCE CODE. YOU CAN EDIT #
# HOWEVER THE FUCK YOU WANT, JUST  #
# KEEP THIS NOTE. YOU MAY NOT RELE #
# ASE AS YOUR OWN, THIS IS STILL   #
# MADE BY ME.                -X1M! #
####################################

/* These are general variables wich should be edited. */
$hotelOwner = "Sociopath"; // Your username.
$hotelTitle = "Habbo"; // Your hotel name.
$debugMode = 0; // If you have made a plugin or is having bugs, set this to 1, it will display errors.
$newsPath = "Server/Database/news_feed.txt";
$countVisitors = "Server/Database/visits.txt"; // Counting our deeaar deeaar visitoors.

/* These are plugin variables, such as news system, rare system, purchases system etc etc. */
$_RARE = array( // You can configure this to make users be able to buy your rare(s) directly from homepage.
'name' => 'The Nelly\'s',
'description' => 'All the elephants, gold, silver and bronze in a package.',
'items' => 'gold_elephant;silver_elephant;bronze_elephant', // The rare's ID is how it is spelled in buy_furni. Separate multiple rares with ;
'price' => '1500',
'enabled' => 1 // If this isn't 1, the system won't be used.
);
$_PURCHASES = array( // You can configure so that people can purchase their HC, Tickets and Films at the main page.
// TS = Tickets, FS = Films
'HC_price' => '50',
'HC_days' => '100', // How many days the user will receive for their payment, this could be anything.
'TS_price' => '15',
'TS_tickets' => '25',
'FS_trice' => '35',
'FS_films' => '50',
'Use_FS' => 1,
'Use_TS' => 1,
'Use_HC' => 1
);
$_BANK = array( // Let your users store their money in a safe place.
'enabled' => 1, // You should get it by now.
'max_amount' => 1000000 // Max amount of money that can be stored in bank.
);
$_CLIENT = array( // I decided to automate the client. If you don't know how to set these up then you shouldn't own a retro.
'IP' => '',
'Port' => '',
'DCR' => '',
'Texts' => '',
'Vars' => ''
);
$_SHOP_BADGES = array( // Badge shop, actually quite funny. You add the badge by the code in the c_images directory, and the price is on the right. As shown below.
'VIP' => 254,
'MS1' => 50,
'MS2' => 50,
'MS3' => 50,
'MS4' => 50,
'MS5' => 50,
'MS6' => 50
);

?>