Anyone resolved the issue with the client crashing immediately on when clicked, with the error "KeyEvent cannot be resolved to a variable"?
//Key bindings?
if(openInterfaceId == 53000) {
for(int i = 0; i < 14; i++) {
if(button == 53048 + (i*3)) {
int key = KeyEvent.VK_F1 + first;
if(key > KeyEvent.VK_F12) {
key = KeyEvent.VK_ESCAPE;
}
TabBindings.bind(i, key);
return;




