Problem of players entering random accounts (Happened Again)

olamundo

Member
Mar 2, 2017
50
0
Sometimes (rarely) when a person enters into your account, it ends up entering into the account of another random personDoes anyone have this problem and do you know how to solve it? My emulator is the Plus

(I had made another post like this, but it is closed and the problem has returned)
 

Etrion

?
Dec 22, 2016
108
32
If this is the problem with SSO (SSOTicketEvent.cs)
Where people can randomly login to peoples accounts this should be the fix:
using System;
using Plus.Communication.Packets.Incoming;
using Plus.HabboHotel.GameClients;
using Plus.Communication.Packets.Outgoing.Handshake;
namespace Plus.Communication.Packets.Incoming.Handshake
{
public class SSOTicketEvent : IPacketEvent
{
public void Parse(GameClient Session, ClientPacket Packet)
{
if (Session == null || Session.RC4Client == null || Session.GetHabbo() != null)
return;
string SSO = Packet.PopString();
if (string.IsNullOrEmpty(SSO) || SSO.Length < 15)
return;
Session.TryAuthenticate(SSO);
}
}
}
 

Users who are viewing this thread

Top