R63B client crash on landing

Prometeus

New Member
Feb 11, 2018
15
0
The client loads, hit 100%, load some data and then redirect to the fatal disconnect URL.
This is all it loads:
You must be registered for see images attach


The emulator give me no error.
The SWF is completely configurated.

What it could be?
 

Prometeus

New Member
Feb 11, 2018
15
0
Any errors in console? Also, this can be due to a tag not being closed in something like furnidata, product data, etc.
Nope, no errors in console, no error on the logs too.
I don't think it is a XML error because I've tried with two different setups, using different packs / CMS / emulator / database and everytime I got this error :/
 

Blasteh

Lord Farquaad
Apr 3, 2013
1,151
513
Nope, no errors in console, no error on the logs too.
I don't think it is a XML error because I've tried with two different setups, using different packs / CMS / emulator / database and everytime I got this error :/
Debug the emulator in Visual Studio and see what packet it throws before disconnection.
 

Prometeus

New Member
Feb 11, 2018
15
0
Debug the emulator in Visual Studio and see what packet it throws before disconnection.
I'm installing Visual Studio again to do that.
Yesterday I just gave up doing something for Habbo Hotel because of this error, but I'll give it a chance.

#edit

This is the last packets @Blasteh :
You must be registered for see images attach


#edit

Now for some random reason I'm stuck at 76%, and the emulator goes to "SSOTicketEvent" and stop
 
Last edited:

Blasteh

Lord Farquaad
Apr 3, 2013
1,151
513
I'm installing Visual Studio again to do that.
Yesterday I just gave up doing something for Habbo Hotel because of this error, but I'll give it a chance.

#edit

This is the last packets @Blasteh :
You must be registered for see images attach


#edit

Now for some random reason I'm stuck at 76%, and the emulator goes to "SSOTicketEvent" and stop
You need the SSO fix

Replace your SSOTicketEvent.cs with this and see if it works:
Code:
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);
        }
    }
}
 

Prometeus

New Member
Feb 11, 2018
15
0
You need the SSO fix

Replace your SSOTicketEvent.cs with this and see if it works:
Code:
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);
        }
    }
}
Replaced, but no success :/
Now it gives me 1 user online, but still I'm stuck on 76%

#edit

After a loooooong time I got redirected to the BaseUrl
 
Last edited:

Prometeus

New Member
Feb 11, 2018
15
0
This is not a problem with the CMS.
The CMS is just a login / session manager, not the game itself.
The problem here is with the SWF or with the emulator, not the SWF.

The token is correctly generated and saved into the DB.
 

Prometeus

New Member
Feb 11, 2018
15
0
Now I'm using this pack:


I was using this later:

But it gave me the same issue
 

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
Now I'm using this pack:


I was using this later:

But it gave me the same issue
Okay. Let me sort you out with a pack with a working emulator/DB and SWF's. Give me a moment.

EDIT: Here it is.
 
Last edited:

Blasteh

Lord Farquaad
Apr 3, 2013
1,151
513
This is not a problem with the CMS.
The CMS is just a login / session manager, not the game itself.
The problem here is with the SWF or with the emulator, not the SWF.

The token is correctly generated and saved into the DB.
It very well could be the CMS as that’s what generates the SSO token. If you look for a fix for Rev, there’s a fix where you have to make changes to the CMS and how it handles the SSO. So, it very well could be the CMS. But, @JMG might of fixed it for you. Good luck.
 

Prometeus

New Member
Feb 11, 2018
15
0
It very well could be the CMS as that’s what generates the SSO token. If you look for a fix for Rev, there’s a fix where you have to make changes to the CMS and how it handles the SSO. So, it very well could be the CMS. But, @JMG might of fixed it for you. Good luck.
I have said that the ticket is beeing generated correctly, it's just a PHP function lol

Pack does not include a CMS. I recommend stop using dodgy releases by people releasing their "custom CMS" :up:
Tbh I encourage people to do more custom CMS. All hotels looks like the same, that's sad to be very honest. I have not used any functions from other CMS than the SSO ticket function (that is just a RNG thing, I have seen in the emulator that it just checks in the DB, it is a simple ticket verification).

We can make better things, faster things, more secure things, w/e.
You just need to know how to code a website xD

But thanks! I will try the pack, I'm downloading it right now.

#edit

See how Habbo Hotel is flexible? I can make a entire CMS based on Wordpress without any problem, it is really just a content management system with a SSO token generator xD
 

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
I have said that the ticket is beeing generated correctly, it's just a PHP function lol


Tbh I encourage people to do more custom CMS. All hotels looks like the same, that's sad to be very honest. I have not used any functions from other CMS than the SSO ticket function (that is just a RNG thing, I have seen in the emulator that it just checks in the DB, it is a simple ticket verification).

We can make better things, faster things, more secure things, w/e.
You just need to know how to code a website xD

But thanks! I will try the pack, I'm downloading it right now.

#edit

See how Habbo Hotel is flexible? I can make a entire CMS based on Wordpress without any problem, it is really just a content management system with a SSO token generator xD
Yes I know what you’re saying. But a lot of people might release things full of exploits or bad coding, a lot of people release their “custom CMS” when it’s just RevCMS with a poorly coded theme LUL
 

Users who are viewing this thread

Top