Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[TUT] How to Make A RevCMS Habbo Retro Noob Friendly [TUT]

Status
Not open for further replies.
Initiate Mage
Joined
Mar 10, 2011
Messages
10
Reaction score
0
i'm at MYSITE.la/ase but he ask for a password, where can i change that

NOTE: logging in with my own account doesn't work
 
Initiate Mage
Joined
Jan 10, 2013
Messages
8
Reaction score
0
I cant seem to load hotel. It stays all black plus I got a timezone error. My habbo character image wont show up on front page. And the emulator doesnt seem to find the host.
Hello Guys, welcome to my first tutorial on Ragezone
We will be creating a RevCMS hotel so hope it turns out well Enjoy!


Downloads:
Xampp 1.7.3 -
RevCMS -
Phoenix Emulator - or (Recommened) Buy Phoenix License.
Kidrambodubsteps SWF'S -
Notepad++ -

How to create the hotel:

First of all we need to download Xampp, Download Xampp from the link above or your own link, Once you have done this Open XAMPP control panel and run apache and MySQL
Now go to and set your password (You must remember this Passoword)
after you have set your password go to and log in (Your password is the password you setup 1 step ago)

Now create A database and call it 'del_revcms' once you have created this database
Extract Your phoenix Emulator to your desktop and return to
now once your on your database Click the 'Import' Tab and Choose file.
Locate your Pheonix Emulator file and Open the 3.7.1 SQL
Now click go, If you cannot see the tables reload the page.

Extract your RevCMS to c:/xampp/htdocs/->
Once this is complete go to app/manangement and edit Config with Notepad++ along the lines of this

PHP:
<?php
if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }
#Please fill this all out.

#NOTE: To set up TheHabbos.ORG's API go to wwwroot/mysite/thehabbos_api for IIS, OR, htdocs/thehabbos_api for XAMPP and others.

/*
*
*    MySQL management
*
*/

$_CONFIG['mysql']['connection_type'] = 'pconnect'; //Type of connection: It must be connect, or pconnect: if you want a persistent connection.

$_CONFIG['mysql']['hostname'] = 'localhost'; //MySQL host

$_CONFIG['mysql']['username'] = 'root'; //MySQL username

$_CONFIG['mysql']['password'] = 'password you created earlier'; //MySQL password

$_CONFIG['mysql']['database'] = 'del_revcms'; //MySQL database

$_CONFIG['mysql']['port'] = '3306'; //MySQL's port

/*
*
*    Hotel management  - All URLs do not end with an "/"
*
*/

$_CONFIG['hotel']['server_ip'] = 'Hamachi, VPS, or dedi IP'; //IP of VPS/DEDI/etc

$_CONFIG['hotel']['url'] = 'http:// Hamachi, VPS, or dedi IP '; //Does not end with a "/"

$_CONFIG['hotel']['name'] = 'Hotel name'; // Hotel's name

$_CONFIG['hotel']['desc'] = 'Where the Magic Begins!'; //Hotel's description

$_CONFIG['hotel']['email'] = 'helpme@hotmail.co.uk'; //Where the help queries from users are emailed to.@Priv skin

$_CONFIG['hotel']['in_maint'] = false; //False if hotel is NOT in maintenance. True if hotel IS in maintenance

$_CONFIG['hotel']['motto'] = 'Motto users will register with' ; //Default motto users will register with.

$_CONFIG['hotel']['credits'] = 5000; //Default number of credits users will register with.

$_CONFIG['hotel']['pixels'] = 10000; //Default number of pixels users will register with.

$_CONFIG['hotel']['figure'] = '-'; //Default figure users will register with.

$_CONFIG['hotel']['web_build'] = '63_1dc60c6d6ea6e089c6893ab4e0541ee0/1285'; //Web_Build

$_CONFIG['hotel']['external_vars'] = 'http:// Hamachi, VPS, or dedi IP /r63/external_variables.txt'; //URL to your external vars

$_CONFIG['hotel']['external_texts'] = 'http:// Hamachi, VPS, or dedi IP /r63/external_flash_texts.txt'; //URL to your external texts

$_CONFIG['hotel']['product_data'] = 'http:// Hamachi, VPS, or dedi IP /r63/productdata.txt'; //URL to your productdata

$_CONFIG['hotel']['furni_data'] = 'http:// Hamachi, VPS, or dedi IP /r63/furnidata.txt'; //URL to your furnidata

