Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Tutorials
[TUT] How to create a RevCMS Retro [TUT]
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="xXLesterXx" data-source="post: 163179" data-attributes="member: 15815"><p>Downloads:</p><p> </p><p><strong>XAMPP:</strong> <a href="http://www.oldapps.com/xampp.php?old_xampp=6586" target="_blank">Click Me!</a></p><p><strong>RevCMS:</strong> <a href="http://cloud.rastalulz.com/2k2U463N1r2f0A0P2Q0H" target="_blank">Click Me!</a></p><p><strong>WinRAR:</strong> <a href="http://download.cnet.com/WinRAR-32-bit/3000-2250_4-10007677.html" target="_blank">Click Me!</a></p><p><strong>Notepad ++:</strong> <a href="http://notepad-plus-plus.org/download/v6.0.html" target="_blank">Click Me!</a></p><p><strong>KidRamboDubstep's SWF Pack:</strong> <a href="http://www.mediafire.com/?cstupi0ay5s2vtv" target="_blank">Click Me!</a></p><p><strong>Phoenix Emulator:</strong> Buy or use a cracked version. [Recommend Buying]</p><p> </p><p>Ok, Let's begin.</p><p> </p><p>Step 1: Install XAMPP.</p><p> </p><p>Step 2: After Installing XAMPP, Open XAMPP Control Panel.</p><p> </p><p>Step 3: Start "Apache" and "MySQL".</p><p> </p><p>Step 4: Go to " <strong>localhost/security/xamppsecurity.php</strong> "</p><p> </p><p>Step 5: Setup a password then save it. [Tip: Make sure its hard to guest but easy to remember.]</p><p> </p><p>Step 6: Go to " <strong>localhost/phpmyadmin</strong> " then Login, Username is "Root" then the password is the password you set earlier.</p><p> </p><p>Step 7: Click database, Create a database name it rev_cms or choose any name you want then save.</p><p> </p><p>Step 8: Click the database you created then click Import.</p><p> </p><p>Step 9: Click "Choose file" then find the .sql file in the Phoenix Emulator then upload it.</p><p> </p><p>Step 10: Go to desktop then make a folder called "Habbo Retro" then extract the RevCMS .rar file.</p><p> </p><p>Step 11: Go To xampp>htdocs then delete everything inside the htdocs folder.</p><p> </p><p>Step 12: Extract the RevCMS .rar file in the "htdocs" folder.</p><p> </p><p>Step 13: Extract the SWF in the htdocs.</p><p> </p><p>Step 14: Click app>management>config.php, Open it with Notepad ++</p><p> </p><p> </p><p>Change this </p><p>[CODE]$_CONFIG['mysql']['connection_type'] = 'pconnect'; //Type of connection: It must be connect, or pconnect: if you want a persistent connection.</p><p> </p><p>$_CONFIG['mysql']['hostname'] = 'localhost'; //MySQL host</p><p> </p><p>$_CONFIG['mysql']['username'] = 'root'; //MySQL username</p><p> </p><p>$_CONFIG['mysql']['password'] = 'root'; //MySQL password</p><p> </p><p>$_CONFIG['mysql']['database'] = 'rev_phoenix'; //MySQL database</p><p> </p><p>$_CONFIG['mysql']['port'] = '3306'; //MySQL's port[/CODE]</p><p> </p><p>To this</p><p>[CODE]$_CONFIG['mysql']['connection_type'] = 'pconnect'; //Type of connection: It must be connect, or pconnect: if you want a persistent connection.</p><p> </p><p>$_CONFIG['mysql']['hostname'] = 'localhost'; //MySQL host</p><p> </p><p>$_CONFIG['mysql']['username'] = 'root'; //MySQL username</p><p> </p><p>$_CONFIG['mysql']['password'] = 'Phpmyadmin password you created earlier'; //MySQL password</p><p> </p><p>$_CONFIG['mysql']['database'] = 'Database name you created earlier'; //MySQL database</p><p> </p><p>$_CONFIG['mysql']['port'] = '3306'; //MySQL's port[/CODE]</p><p> </p><p>And This</p><p>[CODE]$_CONFIG['hotel']['server_ip'] = '124.234.68.43'; //IP of VPS/DEDI/etc</p><p> </p><p>$_CONFIG['hotel']['url'] = 'http://localhost/RevCMSold'; //Does not end with a "/"</p><p> </p><p>$_CONFIG['hotel']['name'] = 'Habbo'; // Hotel's name</p><p> </p><p>$_CONFIG['hotel']['desc'] = 'Best hotel around!'; //Hotel's description</p><p> </p><p>$_CONFIG['hotel']['email'] = 'help@myhotel.net'; //Where the help queries from users are emailed to.@Priv skin</p><p> </p><p>$_CONFIG['hotel']['in_maint'] = false; //False if hotel is NOT in maintenance. True if hotel IS in maintenance</p><p> </p><p>$_CONFIG['hotel']['motto'] = 'I <3 ' . $_CONFIG['hotel']['name']; //Default motto users will register with.</p><p> </p><p>$_CONFIG['hotel']['credits'] = 5000; //Default number of credits users will register with.</p><p> </p><p>$_CONFIG['hotel']['pixels'] = 10000; //Default number of pixels users will register with[/CODE]</p><p> </p><p>To this:</p><p>[CODE]$_CONFIG['hotel']['server_ip'] = 'Hamachi IP, IP, VPS, Dedi'; //IP of VPS/DEDI/etc</p><p> </p><p>$_CONFIG['hotel']['url'] = 'http://YOURHOTELLINK/'; //Does not end with a "/"</p><p> </p><p>$_CONFIG['hotel']['name'] = 'Your hotel name'; // Hotel's name</p><p> </p><p>$_CONFIG['hotel']['desc'] = 'Best hotel around!'; //Hotel's description</p><p> </p><p>$_CONFIG['hotel']['email'] = 'help@myhotel.net'; //Where the help queries from users are emailed to.@Priv skin</p><p> </p><p>$_CONFIG['hotel']['in_maint'] = false; //False if hotel is NOT in maintenance. True if hotel IS in maintenance</p><p> </p><p>$_CONFIG['hotel']['motto'] = 'I <3 ' . $_CONFIG['hotel']['name']; //Default motto users will register with.</p><p> </p><p>$_CONFIG['hotel']['credits'] = 5000; //Default number of credits users will register with.</p><p> </p><p>$_CONFIG['hotel']['pixels'] = 10000; //Default number of pixels users will register with[/CODE]</p><p> </p><p>And this</p><p>[CODE]$_CONFIG['hotel']['figure'] = '-'; //Default figure users will register with.</p><p> </p><p>$_CONFIG['hotel']['web_build'] = '63_1dc60c6d6ea6e089c6893ab4e0541ee0/527'; //Web_Build</p><p> </p><p>$_CONFIG['hotel']['external_vars'] = 'http://localhost/RevCMS/r63/external_vars.txt'; //URL to your external vars</p><p> </p><p>$_CONFIG['hotel']['external_texts'] = 'http://localhost/RevCMS/r63//external_texts.txt'; //URL to your external texts</p><p> </p><p>$_CONFIG['hotel']['product_data'] = 'http://localhost/RevCMS/r63/productdata.txt'; //URL to your productdata</p><p> </p><p>$_CONFIG['hotel']['furni_data'] = 'http://localhost/RevCMS/r63/furnidata.txt'; //URL to your furnidata</p><p> </p><p>$_CONFIG['hotel']['swf_folder'] = 'http://localhost/RevCMS/r63/'; //URL to your SWF folder(does not end with a '/')[/CODE]</p><p> </p><p>To this</p><p>[CODE]$_CONFIG['hotel']['figure'] = 'hd-180-1.ch-210-66.lg-270-82.sh-290-91.hr-100'; //Default figure users will register with.</p><p> </p><p>$_CONFIG['hotel']['web_build'] = '63_1dc60c6d6ea6e089c6893ab4e0541ee0/[SIZE=4][FONT=monospace][COLOR=#000000]1201[/COLOR][/FONT][/SIZE]'; //Web_Build</p><p> </p><p>$_CONFIG['hotel']['external_vars'] = 'http://YOURIP/r63/external_variables.txt'; //URL to your external vars</p><p> </p><p>$_CONFIG['hotel']['external_texts'] = 'http://YOURIP/r63//external_flash_texts.txt'; //URL to your external texts</p><p> </p><p>$_CONFIG['hotel']['product_data'] = 'http://YOURIP/r63/productdata.txt'; //URL to your productdata</p><p> </p><p>$_CONFIG['hotel']['furni_data'] = 'http://YOURIP/r63/furnidata.txt'; //URL to your furnidata</p><p> </p><p>$_CONFIG['hotel']['swf_folder'] = 'http://YOURIP/r63'; //URL to your SWF folder(does not end with a '/')</p><p>[/CODE]</p><p> </p><p>Then save it!</p><p> </p><p> </p><p>Configuring your Emulator:</p><p> </p><p>Step 1: Open config.conf with Notepad ++</p><p> </p><p>This will pop-up</p><p>[CODE]## Phoenix 3.0 Cracked System Configuration File</p><p> </p><p>## Licence Information</p><p>*****.username=Lester</p><p>*****.password=*****</p><p> </p><p>## MySQL Configuration</p><p>db.hostname=localhost</p><p>db.port=3306</p><p>db.username=root</p><p>db.password=PhpMyAdmin Password</p><p>db.name=Database Password</p><p> </p><p>## MySQL pooling setup (controls amount of connections)</p><p>db.pool.minsize=5</p><p>db.pool.maxsize=30</p><p> </p><p>## Game TCP/IP Configuration</p><p>game.tcp.bindip= Hamachi IP, Or VPS</p><p>game.tcp.port=30000</p><p>game.tcp.conlimit=5000</p><p> </p><p>## Client configuration</p><p>client.ping.enabled=1</p><p>client.ping.interval=30000</p><p> </p><p>## MUS TCP/IP Configuration</p><p>mus.tcp.bindip= Hamachi IP,I Or VPS</p><p>mus.tcp.port=30001</p><p>mus.tcp.allowedaddr= Hamachi IP, Or VPS</p><p> </p><p>## Console Configuration</p><p>emu.messages.connections=1</p><p>emu.messages.roommgr=1</p><p>## Doesn't Get rid of all startup messages, there's like 4 remaining!</p><p>emu.messages.startup=0</p><p>[/CODE]</p><p> </p><p>Step 2: Save it.</p><p> </p><p> </p><p>If you can't register</p><p> </p><p>Go to your Database then click SQL then put this code</p><p>[CODE] ALTER TABLE `users` ADD `seckey` VARCHAR(999)[/CODE]</p><p> </p><p>Then save it</p><p> </p><p>Last thing</p><p> </p><p>Go to PhpMyAdmin then open the Database you create then click "users" or "user" find your Username then find the column named rank then set the rank to 7 so your the hotel owner</p><p> </p><p>Save it!</p><p> </p><p>Then open Phoenix Emulator!</p><p>Now You're done!!</p><p> </p><p>Any Problems?</p><p>Just comment it <img src="/styles/default/xenforo/smilies/emojione/smile.png" class="smilie" loading="lazy" alt=":)" title="Smile :)" data-shortname=":)" /></p></blockquote><p></p>
[QUOTE="xXLesterXx, post: 163179, member: 15815"] Downloads: [B]XAMPP:[/B] [URL='http://www.oldapps.com/xampp.php?old_xampp=6586']Click Me![/URL] [B]RevCMS:[/B] [URL='http://cloud.rastalulz.com/2k2U463N1r2f0A0P2Q0H']Click Me![/URL] [B]WinRAR:[/B] [URL='http://download.cnet.com/WinRAR-32-bit/3000-2250_4-10007677.html']Click Me![/URL] [B]Notepad ++:[/B] [URL='http://notepad-plus-plus.org/download/v6.0.html']Click Me![/URL] [B]KidRamboDubstep's SWF Pack:[/B] [URL='http://www.mediafire.com/?cstupi0ay5s2vtv']Click Me![/URL] [B]Phoenix Emulator:[/B] Buy or use a cracked version. [Recommend Buying] Ok, Let's begin. Step 1: Install XAMPP. Step 2: After Installing XAMPP, Open XAMPP Control Panel. Step 3: Start "Apache" and "MySQL". Step 4: Go to " [B]localhost/security/xamppsecurity.php[/B] " Step 5: Setup a password then save it. [Tip: Make sure its hard to guest but easy to remember.] Step 6: Go to " [B]localhost/phpmyadmin[/B] " then Login, Username is "Root" then the password is the password you set earlier. Step 7: Click database, Create a database name it rev_cms or choose any name you want then save. Step 8: Click the database you created then click Import. Step 9: Click "Choose file" then find the .sql file in the Phoenix Emulator then upload it. Step 10: Go to desktop then make a folder called "Habbo Retro" then extract the RevCMS .rar file. Step 11: Go To xampp>htdocs then delete everything inside the htdocs folder. Step 12: Extract the RevCMS .rar file in the "htdocs" folder. Step 13: Extract the SWF in the htdocs. Step 14: Click app>management>config.php, Open it with Notepad ++ Change this [CODE]$_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'] = 'root'; //MySQL password $_CONFIG['mysql']['database'] = 'rev_phoenix'; //MySQL database $_CONFIG['mysql']['port'] = '3306'; //MySQL's port[/CODE] To this [CODE]$_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'] = 'Phpmyadmin password you created earlier'; //MySQL password $_CONFIG['mysql']['database'] = 'Database name you created earlier'; //MySQL database $_CONFIG['mysql']['port'] = '3306'; //MySQL's port[/CODE] And This [CODE]$_CONFIG['hotel']['server_ip'] = '124.234.68.43'; //IP of VPS/DEDI/etc $_CONFIG['hotel']['url'] = 'http://localhost/RevCMSold'; //Does not end with a "/" $_CONFIG['hotel']['name'] = 'Habbo'; // Hotel's name $_CONFIG['hotel']['desc'] = 'Best hotel around!'; //Hotel's description $_CONFIG['hotel']['email'] = 'help@myhotel.net'; //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'] = 'I <3 ' . $_CONFIG['hotel']['name']; //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[/CODE] To this: [CODE]$_CONFIG['hotel']['server_ip'] = 'Hamachi IP, IP, VPS, Dedi'; //IP of VPS/DEDI/etc $_CONFIG['hotel']['url'] = 'http://YOURHOTELLINK/'; //Does not end with a "/" $_CONFIG['hotel']['name'] = 'Your hotel name'; // Hotel's name $_CONFIG['hotel']['desc'] = 'Best hotel around!'; //Hotel's description $_CONFIG['hotel']['email'] = 'help@myhotel.net'; //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'] = 'I <3 ' . $_CONFIG['hotel']['name']; //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[/CODE] And this [CODE]$_CONFIG['hotel']['figure'] = '-'; //Default figure users will register with. $_CONFIG['hotel']['web_build'] = '63_1dc60c6d6ea6e089c6893ab4e0541ee0/527'; //Web_Build $_CONFIG['hotel']['external_vars'] = 'http://localhost/RevCMS/r63/external_vars.txt'; //URL to your external vars $_CONFIG['hotel']['external_texts'] = 'http://localhost/RevCMS/r63//external_texts.txt'; //URL to your external texts $_CONFIG['hotel']['product_data'] = 'http://localhost/RevCMS/r63/productdata.txt'; //URL to your productdata $_CONFIG['hotel']['furni_data'] = 'http://localhost/RevCMS/r63/furnidata.txt'; //URL to your furnidata $_CONFIG['hotel']['swf_folder'] = 'http://localhost/RevCMS/r63/'; //URL to your SWF folder(does not end with a '/')[/CODE] To this [CODE]$_CONFIG['hotel']['figure'] = 'hd-180-1.ch-210-66.lg-270-82.sh-290-91.hr-100'; //Default figure users will register with. $_CONFIG['hotel']['web_build'] = '63_1dc60c6d6ea6e089c6893ab4e0541ee0/[SIZE=4][FONT=monospace][COLOR=#000000]1201[/COLOR][/FONT][/SIZE]'; //Web_Build $_CONFIG['hotel']['external_vars'] = 'http://YOURIP/r63/external_variables.txt'; //URL to your external vars $_CONFIG['hotel']['external_texts'] = 'http://YOURIP/r63//external_flash_texts.txt'; //URL to your external texts $_CONFIG['hotel']['product_data'] = 'http://YOURIP/r63/productdata.txt'; //URL to your productdata $_CONFIG['hotel']['furni_data'] = 'http://YOURIP/r63/furnidata.txt'; //URL to your furnidata $_CONFIG['hotel']['swf_folder'] = 'http://YOURIP/r63'; //URL to your SWF folder(does not end with a '/') [/CODE] Then save it! Configuring your Emulator: Step 1: Open config.conf with Notepad ++ This will pop-up [CODE]## Phoenix 3.0 Cracked System Configuration File ## Licence Information *****.username=Lester *****.password=***** ## MySQL Configuration db.hostname=localhost db.port=3306 db.username=root db.password=PhpMyAdmin Password db.name=Database Password ## MySQL pooling setup (controls amount of connections) db.pool.minsize=5 db.pool.maxsize=30 ## Game TCP/IP Configuration game.tcp.bindip= Hamachi IP, Or VPS game.tcp.port=30000 game.tcp.conlimit=5000 ## Client configuration client.ping.enabled=1 client.ping.interval=30000 ## MUS TCP/IP Configuration mus.tcp.bindip= Hamachi IP,I Or VPS mus.tcp.port=30001 mus.tcp.allowedaddr= Hamachi IP, Or VPS ## Console Configuration emu.messages.connections=1 emu.messages.roommgr=1 ## Doesn't Get rid of all startup messages, there's like 4 remaining! emu.messages.startup=0 [/CODE] Step 2: Save it. If you can't register Go to your Database then click SQL then put this code [CODE] ALTER TABLE `users` ADD `seckey` VARCHAR(999)[/CODE] Then save it Last thing Go to PhpMyAdmin then open the Database you create then click "users" or "user" find your Username then find the column named rank then set the rank to 7 so your the hotel owner Save it! Then open Phoenix Emulator! Now You're done!! Any Problems? Just comment it :) [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Tutorials
[TUT] How to create a RevCMS Retro [TUT]
Top