PlusEMU - Help Thread

Joined
Feb 22, 2012
Messages
2,413
Reaction score
1,355
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 13/12/16: Please try to only QUOTE the PARTS that you are replying to instead of the full post!

Edit 01/05/16: Make sure to add your emulator version, if it's either Habboon or any other edit, or original PlusEMU. There are a lot of PlusEmu edits out there, and we would like the questions to be posted in one thread only.

Why a new thread? The last one had 128 pages, thus it's hard to find answers quickly.

Link to the old thread (closed): http://forum.ragezone.com/f333/official-plusemu-help-thread-1090581/

@Shoelace @CodeDragon @Shorty @asesinato
 
Last edited by a moderator:
Re: Official PlusEMU - Help Thread

Normally when you click on the builders club when it's enabled it goes to the normal catalogue. But when I make it false, the "builders club catalogue" popup? :/ it doesn't disappear?
That's weird. Open your Habbo.swf and search for the buildersclub and remove it from there.
 
Last edited by a moderator:
Upvote 0
Re: Official PlusEMU - Help Thread

Hello,
I'm currently having a problem. Whenever I click the dropdown category, it doesn't display correctly as it should. It actually loads the category instead of just dropping down as it should.
It should just drop down, but instead it loads a blank page...


Issue
Database Image

Here's what it's supposed to do, although I was looking at the exchange before, it shows that instead of a blank page.


Boon Example

Here's what it does when I click on the other categories and the enabled is set to '1'

Using PRODUCTION-201610052203-260805057

--------------

Also, how can I get this welcome message instead of the old style?
 
Last edited:
Upvote 0
Re: Official PlusEMU - Help Thread

Hello,
I'm currently having a problem. Whenever I click the dropdown category, it doesn't display correctly as it should. It actually loads the category instead of just dropping down as it should.
It should just drop down, but instead it loads a blank page...


Issue
Database Image


Here's what it's supposed to do, although I was looking at the exchange before, it shows that instead of a blank page.


Boon Example


Here's what it does when I click on the other categories and the enabled is set to '1'


Using PRODUCTION-201610052203-260805057

--------------

Also, how can I get this welcome message instead of the old style?
Open your browser console and look if there are any errors.
If not, try to remove "meubels" at page_link and try again

Just play a little bit with it, PM me with your Skype if it still does not work.
 
Upvote 0
Re: Official PlusEMU - Help Thread

Does anyone have a fix for crackable furniture? Everytime I place them in a room the client reloads.
 
Upvote 0
Re: Official PlusEMU - Help Thread

Yooo, if possible...
In the PlusEMU I need to do so popup alert comes everytime you enter a room categorized "casino"...
How to? :o
 
Upvote 0
PlusEmu Catlaog

Hey,

I noticed when I search things in my catalog it appears wrongly, with the incorrect credit amount and when an item is clicked, it follows with a disconnect.

I thought it might be a packet error but it doesn't use packets for the search; it uses the already-made List of items when the catalog initialises.

P.S: It only shows searched "items" when the length of the search string is 3 characters or over.

Here's the screenie:



Thank you.
 
Upvote 0
How do I fix the group page in the catalog? It says text but I want it normal.

My version:
Boons(example):

I want to add text, but I'm unsure how it is done.
 
Upvote 0
PlusEMU Auto-AFK Disconnect

Hello,
Is it possible to disconnect a user after being inactive for 30 minutes? This could help prevent users from gaining a large amount of credits, which would be helpful.

If someone can help, that'd be great.
 
Upvote 0
Re: PlusEMU Auto-AFK Disconnect

It's not a option to disconnect the player. You'll lose alot players..

A better idea will be a system that don't give credits to players if they are longer than 30 minutes afk.
Select it from the idleTime to see how long they are already away.
 
Upvote 0
Anyone who knows how to make a start room for PlusEMU? Not a homeroom, STARTROOM.
Like on the real HabboHotel, look here:
Droppy - PlusEMU - Help Thread - RaGEZONE Forums


So when people have registered and open client they will start in their own room with furni in it? :)
 
Upvote 0
Anyone who knows how to make a start room for PlusEMU? Not a homeroom, STARTROOM.
Like on the real HabboHotel, look here:
Droppy - PlusEMU - Help Thread - RaGEZONE Forums


So when people have registered and open client they will start in their own room with furni in it? :)

Make your PHP create a room with furniture in it


 
Upvote 0
Re: PlusEMU Auto-AFK Disconnect

It's not a option to disconnect the player. You'll lose alot players..

A better idea will be a system that don't give credits to players if they are longer than 30 minutes afk.
Select it from the idleTime to see how long they are already away.
Lose a lot of players? It'll **** up your economy if someone is AFK'ing for a few hours..
 
Upvote 0
Re: PlusEMU Auto-AFK Disconnect

Hi,

This is very easy to do. I've downloaded Plus Emulator and reviewed the code to see what needs to be added to disconnect the user from the client after being AFK for so long. I don't quite understand why you would want to do this as there are many alternatives.

Open Plus Emulator > HabboHotel > Users > Process > ProcessComponent.cs

Find
Code:
this._player.TimeAFK += 1;

Copy and paste this under it
Code:
int DisconnectTimer = 10;
if (this._player.TimeAFK > DisconnectTimer)
      this._player.GetClient().Disconnect();

Replace the number 10 with whatever number you wish for them to disconnect at (in minutes)
 
Upvote 0
Re: PlusEMU Auto-AFK Disconnect

How will it f*ck up your economy if players don't get credits after being inactive for 30 minutes?
I wasn't stating that I was gonna use his idea. He said "You will lose a lot of players". I was saying, if you don't implant something, people can AFK and **** up your economy by getting a **** ton of credits/duckets.



Hi,

This is very easy to do. I've downloaded Plus Emulator and reviewed the code to see what needs to be added to disconnect the user from the client after being AFK for so long. I don't quite understand why you would want to do this as there are many alternatives.

Open Plus Emulator > HabboHotel > Users > Process > ProcessComponent.cs

Find
Code:
this._player.TimeAFK += 1;

Copy and paste this under it
Code:
int DisconnectTimer = 10;
if (this._player.TimeAFK > DisconnectTimer)
      this._player.GetClient().Disconnect();

Replace the number 10 with whatever number you wish for them to disconnect at (in minutes)
What's a different alternative then?
 
Upvote 0
Re: PlusEMU Auto-AFK Disconnect

Why disconnecting users for being inactive. Handle it in the reward system?

Use the member variable that's already definined for an AFK user. You could do a return in a for loop.
 
Upvote 0
Back