[RELEASE] PRODUCTION-201812272209-984739530

harambe

Donator
Dec 3, 2018
154
115
Hey guys! Today I will be releasing the latest production from Habbo!
PRODUCTION-201812272209-984739530


RSA Keys: !

Habbo.swf:

You can get the rest of the swfs by !


HEADERS:
Hi,

Here is a header list of PRODUCTION-201812272209-984739530

Changes so far found since PRODUCTION-201707041014-428081343:
  • YouAreControllerMessageComposer -> added an extra integar with the roomid
  • YouAreOwnerComposer -> added an extra integar with the roomid
  • FlatAccessDeniedMessageComposer -> added an extra integar with the roomid
  • FlatAccessibleMessageComposer -> added an extra integar with the roomid
  • GetBadgesEvent-> BadgesComposer is splitted in 2 outgoing messages (BadgesComposer, HabboUserBadgesComposer)
Incoming:
Outgoing

Credits to @jordynegen11 for the headers.
 
Last edited:

Hypothesis

Programmer
Jan 6, 2019
524
361
Great release, just tested this on my hotel and everything works perfectly, thanks!
You must be registered for see images attach
 

Baloe20xd

Member
Feb 26, 2016
55
7
I have a problem..
If I disconect the update then I can see it after the hotel view ... (previously that was not the case)

I use PlusEMU R2

This gives me logs when I debug it:
 

Flukey

Officially the gratest alive!
Sep 17, 2018
105
18
Could someone possibly help me changed the One i have on my Hotel to this one? i am Running PRODUCTION

Also maybe someone could assist me in getting a decent catalogue with new furni and clothing and no buggy furniture because the one i have now is really buggy.

thank you in advance.
 

Harold

New Member
Nov 27, 2011
18
2
Or are you stupid? This can work with Phoenix and any other emulator. However the work required to get it to work with Phoenix would be immense due to how outdated it is.

Okay, thank you both. I'm just gonna switch to Plus and save myself a headache.
 

nabbodayhotel

New Member
Feb 17, 2012
10
1
Code:
public const int YouAreControllerMessageComposer = 1379;
public const int YouAreOwnerMessageComposer = 2210;
can you send my the complete

  • YouAreControllerMessageComposer
  • YouAreOwnerComposer
Post automatically merged:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Plus.Communication.Packets.Outgoing.Rooms.Permissions
{
class YouAreOwnerComposer : ServerPacket
{
public YouAreOwnerComposer()
: base(ServerPacketHeader.YouAreOwnerMessageComposer)
{
}
}
}


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Plus.Communication.Packets.Outgoing.Rooms.Permissions
{
class YouAreControllerComposer : ServerPacket
{
public YouAreControllerComposer(int Setting)
: base(ServerPacketHeader.YouAreControllerMessageComposer)
{
base.WriteInteger(Setting);
}
}
}


there is missing an intinger how to fix
 

Hypothesis

Programmer
Jan 6, 2019
524
361
can you send my the complete

  • YouAreControllerMessageComposer
  • YouAreOwnerComposer
Post automatically merged:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Plus.Communication.Packets.Outgoing.Rooms.Permissions
{
class YouAreOwnerComposer : ServerPacket
{
public YouAreOwnerComposer()
: base(ServerPacketHeader.YouAreOwnerMessageComposer)
{
}
}
}


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Plus.Communication.Packets.Outgoing.Rooms.Permissions
{
class YouAreControllerComposer : ServerPacket
{
public YouAreControllerComposer(int Setting)
: base(ServerPacketHeader.YouAreControllerMessageComposer)
{
base.WriteInteger(Setting);
}
}
}


there is missing an intinger how to fix
What do you mean "complete"?
 

Users who are viewing this thread

Top