Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Mercury new navigator (hmercurry)

Status
Not open for further replies.
Newbie Spellweaver
Joined
Mar 25, 2011
Messages
75
Reaction score
2
When i click on the button for create a room, the server disconnect me?
someone know a fix?
 
Newbie Spellweaver
Joined
Mar 25, 2011
Messages
75
Reaction score
2
Someone Know where i can fix that?



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
 
Upvote 0
Newbie Spellweaver
Joined
Jul 12, 2012
Messages
45
Reaction score
8
Yes, it's because we changed room categories in order to get the new navigator working.
It will be fixed in a next build.
 
Upvote 0
Newbie Spellweaver
Joined
Jul 12, 2012
Messages
45
Reaction score
8
Even before, here's a fix :
Run this in database :
PHP:
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);
 
Upvote 0
Newbie Spellweaver
Joined
Mar 25, 2011
Messages
75
Reaction score
2
Even before, here's a fix :
Run this in database :
PHP:
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);

Thank you bro! You get a like ;)!
 
Upvote 0
Status
Not open for further replies.
Back
Top