xHurricaneZ
New Member
- Aug 15, 2013
- 24
- 4
Decided to play around with it, since I found it on here. The thread said to fill out class.config and it would work but I've done this and I just get a blank screen when I load my site.
Here's my class.config:
You must be registered for see links
Here's my class.config:
Code:
<?php
if(!defined('IN_INDEX')) { die('Access Denied.'); }
$_CONFIG['hotel']['url'] = 'http://mysite.us';
$_CONFIG['hotel']['name'] = 'Habbo';
$_CONFIG['hotel']['desc'] = 'Welcome to Habbo';
$_CONFIG['hotel']['motto'] = 'I love Habbo';
$_CONFIG['hotel']['credits'] = 10000;
$_CONFIG['hotel']['pixels'] = 5000;
$_CONFIG['hotel']['theme'] = "cms_blue";
$_CONFIG['currency']['name'] = 'Leafs';
$_CONFIG['currency']['value'] = '0';
$_CONFIG['mysql']['connection_type'] = 'pconnect';
$_CONFIG['mysql']['hostname'] = 'localhost';
$_CONFIG['mysql']['username'] = 'root';
$_CONFIG['mysql']['password'] = 'password';
$_CONFIG['mysql']['database'] = 'database'
$_CONFIG['hotel']['th_enabled'] = true;
$_CONFIG['hotel']['th_username'] = 'test';
if($_CONFIG['hotel']['th_enabled'] == true)
{
$_CONFIG['hotel']['client_url'] = 'http://votingapi.com/vote.php?username='.$_CONFIG['hotel']['th_username'].'&api=http:!!%www%/client';
}
else
{
$_CONFIG['hotel']['client_url'] = $_CONFIG['hotel']['url'].'/client';
}
$_CONFIG['hotel']['external_vars'] = 'vars.txt';
$_CONFIG['hotel']['external_texts'] = 'texts.txt';
$_CONFIG['hotel']['product_data'] = 'productdata.txt';
$_CONFIG['hotel']['furni_data'] = 'furnidata.txt';
$_CONFIG['hotel']['swf_folder'] = '%www%/Files/swf';
?>