Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
76% problem [PlusEMU] [RevCMS]
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Larsbehet" data-source="post: 433512" data-attributes="member: 13943"><p>I am still having the same problem, even after a fresh download.</p><p></p><p>Edit: Seems like RevCMS isn't generating an auth_ticket for accounts >24 hours.</p><p>Edit: InitCryptoEvent and GenerateSecretKey are functioning now</p><p>[doublepost=1525338349,1525290538][/doublepost]It seems like I got the auth_ticket issue is fixed, but once again, a new copy of PlusEmu won't go further then the SSOTicketEvent. In case you need it, here is my SSOTicketEvent.cs</p><p></p><p>[code]</p><p>namespace Plus.Communication.Packets.Incoming.Handshake</p><p>{</p><p> public class SSOTicketEvent : IPacketEvent</p><p> {</p><p> public void Parse(GameClient Session, ClientPacket Packet)</p><p> {</p><p> if (Session == null || Session.RC4Client == null || Session.GetHabbo() != null)</p><p> return;</p><p></p><p> string SSO = Packet.PopString();</p><p> if (string.IsNullOrEmpty(SSO) || SSO.Length < 15)</p><p> return;</p><p></p><p> Session.TryAuthenticate(SSO);</p><p> }</p><p> }</p><p>}[/code]</p></blockquote><p></p>
[QUOTE="Larsbehet, post: 433512, member: 13943"] I am still having the same problem, even after a fresh download. Edit: Seems like RevCMS isn't generating an auth_ticket for accounts >24 hours. Edit: InitCryptoEvent and GenerateSecretKey are functioning now [doublepost=1525338349,1525290538][/doublepost]It seems like I got the auth_ticket issue is fixed, but once again, a new copy of PlusEmu won't go further then the SSOTicketEvent. In case you need it, here is my SSOTicketEvent.cs [code] 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); } } }[/code] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
76% problem [PlusEMU] [RevCMS]
Top