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 R63 Retro [TUT]

Status
Not open for further replies.
Junior Spellweaver
Joined
May 7, 2009
Messages
169
Reaction score
46
Firstly Lets start off with the downloads.
If you don't know how to download this isn't the right place for you.



Things you'll need through the tutorial:


uberCMS Change the style: PrivilegeCMS



uberEmulator R63+ Breakz0nes Edit

EDIT: MAKE SURE YOU DOWNLOAD MYSQL CONNECTOR NET OTHERWISE THE EMULATOR WILL NOT WORK!
Additional
Please note if you are going to port forward please ignore this,
if not download:
Installing Xampp
Right, Now lets start off by downloading xampp.

rory129 - [TUT] How to make a R63 Retro [TUT] - RaGEZONE Forums

When xampp pops up press next.
rory129 - [TUT] How to make a R63 Retro [TUT] - RaGEZONE Forums

Check to see if you have the required space, you can check this by going to 'computer'.
rory129 - [TUT] How to make a R63 Retro [TUT] - RaGEZONE Forums

Then click install, This might take some time.
Whilst thats downloading we download Msql Connector.

rory129 - [TUT] How to make a R63 Retro [TUT] - RaGEZONE Forums

A installation pop-up will appear press next.
rory129 - [TUT] How to make a R63 Retro [TUT] - RaGEZONE Forums

There will be 3 options pick the first one 'Typical'.
rory129 - [TUT] How to make a R63 Retro [TUT] - RaGEZONE Forums

Then select 'install'.

By now xampp would be installed. If not don't worry just wait till it has finished.

Now head over to Your localhost,
Choose your language.
You should then be on a page looking like this:

rory129 - [TUT] How to make a R63 Retro [TUT] - RaGEZONE Forums

Now you want to click 'Security'.
Then you should see a page and it will have a underlined link on it. Click that the page should be looking somthing like this.

rory129 - [TUT] How to make a R63 Retro [TUT] - RaGEZONE Forums

On the black outlined boxes Enter a password.
in the second box enter your password yet again.

Installing the Content management system
Now lets head over to htdocs. If you don't know where that is
Code:
c:/xampp/htdocs

When you are in htdocs, delete everything.
Now we have the htdocs empty we want to find the Cms we download earlier and simply extract them to c:/xampp/htdocs Using WinRAR, when done close WinRAR Now in htdocs look for a file called 'includes' then look for a file called 'inc-config' Edit the details matching your suitable needs. When done simply save it and close. Confused let me show you.

PHP:
<?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
| http://www.meth0d.org
| #######################################################################
| 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.
\======================================================================*/

$config['Site']['twitter_name'] = "MeetHotel";
$config['Site']['hotel_name'] = "Habbo";
$config['Site']['www'] = "http://HAMACHI IP OR YOUR IP";
$config['Site']['hash_secret'] = "xCg532%@%gdvf^5DGaa6&*rFTfg^FD4\$OIFThrR_gh(ugf*/";

$config['MySQL']['hostname'] = "localhost";
$config['MySQL']['username'] = "root";
$config['MySQL']['password'] = "You Password you made earlier";
$config['MySQL']['database'] = "db";

$config['Game']['ip'] = "Hamachi ip or Your ip";
$config['Game']['port'] = 7575;

$config['MUS']['enabled'] = true;
$config['MUS']['ip'] = "127.0.0.1";
$config['MUS']['port'] = 6565;
?>

Setting up the Database.

Firstly open up your internet e.g. Google Chrome, in the url box at the top type in 'http://localhost/phpmyadmin'
When done, A Box should appear sign:


Code:
[SIZE="3"]Username: root

[SIZE="2"]Password: The one you set earlier[/SIZE]
Then press 'Log-in or sign in'.
We are going to be using the database that was on the thread in 'breakzones v3 edit'.
Now create a db called 'db' No capitalization otherwise it will not config rightly with your Emu or site.
When you have created a db Click import. then go find the db
Most likely called Uberdata.sql or something like that.
Then see a tab called 'MYSQL' Click it and copy&paste this code
Code:
ALTER TABLE `site_config` ADD `web_build` VARCHAR( 255 ) NOT NULL;

INSERT INTO `site_cron` (`id`, `prio`, `enabled`, `scriptfile`, `last_exec`, `exec_every`) VALUES
(6, 5, '1', 'webbuild.php', 1304513524, 7200);
Then click 'GO'.

we are now finished setting up the database[/SIZE]

Setting up the emulator


Firstly, find your emulator. then click it, there should be a file called 'Config' Edit that with any text formed program.