$_CONFIG['hotel']['swf_folder'] = 'http:// Hamachi, VPS, or dedi IP /r63/'; //URL to your SWF folder(does not end with a '/')

/*
*
*    Templating management - Pick one of our default styles or make yours by following our examples!
*
*/

#RevCMS has 2 default styles, 'Mango' by dannyy94 and 'Priv' by joopie - Others styles are to come, such as RastaLulz's ProCMS style and Nominal's PhoenixCMS 4.0 style.

$_CONFIG['template']['style'] = 'Habbo';

/*
*
*    Other topsites.. thing
*
*/

$_CONFIG['thehabbos']['username'] = 'Kryptos';
$_CONFIG['retro_top']['user'] = 'Kryptos';

/*
*
*    Recaptcha management - Fill the information below if you have one, else leave it like that and don't worry, be happy.
*
*/

$_CONFIG['recaptcha']['priv_key'] = '6LcZ58USAAAAABSV5px9XZlzvIPaBOGA6rQP2G43';
$_CONFIG['recaptcha']['pub_key'] = '6LcZ58USAAAAAAQ6kquItHl4JuTBWs-5cSKzh6DD';


/*
*
*    Social Networking stuff
*
*/

$_CONFIG['social']['twitter'] = 'TwitterAccount'; //Hotel's Twitter account

$_CONFIG['social']['facebook'] = 'FacebookAccount'; //Hotel's Facebook account

?>

Once you have done this Save and go to and if your index loads register
Now Locate your Phoenix Emulator file and edit config.conf with notepad++ to something along the lines of this

PHP:
## Phoenix 3.0 System Configuration File

## Licence Information
**************.username=JayPwnsAll
**************.password=Rulez

## MySQL Configuration
db.hostname=localhost
db.port=3306
db.username=root
db.password=password you set earlier
db.name=del_revcms

## MySQL pooling setup (controls amount of connections)
db.pool.minsize=5
db.pool.maxsize=100

## Game TCP/IP Configuration
game.tcp.bindip=hamachi, VPS, or dedi ip
game.tcp.port=30000
game.tcp.conli
mit=5000

## Client configuration
client.ping.enabled=1
client.ping.interval=30000

## MUS TCP/IP Configuration
mus.tcp.bindip=hamachi, VPS, or dedi ip
mus.tcp.port=30001
mus.tcp.allowedaddr=hamachi, VPS, or dedi ip

## Console Configuration
emu.messages.connections=1
emu.messages.roommgr=1
Save and run your emulator if it loads carry on, if not re read steps.

Now for your client to work you will need to edit your swfs so,
Extract your swfs you downloaded 'r63' to c:/xampp/htdocs/->
and find External_variables.txt, once you find this edit it with Notepad++
Once you open it on Notepad Find 'YOURHOTELIP' highlight it and hold ctrl+h and replace it with your hamachi, VPS, or dedi ip

Run your emulator once again and go to and go on your client like this->
Other users will go on your hotel with the ip you used.


Errors that can happen:
If you get Unkown column 'seckey' in 'field list' while registering add the following query to your MySQL Database By going to your hotel database and clicking SQL
PHP:
ALTER TABLE `users` ADD `seckey` VARCHAR(999)

Any other things i have missed out or is wrong please tell me so i can improve

Thanks for reading this Tutorial, Enjoy your hotel for whoever it was Successful



Credits:
Me - 10% For tut
Kryptos - 50% for RevCMS 1.9.9.9
KidRamboDubsteps - 40% for Working Swfs

By John(Helpmeimane)
 
Initiate Mage
Joined
Jan 10, 2013
Messages
8
Reaction score
0
My Emulator doesnt seem to find a host. I got a timezone error on frontpage and my client just stays blach pitch when my hotel tries to load. How can I fix this? Or how can I update my emulator without srewing up y localhost and sql?

Man the sql keeps on loading ( importing) it wont finish. Then I reloaded page and theres not even half of it onmy myadmin now. Whats worong with the sql?

On the tabs of the sql all that is under Texts ( users and so on) wont appear on the tabs. Dies the sql file has something wrong?
 
Initiate Mage
Joined
Dec 28, 2012
Messages
7
Reaction score
0
I did everything as you said but when i open client it says Object not found!at localhost/api.php
 
Initiate Mage
Joined
May 2, 2012
Messages
1
Reaction score
0
What the!, this is from alldevhelp.com/retro.html
D:< aren't you like, stealing TUT???
 
Status
Not open for further replies.
Back
Top