Nope, no errors in console, no error on the logs too.Any errors in console? Also, this can be due to a tag not being closed in something like furnidata, product data, etc.
Debug the emulator in Visual Studio and see what packet it throws before disconnection.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 :/
I'm installing Visual Studio again to do that.Debug the emulator in Visual Studio and see what packet it throws before disconnection.
You need the SSO fixI'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
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 :/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); } } }
If you’re using a custom cms you made you should know how to fix this.I'm using a custom CMS made by me.
I have based on RevCMS to make the SSO ticket function, it's barely the same (but a little faster).
Okay. Let me sort you out with a pack with a working emulator/DB and SWF's. Give me a moment.Now I'm using this pack:
You must be registered for see links
I was using this later:
You must be registered for see links
But it gave me the same issue
My bad. Fixed.He'll need the decryption key as well.
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.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.
I have said that the ticket is beeing generated correctly, it's just a PHP function lolIt 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.
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).Pack does not include a CMS. I recommend stop using dodgy releases by people releasing their "custom CMS"
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 themeI 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