Error help!

exeifytd

New Member
Feb 21, 2016
25
2
Time: 2018-08-06 01:18:21,722
Thread: 19
Exception:
System.FormatException: Input string was not in a correct format.
at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
at System.Convert.ToInt32(String value)
at Plus.HabboHotel.Rooms.RoomData.Fill(DataRow Row) in C:\Users\Administrator\Downloads\habnite\Main Emulator\Emulator Source\HabboHotel\Rooms\RoomData.cs:line 88
at Plus.HabboHotel.Rooms.RoomManager.FetchRoomData(Int32 RoomId, DataRow dRow) in C:\Users\Administrator\Downloads\habnite\Main Emulator\Emulator Source\HabboHotel\Rooms\RoomManager.cs:line 400
at Plus.HabboHotel.Users.UserData.UserDataFactory.GetUserData(String SessionTicket, Byte& errorCode) in C:\Users\Administrator\Downloads\habnite\Main Emulator\Emulator Source\HabboHotel\Users\UserData\UserDataFactory.cs:line 158
at Plus.HabboHotel.GameClients.GameClient.TryAuthenticate(String AuthTicket) in C:\Users\Administrator\Downloads\habnite\Main Emulator\Emulator Source\HabboHotel\GameClients\GameClient.cs:line 124


anyone that can help me out?
 

Berk

berkibap#4233
Developer
Oct 17, 2015
863
190
Check your rooms table, there should not be empty rows in allow_pets, allow_pets_eat etc, only tags, description and password can be empty.
 

exeifytd

New Member
Feb 21, 2016
25
2
Check your rooms table, there should not be empty rows in allow_pets, allow_pets_eat etc, only tags, description and password can be empty.
I tryed to make everything allow = but i stil get this errors and some of the users can not get into the client not even me when i create a new account it works?
Date/Time: 2018-08-05 20:21:31,962
Thread: 25
Exception:
System.NullReferenceException: Object reference not set to an instance of an object.
at Plus.HabboHotel.Groups.GroupManager.GetGroupColour(Int32 Index, Boolean Colour1) in C:\Users\Administrator\Desktop\Main Emulator\Emulator Source\HabboHotel\Groups\GroupManager.cs:line 46
at Plus.Communication.Packets.Outgoing.Users.ProfileInformationComposer..ctor(Habbo Data, GameClient Session, List`1 Groups, Int32 friendCount) in C:\Users\Administrator\Desktop\Main Emulator\Emulator Source\Communication\Packets\Outgoing\Users\ProfileInformationComposer.cs:line 37
at Plus.Communication.Packets.Incoming.Users.OpenPlayerProfileEvent.Parse(GameClient Session, ClientPacket Packet) in C:\Users\Administrator\Desktop\Main Emulator\Emulator Source\Communication\Packets\Incoming\Users\OpenPlayerProfileEvent.cs:line 38
at Plus.Communication.Packets.PacketManager.TryExecutePacket(GameClient Session, ClientPacket Packet) in C:\Users\Administrator\Desktop\Main Emulator\Emulator Source\Communication\Packets\PacketManager.cs:line 154
at Plus.HabboHotel.GameClients.GameClient.parser_onNewPacket(ClientPacket Message) in C:\Users\Administrator\Desktop\Main Emulator\Emulator Source\HabboHotel\GameClients\GameClient.cs:line 65
 

exeifytd

New Member
Feb 21, 2016
25
2
Check your groups table, there must be a empty value too.
it was room table , it got a error and something is really wrong when i click on room settings then click do not allow pets it comes out to be insvinsble ??? like no value in the database? Ya know how to fix it?
 

Joshhh

Member
Apr 13, 2016
323
172
Run this as a query;
Code:
ALTER TABLE `rooms` CHANGE `allow_pets` `allow_pets` INT(1) NOT NULL DEFAULT '0', CHANGE `allow_pets_eat` `allow_pets_eat` INT(1) NOT NULL DEFAULT '0', CHANGE `room_blocking_disabled` `room_blocking_disabled` INT(1) NOT NULL DEFAULT '0', CHANGE `allow_hidewall` `allow_hidewall` INT(1) NOT NULL DEFAULT '0', CHANGE `mute_settings` `mute_settings` INT(1) NOT NULL DEFAULT '1', CHANGE `ban_settings` `ban_settings` INT(1) NOT NULL DEFAULT '1', CHANGE `kick_settings` `kick_settings` INT(1) NOT NULL DEFAULT '1';
 

Users who are viewing this thread

Top