When i click on the button for create a room, the server disconnect me?
someone know a fix?
Printable View
When i click on the button for create a room, the server disconnect me?
someone know a fix?
Someone Know where i can fix that?
- - - Updated - - -
This gives the server:
Kay = BEZIG!: ** Connected in 1641 ** Connected with 1 attempts ** Room id: 6 ** Library url http://thisismysite/game/gordon/RELEASE63-201409222303-304766480/hh_human_acc_waist.swf ** Library name hh_human_acc_waist ** Canvas count: 1 ** 238,S:1444,S:3982,S:3494,R:2750,R:2988,R:1732,R:862,R:151,S:1913,R:415,S:1913,R:415,S:3982,S:3494,R:151,S:1913,R:415,S:1687,S:1785,S:2364,R:279,R:2844 ** Memory usage: 177 MB Error in update receiver "com.sulake.bootstrap::HabboWindowManagerComponentBootstrap": TypeError: Error #1009
Do you use the right Habbo.swf?
Getting the same thing now, are you also using RevCMS?
Yes, it's because we changed room categories in order to get the new navigator working.
It will be fixed in a next build.
Even before, here's a fix :
Run this in database :
PHP Code:DROP TABLE IF EXISTS `navigator_flatcats`;
CREATE TABLE IF NOT EXISTS `navigator_flatcats` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`caption` varchar(100) NOT NULL,
`enabled` enum('0','1','2') NOT NULL DEFAULT '1',
`min_rank` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
INSERT INTO `navigator_flatcats` (`id`, `caption`, `enabled`, `min_rank`) VALUES
(1, 'No category', '2', 1);