Is it possible to send multiple trigger actions to the same thing? This is just an example of what i'm mean by sending from client->serverside. It is only doing the first one I try to send.
PHP Code:
function onKeyPressed(keycode, char, scancode) {
if(keycode == 192) {
triggerserver("gui", "-loltest", "flip", 1);
triggerserver("gui", "-loltest", "flip", 2);
triggerserver("gui", "-loltest", "flip", 3);
}
}