Quote:
|
How else do you hide the chatbar?
|
Left clicking anywhere in your Graal screen that there is no GUI or such.
Edit: Something like this:
PHP Code:
//#CLIENTSIDE
function onMouseDown() {
if (leftMouseButton) {
if (ChatBar.visible == true) {
sleep(0.05);
if (ChatBar.visible == false) {
//hide image?
}
}
}
}