• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

WibboEmulator + Client websocket engine

Newbie Spellweaver
Joined
Mar 30, 2014
Messages
8
Reaction score
0
Hello Jason,
After doing all the steps transferred the swf in the good doc, I have a problem the customer's page is like his, impossible to launch the hotel what to do?

http://prntscr.com/np0in1
end
Screenshot by Lightshot
Hello Jason,After doing all the steps transferred the swf in the good doc, I have a problem the customer's page is like his, impossible to launch the hotel what to do?
 
Newbie Spellweaver
Joined
Feb 7, 2014
Messages
55
Reaction score
9
Hello Jason,
After doing all the steps transferred the swf in the good doc, I have a problem the customer's page is like his, impossible to launch the hotel what to do?

http://prntscr.com/np0in1
end
Screenshot by Lightshot
Hello Jason,After doing all the steps transferred the swf in the good doc, I have a problem the customer's page is like his, impossible to launch the hotel what to do?


Checked in the console dev if there are errors
 
Last edited by a moderator:
Newbie Spellweaver
Joined
Feb 7, 2014
Messages
55
Reaction score
9
Initiate Mage
Joined
May 24, 2019
Messages
4
Reaction score
1
Hello, it's in localhost.. But it's the same problem with all look code
 
Newbie Spellweaver
Joined
Feb 7, 2014
Messages
55
Reaction score
9
Hello, I warn that I updated for WibboEmulator and Client Websocket

-Update production for open source Habbo.swf ( https://github.com/JasonWibbo/HabboSwfOpenSource )
-SoundManager for playing one or multi song
-Chatlog
-ignoreall cmd (the user is muted but without knowing it)
-A lot of little fixe
-and other stuff i forgot

SQL Update:
Code:
CREATE TABLE `chatlogs` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `user_id` int(11) NOT NULL,  `room_id` int(11) NOT NULL,  `user_name` varchar(200) NOT NULL,  `timestamp` double NOT NULL,  `message` varchar(150) NOT NULL,  `type` varchar(10) NOT NULL,  PRIMARY KEY (`id`),  KEY `user_id` (`user_id`),  KEY `room_id` (`room_id`),  KEY `timestamp` (`timestamp`),  FULLTEXT KEY `message` (`message`)) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;

ALTER TABLE `users`ADD COLUMN `ignoreall`  enum('0','1') NOT NULL DEFAULT '0' AFTER `langue`;
 
Back
Top