try {
URL fontURL = com.golden.gamedev.Game.class.getResource("Game.fnt");
BufferedImage fpsImage = ImageUtil.getImage(fontURL);
this.fontManager = new GameFontManager();
GameFont font = this.fontManager.getFont(fpsImage);
// clear background with red color
// and write cracked version!
Graphics2D g = this.bsGraphics.getBackBuffer();
g.setColor(Color.RED.darker());
g.fillRect(0, 0, this.getWidth(), this.getHeight());
font.drawString(g, "THIS GAME IS USING", 10, 10);
font.drawString(g, "GTGE CRACKED VERSION!!", 10, 30);
font.drawString(g, "PLEASE REPORT THIS GAME TO", 10, 50);
font.drawString(g, "WWW.GOLDENSTUDIOS.OR.ID", 10, 70);
font.drawString(g, "THANK YOU....", 10, 105);
this.bsGraphics.flip();
// wait for 8 seconds
this.bsInput = new AWTInput(this.bsGraphics.getComponent());