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!

Plus Emulator Revision RB3.0 [Community Project]

Status
Not open for further replies.
Skilled Illusionist
Joined
Jul 4, 2009
Messages
363
Reaction score
65
Re: New Structure - PlusR2 [Updated]

Little bug in the supportickets,

Jamal7 - Plus Emulator Revision RB3.0 [Community Project] - RaGEZONE Forums


Reported user don't show up.
I think because the client is sending the roomid instead of the userid
 
Experienced Elementalist
Joined
Jun 7, 2012
Messages
288
Reaction score
250
Re: New Structure - PlusR2 [Updated]

Hello, if anyone have this PlusEmu working with the new structure can they may release it in this thread please? I am not good at adding these stuff, sorry to bother but i need it.

Or just dont update to this build the only nice thing why i maked this packet list and updated my hotel is because the new :floor style
Text under this message
I still see not much difference with this reversion and the reversion of plus r2 only some mod tools poop and the floor plan editor.

You can better wait for a big habbo update ;p
 
Last edited:
Master Summoner
Joined
Dec 1, 2013
Messages
547
Reaction score
694
Re: New Structure - PlusR2 [Updated]

Please Spotify, i need this. Hopefully someone else will then if you don't.
Listen friend this needs more development it's not ready to be used on a public retro hotel ;) Just wait until the community fix it !
 
Skilled Illusionist
Joined
Jul 4, 2009
Messages
363
Reaction score
65
Re: New Structure - PlusR2 [Updated]

Or just dont update to this build the only nice thing why i maked this packet list and updated my hotel is because the new :floor style
Text under this message
I still see not much difference with this reversion and the reversion of plus r2 only some mod tools poop and the floor plan editor.

You can better wait for a big habbo update ;p



Your support ticket are working?

Can you give me your internal ServerMessage Serialize()
in SupportTicket.cs?
 
Joined
Apr 17, 2012
Messages
508
Reaction score
77
Re: New Structure - PlusR2 [Updated]

Can someone give a fix for sending support tickets? I don't receive any ticket in the ticket browser. I'll appreciate alot!!



Bug, yes

You've placed your int wrong. I had the same. Place Message.AppendInt32(-1); UNDER Message.AppendBoolean(false);
Then you recieve the walls good!!


Userinfo Fix
Just add in Moderationtool.cs under Message.AppendInt32(0); // trading_lock_count_txt this:
Message.AppendInt32(0); // trading_lock_check_txt
 
Last edited:
Junior Spellweaver
Joined
Jul 19, 2013
Messages
171
Reaction score
115
Re: New Structure - PlusR2 [Updated]

Fix for "Cannot see my user in room or room data":
I already gave it to you:

Replace:
Code:
internal static int SerializeWallItems = 0xFFFF;
with:
Code:
internal static int SerializeWallItems = 395;

and it's done!

now...

Fix for User Profile:

Replace your UserProfile()
with this one:



Fix for sending tickets:
Replace SubmitHelpTicket() with this one:


Replace the entire internal void SendNewTicket with this one:



Now, in supportTicket.cs
Find:
Code:
internal double Timestamp;
add below:
Code:
internal List<string> ReportedChats;


