Getting this error when trying to launch PlusEmu

hipuh

New Member
May 7, 2019
14
0
System.FormatException: Indatasträngen hade ett felaktigt format.
vid System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
vid System.Double.Parse(String s)
vid Plus.HabboHotel.Items.ItemData..ctor(Int32 Id, Int32 Sprite, String Name, String PublicName, String Type, Int32 Width, Int32 Length, Double Height, Boolean Stackable, Boolean Walkable, Boolean IsSeat, Boolean AllowRecycle, Boolean AllowTrade, Boolean AllowMarketplaceSell, Boolean AllowGift, Boolean AllowInventoryStack, InteractionType InteractionType, Int32 behaviourData, Int32 Modes, String VendingIds, String AdjustableHeights, Int32 EffectId, Boolean IsRare, Boolean ExtraRot) i C:\Users\Sledmore\Desktop\PlusEMU\HabboHotel\Items\ItemData.cs:rad 83
vid Plus.HabboHotel.Items.ItemDataManager.Init() i C:\Users\Sledmore\Desktop\PlusEMU\HabboHotel\Items\ItemDataManager.cs:rad 68


(
System.FormatException: The input string had an incorrect format.
at System.Number.ParseDouble (String value, NumberStyles options, NumberFormatInfo numfmt)
at System.Double.Parse (String s)
at Plus.HabboHotel.Items.ItemData..ctor (Int32 Id, Int32 Sprite, String Name, String PublicName, String Type, Int32 Width, Int32 Length, Double Height, Boolean Stackable, Boolean Walkable, Boolean IsSeat, Boolean AllowRecycle, Boolean AllowTrade , Boolean AllowMarketplaceSell, Boolean AllowGift, Boolean AllowInventoryStack, InteractionType InteractionType, Int32 behaviorData, Int32 Modes, String VendingIds, String AdjustableHeights, Int32 EffectId, Boolean IsRare, Boolean ExtraRot) i C: Users Sledmore ItemData.cs: line 83
at Plus.HabboHotel.Items.ItemDataManager.Init () in C: Users Sledmore Desktop PlusEMU HabboHotel ItemsDataManager.cs: line 68 )
^t that one is translated using google




Sorry for having it in swedish, but if you recognize the error, please help me.
 

hipuh

New Member
May 7, 2019
14
0
Try disable MySQL strict mode? There’s an incorrect format for the string, my guess is an item.
and where exactly would i disable that?
Post automatically merged:

Try disable MySQL strict mode? There’s an incorrect format for the string, my guess is an item.


thats the current setting, wouldn't that mean that it is not in strict mode?
Post automatically merged:

Try disable MySQL strict mode? There’s an incorrect format for the string, my guess is an item.
These are the two lines that it has an issue with, do you see anything out of the ordinary?

this._gifts.Add(spriteID, new ItemData(id, spriteID, itemName, PublicName, type, width, length, height, allowStack, allowWalk, allowSit, allowRecycle, allowTrade, allowMarketplace, allowGift, allowInventoryStack, interactionType, behaviourData, cycleCount, vendingIDS, heightAdjustable, EffectId, IsRare, ExtraRot));

this.AdjustableHeights.Add(double.Parse(H));
 
Last edited:

harambe

Donator
Dec 3, 2018
154
115
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.
 

Users who are viewing this thread

Top