MainFrame frame = new MainFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(new Dimension(700, 500));
frame.setAlwaysOnTop(true);
OutputPane out = frame.out;
out.end("<br/>");
out.end("Welcome to Starjweled screen analyser");
out.end("<br/>");
out.end("If you wana know how this script working please goto:<br/><a href='https://github.com/axet/starjeweled/wiki/Analyse'>https://github.com/axet/starjeweled/wiki/Analyse</a>");
out.end("<br/>");
out.end("If you have some problems please visit Bugs FAQ page:<br/><a href='https://github.com/axet/starjeweled/wiki/Bugs'>https://github.com/axet/starjeweled/wiki/Bugs</a>");
out.end("<br/>");
frame.setVisible(true);
App app = new App();
app.frame = frame;