Hey guys, I was wondering if there was a plugin to sync global server chat to my website (Such as a embedded module?) Thanks guys!
Hi! You need to create a bungee plugin which is listens to chat messages and send the messages to a website. In web side you should use Ajax to send every new messages. I think this may help you: http://www.dynamicajax.com/fr/AJAX_Driven_Web_Chat-271_290_291.html To send the messages to the web side you can send eg. a HTTP POST request. HTTP request example: http://www.mkyong.com/java/how-to-send-http-request-getpost-in-java/ After it works you can create a HTTP server (or a simple TCP server to receive the sent messages from the web). You can broadcast the received messages. Check the sender's ip address every time, to avoid the unsolicited messages.