
Originally Posted by
Jilic-Matt
When you press the button in clickingbuttons add clicked interface = true
atm i have this
Code:
case 54186:
if (c.clickedInterface = false) {
c.getItems().addItem(621, 1);
c.clickedInterface = true;
} else if (c.clickedInterface = true) {
c.getPA().closeAllWindows();
}
break;
what you're saying is, i should do this?
Code:
case 54186:
c.clickedInterface = true;
if (c.clickedInterface = false) {
c.getItems().addItem(621, 1);
} else if (c.clickedInterface = true) {
c.getPA().closeAllWindows();
}
break;