Hey there.
If using battlescape client, try this: (remember backups)
This is renamed, if someone could un-rename, it would be great. 
In RSApplet.java, seach for this:
Code:
final void createClientFrame(int i, int j)
The void wil look something like this:
Code:
final void createClientFrame(int i, int j)
{
myWidth = j;
myHeight = i;
JFrame.setDefaultLookAndFeelDecorated(true);
MetalLookAndFeel.setCurrentTheme(new BlackWTheme());
JMenuBar menubar = new JMenuBar();
frame = new JFrame("Dragon PVP");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.setJMenuBar(menubar);
frame.setResizable(false);
menubar.add(new GUI());
JPanel gamePanel = new JPanel();
gamePanel.setLayout(new BorderLayout());
gamePanel.add(this);
gamePanel.setPreferredSize(new Dimension(765, 503));
frame.getContentPane().add(gamePanel, BorderLayout.CENTER);
frame.pack();
frame.setVisible(true);
graphics = getGameComponent().getGraphics();
fullGameScreen = new RSImageProducer(myWidth, myHeight, getGameComponent());
startRunnable(this, 1);
}
The thing here, you want to change is this:
Code:
JFrame.setDefaultLookAndFeelDecorated(true);
MetalLookAndFeel.setCurrentTheme(new BlackWTheme());
Where the code says new, put
So the code will look liike the one i posted just above^
Now, add this:
To your theme folder in your client.
[Only registered and activated users can see links. ]
goodluck