[TUT] How to make RP r63b Habbo Retro | IIS | RealityRP 2 |

Did this tut help you?


  • Total voters
    47

peterq123123

Member
Sep 5, 2013
166
14
Hey Guys,
I will show you how to make a RP retro using IIS, and I know this might help alot of you guys.This tutorial was made while using a Windows 2008 Standard Edition R2 VPS!
Before we start, I wanted to give credits to KyleVonnie , for the photos and how to install IIS.


Download Links:
You can find all the links here;

SWF :
DB SQL :
EMU :
CMS :
WinRAR :
MySQL:

Step One :
Credits to KyleVonnie for this part, I copied it directly from his thread!
100% Credits to him for steps 1 - 3!
Install MySQL on your VPS
- Search for "PHP 5" in the search box. Choose any PHP 5.x
glz3Svv.png
- Search for "IIS Recommended Configuration"
mAUZxkb.png
- Next download "URL Rewrite 2.0" . This will be already installed for a lot of you.
QFp495o.png
Step Three:
Go to , you should see a screen similar to below.
soYoFGz.png
- Next, go to C:\inetpub\wwwroot and delete all files that are there.

96CS3lV.png



- Next, Download Winrar from the link above.
- Then Download/Extract the CMS also from the link above.

bhcz.png


Step Four:
- Next, go to C:\inetpub\wwwroot\config.php and open config.php. I suggest using Notepad ++ or Sublime Text.

ehmu.png


Step Five:
Download Navicat Premium :
- On the Top Left, Click Connection. Name it whatever you choose.
- Make sure the username says "Root" and enter your Root Password below that.

GdzMb1o.png


- Click on "Query" then choose "New Query", select "Load".
- Choose the Sql file from the link above.

TabnpYW.png


Step six:
- Go back to ,IP or Domain, you should see this now:

i0UQLFG.png


Step Seven: [SWFS]
- Download the SWF Pack from either the original link or the mirror above.
- Create a folder called swf not swfs!
- Extract the whole folder to /wwwroot/swf.
(THIS WILL TAKE A WHILE)

47r.png


Step Nine:
- Now go to swf> external_variables.
- Press Ctrl + H and type in localhost, IP, or Domain.
- Press Replace All when you are done.

JW86j2x.png


Step Ten:
- Download the Reality Emulator from the link above.
- Extract the folder to your desktop.
- Go to bin> debug> settings> and open configuration.

oowroBK.png


Step Eleven:
Go back to bin>debug> and open Reality Emulator.
- Once loaded, should look like this:

g2zi.png


Step Twelve:
- Register on ,IP ,or Domian and enter the client.
- Congratulations you now own a RP r63b retro! If you did it right. :)

BOT8gze.png


All strings are editable in the locale.ini!

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Credits:
Divde - RealityRP Emu, CMS, SWF, and SQL DB
Kyle - His Tutorial Helped me on IIS, thanks.
Peter - Tut

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Please message me if I missed something, had an error, or need help on anything else!

Thanks,
Peter
 

peterq123123

Member
Sep 5, 2013
166
14
If it says to many connections or an error about mysql follow this:

The default setting for max_connections is 100. You can see what the current setting is by running the following SQL command from the MySQL command line tool, phpMyAdmin, or a similar tool.

Run this SQL Command:
show variables like "max_connections";


This will return a resultset like this, showing you what your current max connections setting is:
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 100 |
+-----------------+-------+


You can change the setting to e.g. 200 by issuing the following command without having to restart the MySQL server (obviously it will only work if the user you are logged in as has sufficient permissions to do this):

set global max_connections = 200;

This will take effect immediately, but will be forgotten the next time MySQL is restarted. To make the change permanent you need to edit the my.cnf configuration file. On CentOS, RedHat and similar distributions this is at /etc/my.cnf; other distros will store it elsewhere.

Under the [mysqld] section add the following setting:

max_connections = 200

Now when you restart MySQL the next time it will use this setting instead of the default.

Note that increasing the number of connections that can be made will increase the potential amount of RAM required for MySQL to run. Increase the max_connections setting with caution!

Made by:
 

Users who are viewing this thread

Top