This is my tut for how to make a R63
Download links:
MySQL Net Connector(s):
XAMPP 1.7.3:
Microsoft Visual C#:
R63 SWFs (Thanks to PEjump!):
TebboCMS:
UberEMU Edited by Slaxxer:
1) Installation
- Install XAMPP
- Install Microsoft Visual C# 2010 Express
- Install MySQL Net Connector 6.0.7
2) Setting Up Uber
- Go to
- Once you have added a password then follow my instructions:
Delete everything in the directory 'Htdocs'
- C:\xampp\htdocs
- And delete everything in there
3-A) Extract your UberCMS into the Htdocs directory and then follow my instructions again:
-Once you have extracted all the files from your UberCMS download then edit the 'inc.config' PHP file
-C:\xampp\htdocs\inc\'inc.config.PHP'
4) Making Your Database
- Go to 'http://localhost/phpmyadmin/' and login with your username 'root' and the password you created earlier
- Once you have created your database, remember to also edit your inc.config file again, so that you have the correct database!
5) Create your user
- Go to your website 'http://localhost' and register an account
- Once you have registered, go to your database, and find the 'Users' table...
- Click on the users table, and you will see a list of users. If not, just your user.
- You will see a pencil or a red 'X', click on the pencil to edit your rank/user info...
- Your users informaiton will load, and you should see stuff like how many credits you have, aboce the credits you will find your 'rank' and it should be '1'
if so, then edit it to make it say '7'. Once you have done that scroll down (if nessicary) and click Go!
6) Edit Some Stuff
- Before you can get onto the hotel you will need to edit some stuff... I will be telling you how to edit PEjump's R63 SWF pack:
- Once you have done that, then save it and look for the 'Externals.php' and edit the websites to your IP... It should something like this:
- Once you have also saved that, edit 'External_Variables.txt' in the C:\xampp\htdocs\gamedata\'External_Variables.txt'
If you are using the IP: 127.0.0.1, then you don't need to edit the IP else edit all the IP's that say 127.0.0.1 to your IP!
7) Last steps of making your hotel
- Run the emulator
- Go to your hotel 'Http://YOURIP/HOTELLINK/' login, and enjoy!
If you are having any troubles with this tutorial, then please contact me '[email protected]' and I will be happy to help... If I am in the mood
Credits For This Tutorial:
iPixel 100%
Uber Credits:
Thanks to Meth0d for creating Uber/Emu/CMS (And also, If I am not correct I think CMS stands for 'Content Management Site')
Download links:
MySQL Net Connector(s):
You must be registered for see links
<- Choose the Net Connector You NeedXAMPP 1.7.3:
You must be registered for see links
xampp for windowsMicrosoft Visual C#:
You must be registered for see links
- Visual Studio Express and SQL Server ExpressR63 SWFs (Thanks to PEjump!):
You must be registered for see links
TebboCMS:
You must be registered for see links
UberEMU Edited by Slaxxer:
You must be registered for see links
1) Installation
- Install XAMPP
- Install Microsoft Visual C# 2010 Express
- Install MySQL Net Connector 6.0.7
2) Setting Up Uber
- Go to
You must be registered for see links
and add a password!- Once you have added a password then follow my instructions:
Delete everything in the directory 'Htdocs'
- C:\xampp\htdocs
- And delete everything in there
3-A) Extract your UberCMS into the Htdocs directory and then follow my instructions again:
-Once you have extracted all the files from your UberCMS download then edit the 'inc.config' PHP file
-C:\xampp\htdocs\inc\'inc.config.PHP'
Code:
$config['Site']['www'] = "http://YOURIP/localhost/127.0.0.1";
$config['Site']['hash_secret'] = "xCg532%@%gdvf^5DGaa6&*rFTfg^FD4\$OIFThrR_gh(ugf*/";
$config['MySQL']['hostname'] = "localhost";
$config['MySQL']['username'] = "root";
$config['MySQL']['password'] = "password you created earlier";
$config['MySQL']['database'] = "this will be your database we are going to create later!";
$config['MUS']['enabled'] = false;
$config['MUS']['ip'] = "YOURIP";
$config['MUS']['port'] = 21;
- Go to 'http://localhost/phpmyadmin/' and login with your username 'root' and the password you created earlier
- Once you have created your database, remember to also edit your inc.config file again, so that you have the correct database!
5) Create your user
- Go to your website 'http://localhost' and register an account
- Once you have registered, go to your database, and find the 'Users' table...
- Click on the users table, and you will see a list of users. If not, just your user.
- You will see a pencil or a red 'X', click on the pencil to edit your rank/user info...
- Your users informaiton will load, and you should see stuff like how many credits you have, aboce the credits you will find your 'rank' and it should be '1'
if so, then edit it to make it say '7'. Once you have done that scroll down (if nessicary) and click Go!
6) Edit Some Stuff
- Before you can get onto the hotel you will need to edit some stuff... I will be telling you how to edit PEjump's R63 SWF pack:
Code:
Extract the R63 SWFs if you have not!
- Edit 'Client.php' $client->SetParam('info_host', '127.0.0.1');
$client->SetParam('info_port', '30000');
- To: $client->SetParam('info_host', 'YOURIP');
$client->SetParam('info_port', '21');
If you cannot find that, then in notepad search for: $client->SetParam / Or scroll to the bottom
Code:
<?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
| Meth0d dot org – stuff goes here
| #######################################################################
| This program is free software: you can redistribute it and/or modify
| it under the terms of the GNU General Public License as published by
| the Free Software Foundation, either version 3 of the License, or
| (at your option) any later version.
| #######################################################################
| This program is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
\======================================================================*/
require_once "global.php";
$id = '';
if (isset($_GET['id']))
{
$id = $_GET['id'];
}
switch ($id)
{
case "external_variables":
echo @file_get_contents("http://YOURIP/gamedata/external_variables.txt");
$get = dbquery("SELECT * FROM external_variables");
while ($ext = mysql_fetch_assoc($get))
{
echo clean($ext['skey']) . '=' . clean($ext['sval'], true) . LB;
}
break;
case "external_flash_texts":
echo @file_get_contents("http://YOURIP/gamedata/external_flash_texts.txt");
$get = dbquery("SELECT * FROM external_texts");
while ($ext = mysql_fetch_assoc($get))
{
echo clean($ext['skey']) . '=' . clean($ext['sval'], true) . LB;
}
break;
}
?>
- Once you have also saved that, edit 'External_Variables.txt' in the C:\xampp\htdocs\gamedata\'External_Variables.txt'
If you are using the IP: 127.0.0.1, then you don't need to edit the IP else edit all the IP's that say 127.0.0.1 to your IP!
7) Last steps of making your hotel
- Run the emulator
- Go to your hotel 'Http://YOURIP/HOTELLINK/' login, and enjoy!
If you are having any troubles with this tutorial, then please contact me '[email protected]' and I will be happy to help... If I am in the mood
Credits For This Tutorial:
iPixel 100%
Uber Credits:
Thanks to Meth0d for creating Uber/Emu/CMS (And also, If I am not correct I think CMS stands for 'Content Management Site')
Code:
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in C:\ijji\Server\xampp\htdocs\index.php on line 23