Error in Plus Emu

Alezo

Member
Dec 18, 2016
90
10
2017-04-10 00:10:37,343 ERROR - Exception >> Exception:
System.FormatException: A cadeia de caracteres de entrada não estava em um formato correto.
em System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
em System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
em System.Convert.ToInt32(String value)
em Plus.Core.FigureData.FigureDataManager.ProcessFigure(String figure, String gender, ICollection`1 clothingParts, Boolean hasHabboClub) na C:\Users\Admin\Downloads\Build2\Release 2\Emulator Source\Core\FigureData\FigureDataManager.cs:linha 204
em Plus.HabboHotel.GameClients.GameClient.TryAuthenticate(String AuthTicket) na C:\Users\Admin\Downloads\Build2\Release 2\Emulator Source\HabboHotel\GameClients\GameClient.cs:linha 198
 

Marko97

M97 Project based Plus EMU
Aug 7, 2013
99
45
Run this query:
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';

Later, go to ur database, go to rooms and check if some values are empty. Remember: Only "description", "password" and "tags" can be empty.
 

Kak

Posting Freak
Apr 21, 2017
951
165
Run this query:
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';

Later, go to ur database, go to rooms and check if some values are empty. Remember: Only "description", "password" and "tags" can be empty.
post this in the main plus help thread. will help alot of people
 

Alezo

Member
Dec 18, 2016
90
10
Run this query:
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';

Later, go to ur database, go to rooms and check if some values are empty. Remember: Only "description", "password" and "tags" can be empty.

Thanks a lot, man. In addition to solving the error in searching for rooms in navigation, it still solved the 76% error on the client when entering certain rooms.

The "password" and "tag" columns are empty, except the "description" column. This fix helped a lot of people!
 

Users who are viewing this thread

Top