[PACKETLIST][PLUSEMU] Does anyone have a list of packets for PlusEMU?
Title pretty much says it all but I mean the PlusEMU Version released by Joseph and zJordan. I think there might be a couple of broken packets due to a couple of weird bugs. So I'm wondering does anyone have a list of the packet's? Preferred that there organised and readable, but if not then that will ok. I don't quite know the exact SWF build number, if someone does please post below.
The exact packet I think isn't right is the room settings one as it doesn't seem to be saving, and you can't click room settings again untill you reload the client.
Re: [PACKETLIST][PLUSEMU] Does anyone have a list of packets for PlusEMU?
Here this will fix the room settings bug
PHP Code:
DROP TABLE IF EXISTS `navigator_flatcats`;
CREATE TABLE `navigator_flatcats` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`caption` varchar(100) NOT NULL,
`enabled` enum('0','1') NOT NULL DEFAULT '1',
`min_rank` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of navigator_flatcats
-- ----------------------------
INSERT INTO `navigator_flatcats` VALUES ('15', 'No Category', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('1', 'Habbo Staff Rooms µ', '1', '4');
INSERT INTO `navigator_flatcats` VALUES ('2', 'Competition Category', '0', '1');
INSERT INTO `navigator_flatcats` VALUES ('3', 'unused competition category', '0', '1');
INSERT INTO `navigator_flatcats` VALUES ('4', 'Themed & RPG Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('5', 'Restaurant, Bar & Night Club Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('6', 'Club & Group Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('7', 'Chat, Chill & Discussion Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('8', 'Maze & Theme Park Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('9', 'Trading & Shopping Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('10', 'Gaming & Race Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('11', 'Hair Salons & Modelling Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('12', 'Help Centre, Guide & Service Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('13', 'School, Daycare & Adoption Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('14', 'All Other Rooms', '1', '1');
Re: [PACKETLIST][PLUSEMU] Does anyone have a list of packets for PlusEMU?
Quote:
Originally Posted by
YoWesty
Here this will fix the room settings bug
PHP Code:
DROP TABLE IF EXISTS `navigator_flatcats`;
CREATE TABLE `navigator_flatcats` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`caption` varchar(100) NOT NULL,
`enabled` enum('0','1') NOT NULL DEFAULT '1',
`min_rank` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of navigator_flatcats
-- ----------------------------
INSERT INTO `navigator_flatcats` VALUES ('15', 'No Category', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('1', 'Habbo Staff Rooms µ', '1', '4');
INSERT INTO `navigator_flatcats` VALUES ('2', 'Competition Category', '0', '1');
INSERT INTO `navigator_flatcats` VALUES ('3', 'unused competition category', '0', '1');
INSERT INTO `navigator_flatcats` VALUES ('4', 'Themed & RPG Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('5', 'Restaurant, Bar & Night Club Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('6', 'Club & Group Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('7', 'Chat, Chill & Discussion Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('8', 'Maze & Theme Park Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('9', 'Trading & Shopping Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('10', 'Gaming & Race Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('11', 'Hair Salons & Modelling Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('12', 'Help Centre, Guide & Service Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('13', 'School, Daycare & Adoption Rooms', '1', '1');
INSERT INTO `navigator_flatcats` VALUES ('14', 'All Other Rooms', '1', '1');
Cheers for that, fixed it like a charm. Also found what else I was needing. MOD Close thread please :)