Now Find:
Code:
internal SupportTicket(uint Id
and just after this
Code:
double Timestamp,
add:
Code:
List<string> ReportedChats

Now find
Code:
this.Timestamp = Timestamp;
And add after:
Code:
this.ReportedChats = ReportedChats;

Finally, replace the Serialize function in SupportTicket.cs with this one:



Don't forget to give rep++ ;D
 
Newbie Spellweaver
Joined
Mar 9, 2013
Messages
32
Reaction score
0
Re: New Structure - PlusR2 [Updated]

hank you, his work apart is the form of more bug apart, that I may go in but its me crash, yet eneléve name, and not see me, but otherwise the solved form: ( help !
 
Junior Spellweaver
Joined
Jul 19, 2013
Messages
171
Reaction score
115
Re: New Structure - PlusR2 [Updated]

Why is the save button @floorPlan grey

Okay. To enable the Floor Plan Save button you must update your user perks.
I will make it easy for you.

Replace the whole
public UserPerksComposer(GameClient Client) : base(ServerPacketHeader.UserPerksMessageComposer)
with this one (updated for the new build):

Code:
public UserPerksComposer(GameClient Client) : base(ServerPacketHeader.UserPerksMessageComposer)
		{
			base.WriteInteger(10);
			base.WriteString("EXPERIMENTAL_CHAT_BETA");
			base.WriteString("");
			base.WriteBoolean(true);
			base.WriteString("CITIZEN");
			base.WriteString("");
			base.WriteBoolean(true);
			base.WriteString("VOTE_IN_COMPETITIONS");
			base.WriteString("requirement.unfulfilled.helper_level_2");
			base.WriteBoolean(false);
			base.WriteString("NEW_UI");
			base.WriteString("");
			base.WriteBoolean(true);
			base.WriteString("USE_GUIDE_TOOL");
			base.WriteString("requirement.unfulfilled.helper_level_4");
			base.WriteBoolean(false);
			base.WriteString("BUILDER_AT_WORK");
			base.WriteString("");
			base.WriteBoolean(true);
			base.WriteString("JUDGE_CHAT_REVIEWS");
			base.WriteString("requirement.unfulfilled.helper_level_6");
			base.WriteBoolean(false);
			base.WriteString("EXPERIMENTAL_TOOLBAR");
			base.WriteString("requirement.unfulfilled.group_membership");
			base.WriteBoolean(false);
			base.WriteString("CALL_ON_HELPERS");
			base.WriteString("");
			base.WriteBoolean(true);
			base.WriteString("TRADE");
			base.WriteString("");
			base.WriteBoolean(true);
		}

Now if you want to disable the button you just set "BUILDER_AT_WORK" to false.
 
Joined
Aug 10, 2011
Messages
7,399
Reaction score
3,307
Re: New Structure - PlusR2 [Updated]

I get this error when I try to get tickets working:

Error 3 The type or namespace name 'List' could not be found (are you missing a using directive or an assembly reference?) C:\xampp\htdocs\Graphic\Messages\Requests\Help.cs 31 17 Silverwave

Try to google instead of posting the error hoping someone will come up with a fix for you.



First result, first answer.
 
Junior Spellweaver
Joined
Jul 19, 2013
Messages
171
Reaction score
115
Re: New Structure - PlusR2 [Updated]

I get this error when I try to get tickets working:

Error 3 The type or namespace name 'List' could not be found (are you missing a using directive or an assembly reference?) C:\xampp\htdocs\Graphic\Messages\Requests\Help.cs 31 17 Silverwave

Add to the top:
using System.Collections.Generic;
 
Skilled Illusionist
Joined
Dec 20, 2013
Messages
365
Reaction score
64
Re: New Structure - PlusR2 [Updated]

Add to the top:
using System.Collections.Generic;
Groups are disconecting too ill tried look at it but i dont really understand it :D so maybe u got it ?

SendNotifiwithpic dont works too ^^
 
Junior Spellweaver
Joined
May 3, 2009
Messages
173
Reaction score
134
Re: New Structure - PlusR2 [Updated]

Groups are disconecting too ill tried look at it but i dont really understand it :D so maybe u got it ?

SendNotifiwithpic dont works too ^^

Works fine :tongue:
Packet id = 777
DBHdvTA - Plus Emulator Revision RB3.0 [Community Project] - RaGEZONE Forums



Edit:
GetGiftWrappingConfigurationMessageEvent = 584;
 

Attachments

You must be registered for see attachments list
Last edited:
Junior Spellweaver
Joined
Jul 19, 2013
Messages
171
Reaction score
115
Re: New Structure - PlusR2 [Updated]

I know this is not a help thread but how can i fix these two errors

Maybe you added Spotify's automic alert fix, if so then you are lacking something.

Can you please give me your SupportTicket.cs?
 
Newbie Spellweaver
Joined
Jun 12, 2013
Messages
21
Reaction score
1
Re: New Structure - PlusR2 [Updated]

Maybe you added Spotify's automic alert fix, if so then you are lacking something.

Can you please give me your SupportTicket.cs?


Finn conectate a skype porfa...
 
Skilled Illusionist
Joined
Dec 20, 2013
Messages
365
Reaction score
64
Re: New Structure - PlusR2 [Updated]

Maybe you added Spotify's automic alert fix, if so then you are lacking something.

Can you please give me your SupportTicket.cs?
The Profile fix doesnt work correctly when open profile it shows up ssecond after dc:D,
and if u want & got time these bugs needs a fix
Cant enter group home room = dc
Cant see pets in cata / idk if we can place em
Cant buy Habbo club = dc (after dc when enter client again the club days u just bought are added , but stil annoyng u gets dc by it)
 
Last edited by a moderator:
Master Summoner
Joined
Dec 1, 2013
Messages
547
Reaction score
694
Re: New Structure - PlusR2 [Updated]

If you have bugs or something that needs to be fixed send me a PM and I update the main thread with a to-do list. This is much more convenient!
 
Newbie Spellweaver
Joined
Apr 29, 2014
Messages
89
Reaction score
59
Re: New Structure - PlusR2 [Updated]

Fix for groups:

In GroupManager.cs
Search:
Response.AppendBoolean(Group.AdminOnlyDeco == 0); // Any user can place furni in home room

Under that add:
Response.AppendBoolean(false); // Forums

Note: You'll have to search twice as it comes up twice.
 
Newbie Spellweaver
Joined
Oct 4, 2012
Messages
31
Reaction score
7
Re: New Structure - PlusR2 [Updated]

can anyone give me plus emu r2
and any working swfs
 
Status
Not open for further replies.
Back
Top