Need Help Upgrading To PRODUCTION-201608171204-891546786

supernovacrow

New Member
Apr 12, 2012
20
0
Hey Guys,
Atm im attempting to upgrade to the next habbo production. Im new to this and Im trying to learn, Was wondering if anyone could help me?

So ive replaced the rsa keys and edited the incoming and outcoming packet structures, however when I load the client it goes through the updating packets list but disconnects me from the hotel.

You must be registered for see images attach
 

SOUL

┼ ┼ ┼
Nov 10, 2015
224
45
It's definitely your structures , replace your AvailabilityStatusComposer.cs with this code it should hopefully fix it.

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

namespace Plus.Communication.Packets.Outgoing.Handshake
{
class AvailabilityStatusComposer : ServerPacket
{
public AvailabilityStatusComposer()
: base(ServerPacketHeader.AvailabilityStatusMessageComposer)
{
base.WriteBoolean(true);
base.WriteBoolean(true);
base.WriteBoolean(true);
}
}
}

Don't take my word for it though when updating mine I updated all my structures at once , keep in mind you will
still run in to errors as you have more structures to update you should check rival forums.

PS - Trying to learn what copy and pasting?
 

SOUL

┼ ┼ ┼
Nov 10, 2015
224
45
Change your MessengerInitComposer.cs to this
using System;
using System.Linq;
using System.Text;
using System.Collections.Generic;

using Plus.HabboHotel.Users;
using Plus.HabboHotel.Users.Messenger;
using Plus.HabboHotel.Users.Relationships;

namespace Plus.Communication.Packets.Outgoing.Messenger
{
class MessengerInitComposer : ServerPacket
{
public MessengerInitComposer()
: base(ServerPacketHeader.MessengerInitMessageComposer)
{
base.WriteInteger(PlusStaticGameSettings.MessengerFriendLimit);//Friends max.
base.WriteInteger(0);
base.WriteInteger(0);
base.WriteInteger(1);
base.WriteInteger(1); // category count

base.WriteInteger(1);
base.WriteString("Chat Groups");
}
}
}

Dumb question - did you forget to change your SWF?
 
Last edited:

supernovacrow

New Member
Apr 12, 2012
20
0
Heres exactly what I have done so far, I viewed the latest thread from the rival forum obviously.
I then took that swf file put it in my production folder, renamed the production folder to the revision of the swf, kept the swfs name as the production revision name.
I then changed the production in external overide variables, external variables and the client.php (2 locations)

Btw im now not getting anything showing up:
You must be registered for see images attach
 

SOUL

┼ ┼ ┼
Nov 10, 2015
224
45
Heres exactly what I have done so far, I viewed the latest thread from the rival forum obviously.
I then took that swf file put it in my production folder, renamed the production folder to the revision of the swf, kept the swfs name as the production revision name.
I then changed the production in external overide variables, external variables and the client.php (2 locations)

Btw im now not getting anything showing up:
You must be registered for see images attach

Most of the stuff you just listed was unnecessary I simply renamed the new SWF to Habbo and replaced it in gordon
 

supernovacrow

New Member
Apr 12, 2012
20
0
Btw, On the rival forum it says to change these structures;
RespectPetNotificationMessageComposer
GnomeBoxMessageComposer
PetHorseFigureInformationMessageComposer
ModeratorRoomInfoMessageComposer
PetInventoryMessageComposer

How Would I go about doing that?
 

Users who are viewing this thread

Top