1 Go to - > https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en
2 Add Tampermonkey to google chrome browser
3 Tampermonkey -> Add news script
3 in script below (on the bottom ) find YourNICKNAME and replace it with ur nick name
4 copy and paste script in Tampermonkey -> Add news script
5 save script
6 reload game window
7 scroll down to the bottom
8 wait for chat to connect to server
9 enjoy the magic
if u need any help just send me message
// ==UserScript==
// @name http://s1.mlgame.co.uk/
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @description enter something useful
// @match http://s1.mlgame.co.uk/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
// @copyright 2012+, You
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('#wrapper{width:100%;height:1500px;border:1px solid black;overflow:auto}#first{float:left;width:63%;border:1px solid red}#second{border:1px solid green;margin:0 0 0 64%}');
var calc =
'<div id="wrapper"> '
+ '<div id="first">'
+ ' <iframe src="http://en.mylandsgame.info/calc/" style="border:0px #FFFFFF none;" name="iFrame1" scrolling="yes" frameborder="0" height="100%" width="99%"> '
+ ' </iframe> '
+ '</div> '
+ '<div id="second">'
+ '<div><iframe src="http://lightirc.com/start/?host=irc.lightirc.com&autojoin=%23strangers&showNickSelection=true&nick=YourNICKNAME" style="width:99%; height:40%;"></iframe><div>'
+ ' </div> </div>';
$('body').append(calc);