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!

R63B Pack - SWF - EMU - CMS + EXPLANATION + NEW SCREENS CMS

Status
Not open for further replies.
Initiate Mage
Joined
Dec 26, 2012
Messages
45
Reaction score
15
Hello guys

INFORMATION!
This CMS is Dutch but you can translate it;)

I have for you a r63b habbo system of FHD

What do you get?

- CMS
- SWF's
- 3 Emulator's
Atom EMU
SoundEmulator
Habbolatino Emulator
- Database

Better emulator!!:





What is going on?

- The catalog is not quite finished and lacks some furniture.
- Everything is Dutch only houskeeping not (YOU CAN TRANSLATE IT)
- Horses do it. (You can ride on)

What does not work?

- Games not working.
- Friend Stream does not work.
- Quests do not work
- Groups are not working.

Which CMS is it?
The CMS is HabboPHP the exploits removed. He is also available to R63B.

Which emulator's?
The Emulator consists HabboLatino Emu, ButterStorm, a non ge-edit version of Atom emulator and a ge-editing Atom Emulator.

How are the SWFs?
SWFs are Dutch, and has a Christmas background. (YOU CAN TRANSLATE IT)


INDEX:
JorianJN - R63B Pack - SWF - EMU - CMS + EXPLANATION + NEW SCREENS CMS - RaGEZONE Forums

ME:
JorianJN - R63B Pack - SWF - EMU - CMS + EXPLANATION + NEW SCREENS CMS - RaGEZONE Forums

NEWS:
JorianJN - R63B Pack - SWF - EMU - CMS + EXPLANATION + NEW SCREENS CMS - RaGEZONE Forums

STAFFPAGE:
JorianJN - R63B Pack - SWF - EMU - CMS + EXPLANATION + NEW SCREENS CMS - RaGEZONE Forums

HOUSKEEPING:
JorianJN - R63B Pack - SWF - EMU - CMS + EXPLANATION + NEW SCREENS CMS - RaGEZONE Forums

JorianJN - R63B Pack - SWF - EMU - CMS + EXPLANATION + NEW SCREENS CMS - RaGEZONE Forums

JorianJN - R63B Pack - SWF - EMU - CMS + EXPLANATION + NEW SCREENS CMS - RaGEZONE Forums

JorianJN - R63B Pack - SWF - EMU - CMS + EXPLANATION + NEW SCREENS CMS - RaGEZONE Forums


Setup:

Code:
1. Import all your htdocs / wwwroot (Set the emulator on your bureublad or something but not in htdocs / wwwroot).

2. Import the database.

3. Go to includes / setting.inc.php (fill it in)

4. Go to / r63b

5. Open external_variables.txt and change the IP.

6. Open banner.php (in / r63b) and scroll down until you get there you need to fill mysql.

