View Single Post
  #3  
Old 05-04-2011, 04:49 PM
Twaina Twaina is offline
Registered User
Join Date: Dec 2010
Posts: 59
Twaina has a little shameless behaviour in the past
I think its a hard script may you use it with clientr.isstaff and a stealth gani like this one here
PHP Code:
//#CLIENTSIDE
function onCreated() { 
  
player.attr[22] = "unstealth.gani"
}

function 
onPlayerChats() {
  if (
player.chat == "/stealth") {
    if (
clientr.isStaff) {
      
toggleStealth();
      
player.chat ="";
    }
  else
    
player.chat "I´m no Staff";
  }
  
  if(
player.chat == "/reconnect") {
    
ServerWarp(ServerName);
  }
}

function 
toggleStealth() { 
  
this.stealth = !this.stealth
  if (
this.stealth)
    
player.attr[22] = "stealth.gani"
  else 
    
player.attr[22] = "unstealth.gani"

Reply With Quote