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!

How To Make A UberCMS Retro! | R63 | New | D/l Links, But No Pics

Status
Not open for further replies.
Newbie Spellweaver
Joined
Oct 31, 2010
Messages
20
Reaction score
0
This is a very quick tutorial on how to make a UberCMS hotel! (You must have read some other tutorials before you can understand this one 100%!)

1) Downloads
- XAMPP 1.7.3
- MySQL Net Connector 6.0.7
- Uber Emulator
- UberCMS
- R59+ SWFs
- Microsoft Visual C# 2010 Express (Provided the download with this download!)

2) Installation
- Install XAMPP
- Install Microsoft Visual C# 2010 Express
- Install MySQL Net Connector 6.0.7

3) Setting Up Uber
- Go to 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'

$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;

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:

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

- 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:

<?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
|
| #######################################################################
| 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 'crimpson_striker@live.com' 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')

Copyright © iPixel, 2010-2011. All rights reserve to there respective owner(s), iPixel. I will upload pictures and download links later on, but for now, I hope this helps?

---------- Post added at 03:36 PM ---------- Previous post was at 03:23 PM ----------

Download links:
MySQL Net Connector(s):
<- Choose the Net Connector You Need
XAMPP 1.7.3:

Microsoft Visual C#:

R63 SWFs (Thanks to PEjump!):




UberCMS:
Sorry, I can't find any that are actually good and working. Why not try searching for em xD
UberEMU Edited by Slaxxer:


---------- Post added at 03:38 PM ---------- Previous post was at 03:36 PM ----------

Credits to SLAXXER and PEJUMP for the download links :D

10% credits to me for the D/l links
And 90% to Slaxxer & PEjump for the links I used
 
Last edited:
Newbie Spellweaver
Joined
Aug 30, 2010
Messages
54
Reaction score
2
Re: How To Make A UberCMS Retro! | No D/L Links/Pictures

I agree with you the UberCMS is really getting hard to find as of lately.I just have an edit i made of it because otherwise it just won't work.
 
Newbie Spellweaver
Joined
Oct 31, 2010
Messages
20
Reaction score
0
Re: How To Make A UberCMS Retro! | No D/L Links/Pictures

I know, its way too hard to find working UberCMS D:!!!
 
Banned
Banned
Joined
Jan 20, 2011
Messages
531
Reaction score
36
Lol at miggs, ur such a noob. Those CMS are poop as LOOOOL
 
Joined
Aug 18, 2010
Messages
315
Reaction score
14
I edit my own ubercms's but the latest emu i think is phoenix 3.0 on otaku. You got to buy an emu but most of everything works. And the CMS is good as well.
 
Banned
Banned
Joined
Jan 20, 2011
Messages
531
Reaction score
36


---------- Post added at 01:59 PM ---------- Previous post was at 01:57 PM ----------

<- R63 Emulator, Holds 2000 users, Stable, Wired Furni Stacking works, n much more!
 
Newbie Spellweaver
Joined
Dec 23, 2010
Messages
11
Reaction score
0
Thanks! Nice TUT!



FobbaCms Released By Shredder(Yonas)

Download link:
 
Newbie Spellweaver
Joined
Dec 30, 2010
Messages
17
Reaction score
1
Or you got to
And get a very nice cms.
The site is maked by bil.
 
Skilled Illusionist
Joined
Oct 22, 2010
Messages
361
Reaction score
34
Pixel...That Cms is one of the best around.You dnt know what you talking about

---------- Post added at 03:51 PM ---------- Previous post was at 03:50 PM ----------



---------- Post added at 01:59 PM ---------- Previous post was at 01:57 PM ----------

<- R63 Emulator, Holds 2000 users, Stable, Wired Furni Stacking works, n much more!

WTF?? the scond one is P$$n and the first one is thetrev14 that fails

---------- Post added at 04:02 PM ---------- Previous post was at 03:51 PM ----------

Norway thats is an awsome site good cms good emus and also good host's
 
Newbie Spellweaver
Joined
Apr 10, 2009
Messages
43
Reaction score
1
Hello i followed the tut, but not sure what to do, what do i put in the daterbase i made ? i try config but that dosent work
 
Initiate Mage
Joined
Feb 4, 2011
Messages
3
Reaction score
0
Cane you help me ?

My XAMPP (APACHE) don't work
 
Initiate Mage
Joined
Feb 5, 2011
Messages
2
Reaction score
0
Cane you help me ?

My XAMPP (APACHE) don't work

I have the same problem :(
First is it skype you most change connection options and your apache will work, let skype not use port 80 - 433!
I hope it helps my XAMPP FIle Zilla not working anymore :?:
 
Banned
Banned
Joined
Jan 20, 2011
Messages
531
Reaction score
36
Ok people, if you get the XAMPP apache error, make sure you have not ticked the bloody check boxes!!!

Try opening this file:
C:\xampp\apache_start.bat
 
Newbie Spellweaver
Joined
Oct 17, 2010
Messages
90
Reaction score
7
actually, the check boxes have nothing to do with it, once you click start whilst them installed or not they will install or start. off topic- you dont "own" harbo hosting, so i shut it down. that was a self coded project for me you just happend to know about. stop saying you own it and now that i have legal documentation i can say you have no right to put that in your signature.
 
Status
Not open for further replies.
Back
Top