Could someone upload a complied version of this?
Could someone upload a complied version of this?
Editing the code I got it:
![]()
Here you go:
Debug
Bots Freeroam fix:
Go to Silvarwave/HabboHotel/RoomBots/GenericBot.cs
Find:Replace:Code:internal override void OnTimerTick()Screen: http://i.imgur.com/r1KTp52.pngCode:internal override void OnTimerTick() { if (base.GetBotData() != null) { if (this.SpeechTimer <= 0) { if (base.GetBotData().RandomSpeech.Count > 0) { if (canSpeak) { RandomSpeech randomSpeech = base.GetBotData().GetRandomSpeech(); base.GetRoomUser().Chat(null, randomSpeech.Message, randomSpeech.Shout, 0); } } this.SpeechTimer = speechDelta; } else { this.SpeechTimer--; } if (this.nextAction > 0) { this.nextAction--; } else { switch (base.GetBotData().WalkingMode.ToLower()) { case "freeroam": { Point point = base.GetRoom().GetGameMap().getRandomWalkableSquare(); base.GetRoomUser().MoveTo(point.X, point.Y); break; } case "specified_range": { Point point = base.GetRoom().GetGameMap().getRandomWalkableSquare(); base.GetRoomUser().MoveTo(point.X, point.Y); break; } } this.nextAction = new Random(DateTime.Now.Millisecond + this.virtualId ^ 2).Next(15, 30); } } } }
Last edited by Jeanzinh0; 27-12-13 at 11:15 PM.
Srry I had to go shopping. Should be online for the next hours now. https://secure.join.me/604-074-493
My current to-do list is (in that order. Please notice that I won't be able to do all of it today):
Handle Room-Settings with no rollbacks.
Room fowarding
Basic Catalogue Pages implementation
Bots Catalogue Page
Room Chat options
Bot Serializing and room testing: Walking, Talking and Dancing. Stress test the room with 30 bots.
General catalogue implementation: General Furni listing and buying
New floor furni Heightmap tests
Missing catalogue buying furni aspects: Gifts, Limited Edition and Seasonal Currency
Are u gonna release it?
When I upload the DB i get over 10000 errors in Navicat. Can anyone help me solve this?
![]()
Will you be updating to the new UI in your next revision release?
Wired are completely working fine for me.. and Here is a SQL for Room Catagories;
If anyone wants it :DINSERT INTO `navigator_flatcats` VALUES ('15', 'No Category', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('1', 'Chrome Staff Room', '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');