Its just like setting up the previous file called 'inc-config' Because all we are doing is entering the ports and ips from your previous configuration file and no you cannot just copy and paste it from that file as it may not work happpy days :).
Once you have set up the config file then you want to goto bin/release/ the fire icon click it twice.
We have now successfully set up the emulator.

Head over to your site done.
This is my first tutorial. I've never made one like this but here it is if i missed out any atall please tell me.


Credits to : Pejump2 (Cms) Meth0d (Uber) Breakzone (Emulator & Db).


Don't forget to hit 'Like' button if it helped.

And questions or need help leave a Message or add my msn roryellison@hotmail.co.uk

IMPORTANT FOUND A FIX FOR THE EMULATOR! ALL THIS FILE TO UBER > BIN > RELEASE. IM 99% Sure it will work it worked on me,
-Rory
 
Last edited:
Initiate Mage
Joined
Jun 4, 2011
Messages
3
Reaction score
0
I have a problem,
when I open Uber, it says that it can't find the file.
I doesn't say which file..
Maby I did something wrong with the config files?! :eek:
Could you explain what to enter into the last config files (from the emulator)?
Sorry, I'm kinda noob! But great tut! :D
 
Junior Spellweaver
Joined
May 7, 2009
Messages
169
Reaction score
46
Ermm what are you actully entering client,website ?
 
Initiate Mage
Joined
Jun 4, 2011
Messages
3
Reaction score
0
Ermm what are you actully entering client,website ?

I'm trying to open Uber > Bin > Release > Uber (application).
It's shows a black screen with white text and it says that it can't find some kind of file.
But, which config file do you have to change?
Uber > Config or Uber > Bin > Release > Config

Sorry about my bad english :p
 
Junior Spellweaver
Joined
May 7, 2009
Messages
169
Reaction score
46
Change the config file in Uber > and the one in debug, i also think its saying cannot find msql.ini
 
Initiate Mage
Joined
Jun 4, 2011
Messages
3
Reaction score
0
Change the config file in Uber > and the one in debug, i also think its saying cannot find msql.ini

It's still doing it, maby you could help me with teamviewer or messenger? :eek:
 
Junior Spellweaver
Joined
May 7, 2009
Messages
169
Reaction score
46
Hmm well, add my msn located at the bottom of this tutorial.

---------- Post added at 08:09 AM ---------- Previous post was at 07:38 AM ----------

Going to play some black ops any questions or if you need help email me roryellison@hotmail.co.uk
 
Newbie Spellweaver
Joined
Apr 7, 2011
Messages
23
Reaction score
0
help me to everytime i go on my site my ip or localhost it says could not connect load?
 
Last edited:
Initiate Mage
Joined
Jul 8, 2009
Messages
2
Reaction score
0
U need to download MySQL Connecter 6.3.5 =
 
Last edited:
Newbie Spellweaver
Joined
Mar 31, 2007
Messages
33
Reaction score
0
nice, erverything works, I can make a new user and ervything but I can't get in the hotel, I run the: Uber\bin\Release and I have changed the config.ini but I got an error with; can't find mysql.data versiion 6.3.5 etc..

I have installed the newest: mysql connector..
 
Junior Spellweaver
Joined
May 7, 2009
Messages
169
Reaction score
46
Hmm. ill post a new emulator.

---------- Post added at 01:41 PM ---------- Previous post was at 01:38 PM ----------

Dont forget to hit that like button :D
 
Junior Spellweaver
Joined
May 7, 2009
Messages
169
Reaction score
46
nice, erverything works, I can make a new user and ervything but I can't get in the hotel, I run the: Uber\bin\Release and I have changed the config.ini but I got an error with; can't find mysql.data versiion 6.3.5 etc..

I have installed the newest: mysql connector..

Make sure its msql connector NET

I Installed it, worked first time so i dont see the problem :S

---------- Post added at 04:59 AM ---------- Previous post was at 04:21 AM ----------

Going offline need help add my email roryellison@hotmail.co.uk
 
Junior Spellweaver
Joined
May 7, 2009
Messages
169
Reaction score
46
Hmm, lawl, i have windows 7 and i did everything obv, and it works >.<

---------- Post added at 12:55 AM ---------- Previous post was at 12:55 AM ----------

Try this older version
 
Newbie Spellweaver
Joined
Feb 14, 2011
Messages
34
Reaction score
0
Lol, which thread are the Breakzone database something? I can't see it.

Sorry for bad english.
 
Junior Spellweaver
Joined
May 7, 2009
Messages
169
Reaction score
46
Here Rory Ellison says
My mate starts his emu he has mysql connector .NET And it says unable to find mysql.data do u know a fix?
Nathan . says
MySQL isn't installed then
Rory Ellison says
Hmm
thats what i say.
 
Status
Not open for further replies.
Back
Top