Hi;
For most of the 317 client i'v seen, the colored fire is really a normal fire.
So i made a fix for it and used the original colored fire ids and without losing the animations.
So here you go!
Blue, Green and red fire:
Code:
case 11404://blue fire
// fireBone,shm3a,joanea,branea,7atab
objectDef.modifiedModelColors = new int[]{7105,8137,7130,5043,7082};
objectDef.originalModelColors = new int[]{43968,43991,43990,43949,43941};
break;
case 11406://green fire
// fireBone,shm3a,joanea,branea,7atab
objectDef.modifiedModelColors = new int[]{7105,8137,7130,5043,7082};
objectDef.originalModelColors = new int[]{22447,22459,22459,22432,22432};
break;
case 11405://red fire
// fireBone,shm3a,joanea,branea,7atab
objectDef.modifiedModelColors = new int[]{7105,8137,7130,5043,7082};
objectDef.originalModelColors = new int[]{934,961,960,938,935};
break;
Purple and white fire:
Code:
if(i == 11407 || i == 11408){
objectDef = forID(11404);
objectDef.type = i;
objectDef.modifiedModelColors = new int[]{7105,8137,7130,5043,7082};
if(i == 11407)
objectDef.originalModelColors = new int[]{51126,51149,51149,51113,51113};
else
objectDef.originalModelColors = new int[]{117,127,127,96,96};
return objectDef;
}
What you're adding:
Please thank and rep(karma) if you use