Zaps bfly emu, changing to auth_ticket?
Hello, I'm trying to edit Zaps R63A emulator to get the SSO from auth_ticket instead of users_tickets, I believe I've almost successfully done it, but when I go to enter the client I receive this error as a critical exception.
PHP Code:
TokenID: 1Invalid Dario bug duing user login: System.NotImplementedException: The method or operation is not implemented. at Butterfly.HabboHotel.Users.UserDataManagement.UserDataFactory.GetUserData(String AuthTicket, Byte& errorCode) in C:\Users\User1\Downloads\ZAP SOURCE\ZAP SOURCE\Butterfly Emulator\HabboHotel\Users\UserData\UserDataFactory.cs:line 397 at Butterfly.HabboHotel.GameClients.GameClient.tryLogin(String AuthTicket) in C:\Users\User1\Downloads\ZAP SOURCE\ZAP SOURCE\Butterfly Emulator\HabboHotel\GameClients\GameClient.cs:line 123
I've looked at both of those lines and this is what they show.
UserDataFactory.cs:line397
PHP Code:
throw new NotImplementedException();
GameClient.cs:line123
PHP Code:
UserData userData = UserDataFactory.GetUserData(AuthTicket, out errorCode);
If you know what I've done wrong/know how to fix it don't hesitate to reply.
Thanks in advance,
Alturax
Re: Zaps bfly emu, changing to auth_ticket?
Sounds like you're fetching empty/ invalid data which is causing the emulator to throw the NotImplementedException.
If you would, post the code you modified/ wrote to retrieve the SSO from auth_ticket.