Techie
Member
- Aug 22, 2012
- 129
- 6
[TUT] How to Make A RevCMS Habbo Retro Noob Friendly [TUT]
http://*****.com/sponsorbanners/default/300250.png
Hello Guys, welcome to my first tutorial on *****
We will be creating a RevCMS hotel so hope it turns out well Enjoy!
Downloads:
Xampp 1.7.3 -
RevCMS -
Phoenix Emulator -
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
after you have set your password go to
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 Code:
<?phpif(!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'] = '[email protected]'; //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
Now Locate your Phoenix Emulator file and edit config.conf with notepad++ to something along the lines of this
PHP Code:
## Phoenix 3.0 System Configuration File
## Licence Information**************.username=JayPwnsAll**************.password=Rulez
## MySQL Configurationdb.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 Configurationgame.tcp.bindip=hamachi, VPS, or dedi ip
game.tcp.port=30000
game.tcp.conli
mit=5000
## Client configurationclient.ping.enabled=1
client.ping.interval=30000
## MUS TCP/IP Configurationmus.tcp.bindip=hamachi, VPS, or dedi ip
mus.tcp.port=30001
mus.tcp.allowedaddr=hamachi, VPS, or dedi ip
## Console Configurationemu.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
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 Code:
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
We will be creating a RevCMS hotel so hope it turns out well Enjoy!
Downloads:
Xampp 1.7.3 -
You must be registered for see links
RevCMS -
You must be registered for see links
Phoenix Emulator -
You must be registered for see links
or (Recommened) Buy Phoenix License.Kidrambodubsteps SWF'S -
You must be registered for see links
Notepad++ -
You must be registered for see links
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
You must be registered for see links
and set your password (You must remember this Passoword)after you have set your password go to
You must be registered for see links
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
You must be registered for see links
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 Code:
<?phpif(!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'] = '[email protected]'; //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
You must be registered for see links
and if your index loads registerNow Locate your Phoenix Emulator file and edit config.conf with notepad++ to something along the lines of this
PHP Code:
## Phoenix 3.0 System Configuration File
## Licence Information**************.username=JayPwnsAll**************.password=Rulez
## MySQL Configurationdb.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 Configurationgame.tcp.bindip=hamachi, VPS, or dedi ip
game.tcp.port=30000
game.tcp.conli
mit=5000
## Client configurationclient.ping.enabled=1
client.ping.interval=30000
## MUS TCP/IP Configurationmus.tcp.bindip=hamachi, VPS, or dedi ip
mus.tcp.port=30001
mus.tcp.allowedaddr=hamachi, VPS, or dedi ip
## Console Configurationemu.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
You must be registered for see links
and go on your client like this->
You must be registered for see links
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 Code:
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