this script isn't working at all for me. I'm trying to make it so it sets animations for example : /ani PB_Gun21-Idle.gani
but its not working. Any help?
PHP Code:
function ChatBar.onAction() {
tokens = ChatBar.text.tokenize();
if (tokens[0] == "/ani") {
if (tokens[1] == "idle") {
client.gani_idle = tokens[2];
} elseif (tokens[1] == "walk") {
client.gani_walk = tokens[2];
}
}
}