View Single Post
  #1  
Old 06-19-2007, 02:26 AM
killerogue killerogue is offline
Registered Omega
killerogue's Avatar
Join Date: Apr 2006
Location: United States
Posts: 1,920
killerogue is on a distinguished road
Send a message via AIM to killerogue Send a message via MSN to killerogue
Replaceani Not Working?

I'm trying to make some functions I need to set some anis and such from a class, seeing as triggerclient or server hasn't been working for me classwise (thought Novo says it is possible).

Weapon
PHP Code:
public function aniSet(acctconditionaninewanianiparams) {
  
temp.attr 0;
  
temp.img 0;
  
  
plyr findPlayer(acct);
  
this.ani ani;
  
this.oldani ani;
  
this.newani newani;
  
  switch (
condition) {
    case 
"set":
      
with (plyr) {
        
triggerclient(this.name"set"thiso.anianiparams);
      }
    break;
    
    case 
"replace":
      if (
aniparams == NULL) {
        
with (plyr) {
          
triggerclient(this.name"replace"thiso.oldanithiso.newani);
        }
      }
    break;
  }
}

//#CLIENTSIDE
function onActionClientside(conditionaniinfo1aniinfo2) {
  
player.chat params;

  switch (
condition) {
    case 
"set":
      
setani(params[1], params[2]);
    break;
    
    case 
"replace":
      
player.replaceani(params[1], params[2]);
    break;  
  }

Test Weapon
PHP Code:
function onCreated() {
  
systemAniSet.aniSet("Chandler""replace""idle""mal_new_idle"NULL);

Seems replaceani is not working wherever I try it.
__________________


REMEMBER, IF YOU REP ME, LEAVE A NAME!

Quote:
Originally Posted by haunter View Post
Graal admins don't die. They go to hell and regroup.
Quote:
Originally Posted by Inverness View Post
Without scripters, your graphics and levels wouldn't do anything but sit there and look pretty.
Reply With Quote