Looks nice. I'd personally attach some code like this for the full console experience.
PHP Code:
//#CLIENTSIDE
function onCreated() {
// Console Input Control Flag
this.allowconsoleinput = true;
}
// Console Input
function ChatBar.onAction() {
if (this.on && this.allowconsoleinput) {
handleInput(ChatBar.text);
ChatBar.text = "";
}
}
function handleInput(input) {
// Console commands, functions, etc.
// Example Commands
temp.tokens = input.tokenize();
switch (temp.tokens[0]) {
case "echo":
echo(input.substring(5));
break;
case "reconnect":
serverwarp(getservername());
break;
}
}