Problem of players entering random accounts

Status
Not open for further replies.

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
 

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
Which build of Plus? Did you get it from I recommend using build 2 however I hear build 3 is being released soon (?)
 

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
If it's the exploit, go to SSOTicketEvent.cs

replace it all with:
Code:
    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);
        }
    }
The length is up to you, I just always have more than 15 length. /Sledmore
 

olamundo

Member
Mar 2, 2017
50
0
My Plus Emulator is already well-modified, I can not change it
I'll do the SSO ticket fix and see if this happens again, thanks.
If someone else has some exploit to correct that might cause this problem I'm having, please post here
------------------------------------------------------------------------------------------------------------------------------
If it's the exploit, go to SSOTicketEvent.cs

replace it all with:
Code:
    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);
        }
    }
The length is up to you, I just always have more than 15 length. /Sledmore
What would be the length?
 

CosmoPeak

PeakRP.com
May 15, 2016
271
268
My Plus Emulator is already well-modified, I can not change it
I'll do the SSO ticket fix and see if this happens again, thanks.
If someone else has some exploit to correct that might cause this problem I'm having, please post here
------------------------------------------------------------------------------------------------------------------------------

What would be the length?
15 should work fine, just copy that code exactly.
 
Status
Not open for further replies.

Users who are viewing this thread

Top