Thread: Staff/SetAni
View Single Post
  #1  
Old 02-06-2016, 10:26 PM
defaultaccount defaultaccount is offline
Cassini
Join Date: Feb 2006
Location: HeLLifAX
Posts: 299
defaultaccount is on a distinguished road
Staff/SetAni

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];
    }
  }

Reply With Quote