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!

Official PlusEMU - Help Thread

Status
Not open for further replies.
◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜
Developer
Joined
May 29, 2007
Messages
2,167
Reaction score
897
Post your help requests related to the PlusEMU emulator here.

Please use the SPOILER tags if you're going to post screenshots or a large chunk of code.
Also make sure your code is between the CODE tags to make it easier to read.

WARNING:
When replying to a post, QUOTE the post. There's a link under the user's post "Reply With Quote" - use it. If you're not replying to a question with quote, it will be considered as Spam.

Edit 01/05/16: Please! Make sure to add your emulator version, if it's either Habboon or any other edit, or original PlusEMU. There's a lot of PlusEmu edits out there, and we would like the questions get to be made in only one thread.
 
Last edited by a moderator:
Initiate Mage
Joined
Oct 21, 2012
Messages
40
Reaction score
14
Any Ideas for this?

2Xrq17 - Official PlusEMU - Help Thread - RaGEZONE Forums
PHP:
DROP TABLE IF EXISTS `server_status`;
CREATE TABLE `server_status` (
  `users_online` int(11) NOT NULL DEFAULT '0',
  `loaded_rooms` int(11) NOT NULL DEFAULT '0',
  `status` enum('0','1','2') NOT NULL DEFAULT '0',
  `rooms_loaded` int(11) NOT NULL DEFAULT '0',
  `server_ver` text NOT NULL,
  `stamp` double NOT NULL,
  `minutesuptime` int(11) NOT NULL,
  `userpeak` int(11) NOT NULL DEFAULT '0',
  `bannerdata` varchar(1000) NOT NULL DEFAULT '',
  `id` int(11) NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_online` (`users_online`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
 
Upvote 0
Experienced Elementalist
Joined
Feb 5, 2012
Messages
259
Reaction score
93
Change type to : Varchar

Almost did the trick, i had to change all current room_data public_items to something random, because if i choose varchar 999 the data in the column was too long. Which is why i now have it on Varchar 999 and default value = randomvalue on everything.

If anyone needs that table, pm me or quote me here and ill upload it!
 
Upvote 0
Initiate Mage
Joined
Mar 8, 2013
Messages
3
Reaction score
0
Can you help me?

my client has 76% load and it disconnected me..

(sorry i am french)
 
Upvote 0
Initiate Mage
Joined
Jan 2, 2016
Messages
16
Reaction score
2
The avatars does not load. The figuredata.xml is in the /extra directory and I have linked all up in external_variables.
 
Upvote 0
Initiate Mage
Joined
Jun 25, 2011
Messages
50
Reaction score
17
So I'm getting an error... When my client loads to 100% it shows the hotel view for about 1/5th of a second and goes back to the /me page. is what the console is telling me. I have not edited anything but the emu config my cms config and the client.php. I left everything as it was in the download.. Just like everyone else did. Please help me out.
Have a look, it says "game.boon.dev" is the domain being requested. You need to edit your external variables if you want to get it working.
 
Upvote 0
Master Summoner
Joined
Oct 11, 2012
Messages
544
Reaction score
143
So I'm getting an error... When my client loads to 100% it shows the hotel view for about 1/5th of a second and goes back to the /me page. is what the console is telling me. I have not edited anything but the emu config my cms config and the client.php. I left everything as it was in the download.. Just like everyone else did. Please help me out.

I'll I can see from that is that crossdomain is missing and dance4.swf is not found and Triple check all of the links in external_variables so they match completely to your url and swf folder struture.



Everything works, but Group badges are not showing up? Is there any fix?
Check your .htaccess and web.config.
Make sure you also rename badge-fill to habbo-imaging

Add this to .htaccess if you use xampp / apache
Code:
RewriteEngine On 
RewriteRule ^habbo-imaging/badge/(.*).gif$ ./habbo-imaging/badge.php?badge=$1

Add this to web.config if you use IIS
Code:
<rule name="Habbo Imaging Group Badges">
        <match url="^habbo-imaging/badge/([^/]+)" ignoreCase="false" />
        <action type="Rewrite" url="/habbo-imaging/badge.php?badge={R:1}"         appendQueryString="false" />
</rule>
<rule name="Habbo Imaging Avatarimage 1">
        <match url="^habbo-imaging/avatar/([^/]+)" ignoreCase="false" />
        <action type="Rewrite" url="habbo-imaging/avatarimage.php?figure={R:1}" appendQueryString="false" />
</rule>
<rule name="Habbo Imaging Avatar Image 2">
       <match url="^habbo-imaging/avatarimage/([^/]+)" ignoreCase="false" />
       <action type="Rewrite" url="habbo-imaging/avatarimage.php?username={R:1}" appendQueryString="false" />
</rule>
<rule name="Habbo Imaging Avatar Head">
        <match url="^habbo-imaging/head/([^/]+)" ignoreCase="false" />
        <action type="Rewrite" url="habbo-imaging/head.php?figure={R:1}" appendQueryString="false" />
 </rule>
 
Last edited:
Upvote 0
I use to love it more!
Joined
Oct 13, 2009
Messages
870
Reaction score
115
Pretty weird error..



Says i'm in room but it's black! ( No errors in server /google )
 
Upvote 0
Initiate Mage
Joined
Jun 25, 2011
Messages
50
Reaction score
17
Everything works, but Group badges don't show? Any fix?

On top of what KyleeIsProzZ said above, you will need to rename the folder called badge-fill to habbo-imaging if you haven't already.
If you're not running IIS, you'll need to add the rewrite rule for whatever web server you're using.

Here's my .htaccess just in case you're running Apache:
Code:
RewriteEngine On
RewriteRule ^habbo-imaging/badge/(.*).gif$ ./habbo-imaging/badge.php?badge=$1
 
Upvote 0
Initiate Mage
Joined
Jun 28, 2013
Messages
44
Reaction score
2
Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

hi, If i go into a room, only wat is see is black.
and i can't see the furni in the catalogue.
How can i fix this? only what I see is white blocks
 
Upvote 0
Initiate Mage
Joined
Jan 7, 2016
Messages
85
Reaction score
8
I'll I can see from that is that crossdomain is missing and dance4.swf is not found and Triple check all of the links in external_variables so they match completely to your url and swf folder struture.




Check your .htaccess and web.config and make sure these are added below

Code:
<rule name="Habbo Imaging Group Badges">
          <match url="^habbo-imaging/badge/([^/]+)" ignoreCase="false" />
          <action type="Rewrite" url="/habbo-imaging/badge.php?badge={R:1}" appendQueryString="false" />
        </rule>
        <rule name="Habbo Imaging Avatarimage 1">
          <match url="^habbo-imaging/avatar/([^/]+)" ignoreCase="false" />
          <action type="Rewrite" url="habbo-imaging/avatarimage.php?figure={R:1}" appendQueryString="false" />
        </rule>
        <rule name="Habbo Imaging Avatar Image 2">
          <match url="^habbo-imaging/avatarimage/([^/]+)" ignoreCase="false" />
          <action type="Rewrite" url="habbo-imaging/avatarimage.php?username={R:1}" appendQueryString="false" />
        </rule>
        <rule name="Habbo Imaging Avatar Head">
          <match url="^habbo-imaging/head/([^/]+)" ignoreCase="false" />
          <action type="Rewrite" url="habbo-imaging/head.php?figure={R:1}" appendQueryString="false" />
        </rule>

Still doesn't show?
 
Last edited:
Upvote 0
I use to love it more!
Joined
Oct 13, 2009
Messages
870
Reaction score
115
If your rooms are showing up black run this SQL

Run this..
PHP:
CREATE TABLE `rooms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `roomtype` enum('public','private') NOT NULL DEFAULT 'private',
  `caption` varchar(100) NOT NULL DEFAULT 'Room',
  `owner` varchar(75) NOT NULL DEFAULT '',
  `description` varchar(255) NOT NULL DEFAULT '',
  `category` int(11) NOT NULL DEFAULT '0',
  `state` enum('open','locked','password','invisible') NOT NULL DEFAULT 'open',
  `users_now` int(11) NOT NULL DEFAULT '0',
  `users_max` int(11) NOT NULL DEFAULT '25',
  `model_name` varchar(50) NOT NULL,
  `score` int(11) NOT NULL DEFAULT '0',
  `tags` varchar(100) NOT NULL DEFAULT '',
  `password` varchar(30) NOT NULL DEFAULT '',
  `wallpaper` varchar(10) NOT NULL DEFAULT '0.0',
  `floor` varchar(10) NOT NULL DEFAULT '0.0',
  `landscape` varchar(10) NOT NULL DEFAULT '0.0',
  `allow_pets` enum('0','1') NOT NULL DEFAULT '0',
  `allow_pets_eat` enum('0','1') NOT NULL DEFAULT '0',
  `room_blocking_disabled` enum('0','1') NOT NULL DEFAULT '0',
  `allow_hidewall` enum('0','1') NOT NULL DEFAULT '0',
  `wallthick` int(1) NOT NULL DEFAULT '0',
  `floorthick` int(1) NOT NULL DEFAULT '0',
  `group_id` int(11) unsigned NOT NULL DEFAULT '0',
  `mute_settings` enum('0','1') NOT NULL DEFAULT '1',
  `ban_settings` enum('0','1') NOT NULL DEFAULT '1',
  `kick_settings` enum('0','1','2') NOT NULL DEFAULT '1',
  `chat_mode` int(11) NOT NULL DEFAULT '0',
  `chat_size` int(11) NOT NULL DEFAULT '0',
  `chat_speed` int(11) NOT NULL DEFAULT '0',
  `chat_extra_flood` int(11) NOT NULL DEFAULT '0',
  `chat_hearing_distance` int(11) NOT NULL DEFAULT '14',
  `trade_settings` int(11) NOT NULL DEFAULT '2',
  `push_enabled` enum('0','1') NOT NULL DEFAULT '1',
  `pull_enabled` enum('0','1') NOT NULL DEFAULT '1',
  `enables_enabled` enum('0','1') NOT NULL DEFAULT '1',
  `respect_notifications_enabled` enum('0','1') NOT NULL DEFAULT '1',
  `pet_morphs_allowed` enum('0','1') NOT NULL DEFAULT '1',
  `spull_enabled` enum('0','1') NOT NULL DEFAULT '1',
  `spush_enabled` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
 
Upvote 0
Initiate Mage
Joined
Aug 2, 2009
Messages
76
Reaction score
2
Okay, so I edited and checked every single link in external vars and external override vars now I can get into the client but when i open a tab on the catalog, it shows white boxes for about 1/2 a second and redirects me to the /me page. There are no errors shown on the EMU or the browser console when this happens. I have tried everything I know, obv I'm retarded. Please help.
 
Upvote 0
Initiate Mage
Joined
Jan 2, 2016
Messages
11
Reaction score
0
Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

Is there a person to convert my db azure against remuneration?
 
Upvote 0
Status
Not open for further replies.
Back
Top