7. Go to the Emulator.
[COLOR=#ff0000][SIZE=1]   I advise you sound emulator or Atom emulator to use![/SIZE][/COLOR]

8. Go to the bin / debug / settings / configuration

9. Change there anything you should change.

10. Start the Emulator & DONE!


I make a video tuturial!

DOWNLOADS!!! :lol:



If you need help, drop me a message :thumbup1:
Furniture fix remove useritems (query)

Code:
[COLOR=#0000BB]DELIMITER [/COLOR][COLOR=#007700]$$
--
-- [/COLOR][COLOR=#0000BB]Procedures
[/COLOR][COLOR=#007700]--
[/COLOR][COLOR=#0000BB]CREATE DEFINER[/COLOR][COLOR=#007700]=`[/COLOR][COLOR=#DD0000]root[/COLOR][COLOR=#007700]`@`[/COLOR][COLOR=#DD0000]localhost[/COLOR][COLOR=#007700]` [/COLOR][COLOR=#0000BB]PROCEDURE [/COLOR][COLOR=#007700]`[/COLOR][COLOR=#DD0000]getroomitems[/COLOR][COLOR=#007700]`(
[/COLOR][COLOR=#0000BB]IN roomid int[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]10[/COLOR][COLOR=#007700]) [/COLOR][COLOR=#0000BB]unsigned
[/COLOR][COLOR=#007700])
[/COLOR][COLOR=#0000BB]BEGIN
SELECT items_rooms[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]item_id[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000BB]items_rooms[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]x[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000BB]items_rooms[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]y[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000BB]items_rooms[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]n[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000BB]items[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]base_id[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000BB]items_extradata[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]data
FROM items_rooms
JOIN items ON [/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]items[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]item_id [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]items_rooms[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]item_id[/COLOR][COLOR=#007700])
[/COLOR][COLOR=#0000BB]LEFT JOIN items_extradata ON [/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]items_extradata[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]item_id [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]items[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]item_id[/COLOR][COLOR=#007700])
[/COLOR][COLOR=#0000BB]WHERE items_rooms[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]room_id [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]roomid[/COLOR][COLOR=#007700];
[/COLOR][COLOR=#0000BB]END[/COLOR][COLOR=#007700]$$


[/COLOR][COLOR=#0000BB]CREATE DEFINER[/COLOR][COLOR=#007700]=`[/COLOR][COLOR=#DD0000]root[/COLOR][COLOR=#007700]`@`[/COLOR][COLOR=#DD0000]localhost[/COLOR][COLOR=#007700]` [/COLOR][COLOR=#0000BB]PROCEDURE [/COLOR][COLOR=#007700]`[/COLOR][COLOR=#DD0000]getuseritems[/COLOR][COLOR=#007700]`(
[/COLOR][COLOR=#0000BB]IN userid int[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]10[/COLOR][COLOR=#007700]) [/COLOR][COLOR=#0000BB]unsigned
[/COLOR][COLOR=#007700])
[/COLOR][COLOR=#0000BB]BEGIN
SELECT items_users[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]item_id[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000BB]items[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]base_id[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000BB]items_extradata[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]data
FROM items_users
JOIN items ON [/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]items[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]item_id [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]items_users[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]item_id[/COLOR][COLOR=#007700])
[/COLOR][COLOR=#0000BB]LEFT JOIN items_extradata ON [/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]items_extradata[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]item_id [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]items[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]item_id[/COLOR][COLOR=#007700])
[/COLOR][COLOR=#0000BB]WHERE items_users[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]user_id [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]userid[/COLOR][COLOR=#007700];
[/COLOR][COLOR=#0000BB]END[/COLOR][COLOR=#007700]$$


[/COLOR][COLOR=#0000BB]DELIMITER [/COLOR][COLOR=#007700];
 [/COLOR]

FIX BY JORDY

CREDITS
99.9999% Nils & FHD
00.0001% Jorian for release on Ragezone!

I am not the owner of this cms!!

If you have any questions you can add me on msn:
jorianjansen@hotmail.nl


SORRY FOR BAD ENGLISH I'M DUTCH :)
 
Last edited:
Initiate Mage
Joined
Nov 11, 2011
Messages
42
Reaction score
0
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

When it says "4. Go to / r63b" is that the swfs that were included with the CMS download? I don't see an included folder that is r63b?
 
Junior Spellweaver
Joined
Feb 7, 2011
Messages
120
Reaction score
12
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

trax working?
 
Initiate Mage
Joined
Nov 11, 2011
Messages
42
Reaction score
0
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

Does anyone know where to edit the website url?
 
Skilled Illusionist
Joined
Jan 23, 2012
Messages
301
Reaction score
164
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

Add trax under not working :p It doesn't work! (Well at least it doesn't in Habbolatino, and other Butterstorm Edits as far as I know)
 
Initiate Mage
Joined
Nov 11, 2011
Messages
42
Reaction score
0
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

Do you know where to change the url to site? Like when I click register it goes to hubbahotel.nl
 
Banned
Banned
Joined
Feb 14, 2007
Messages
1,405
Reaction score
220
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

Wow this is nice im going to use this thanks

Verstuurd van mijn GT-I9070 met Tapatalk
 
Initiate Mage
Joined
Dec 29, 2012
Messages
6
Reaction score
0
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

How to fix this?
Cannot connect to mysql ( ERROR 01 ) Impossible de se connecté à la base de donnée
 
Initiate Mage
Joined
Dec 29, 2012
Messages
20
Reaction score
2
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

How to fix this?
Cannot connect to mysql ( ERROR 01 ) Impossible de se connecté à la base de donnée

Check your CMS/Emu configuration!

------------
Nice Pack!
 
Initiate Mage
Joined
Sep 20, 2011
Messages
52
Reaction score
0
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

Sound Emulator is an edit of Atom emulator by me, I do not know how you arrive there? Sorry for my bad english I and a Dutchman.
 
Junior Spellweaver
Joined
Sep 27, 2011
Messages
118
Reaction score
36
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

What's this error;


Fatal error: Uncaught exception 'SmartyException' with message 'unable to write file C:\inetpub\wwwroot\new\templates_c\ada55bd0cd4e6b05665744742e6bcf88ece1a6ce.nl.lang.config.php' in C:\inetpub\wwwroot\new\class\smarty\sysplugins\smarty_internal_write_file.php:55 Stack trace: #0 C:\inetpub\wwwroot\new\class\smarty\sysplugins\smarty_internal_config.php(199): Smarty_Internal_Write_File::writeFile('C:\inetpub\wwwr...', '<?php $_config_...', Object(Smarty)) #1 C:\inetpub\wwwroot\new\class\smarty\sysplugins\smarty_internal_config.php(214): Smarty_Internal_Config->compileConfigSource() #2 C:\inetpub\wwwroot\new\templates_c\676126d43a12a8f1ad497029b1954ee48bc60158.file.index.tpl.php(34): Smarty_Internal_Config->loadConfigVars(NULL, 'local') #3 C:\inetpub\wwwroot\new\class\smarty\sysplugins\smarty_internal_templatebase.php(180): content_50deeaae15f604_81018885(Object(Smarty_Internal_Template)) #4 C:\inetpub\wwwroot\new\class\smarty\sysplugins\smarty_internal_templatebase.php(374): Smarty_Internal_TemplateBase->fetch('index.tpl', in C:\inetpub\wwwroot\new\class\smarty\sysplugins\smarty_internal_write_file.php on line 55
 
Initiate Mage
Joined
Nov 11, 2011
Messages
42
Reaction score
0
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

Search the database: cms_settings

I found it but didn't help. When I click register it goes to hubbahotel.nl/register, and i edited all my config plus the ones in db, any more ideas?
 
Initiate Mage
Joined
Jul 5, 2012
Messages
10
Reaction score
4
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

The Database to XAMPP is to big... can someone help me?
 

FHD

Initiate Mage
Joined
Oct 26, 2012
Messages
16
Reaction score
5
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

This is pritty bad translated. If you want to change the url go to your database and go to the habbophp_config table.
Then you go to url_site, and you change the url.
Is you don't know how to import the database or the fix qeury, you need to run it on navicat.
And don't use any of those emulator's. Use butterstorm. ;).
Just not edited. (And friend stream works a little bit).
<-- Butterstorm.

And Whritten, When i bought the VPS from Thijmen, he gave me permissions to release it. But i didn't release it. Eventually Thijmen sold it to another guy. He released it on another forum.
 
Last edited:
Initiate Mage
Joined
Jul 5, 2012
Messages
10
Reaction score
4
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

Jimiboi, can you add me on skype?
Restinpiece123
and help me there
 
Elite Diviner
Joined
Nov 25, 2012
Messages
494
Reaction score
44
Re: R63B Pack - SWF - EMU - CMS + EXPLANATION!

Slowy LA you need to go to ur xampp root and go to PHP folder than PHP.ini, and search 10MB or something and change it to 30-50, an example :D
 
Status
Not open for further replies.
Back
Top