06-07-2011, 18:10
this is from eekhoorn (thx btw)
but how do I make it so that i don't see the flames but they are on me(for each player) if that 's no possible, what do I have to delete to don't see it.
but how do I make it so that i don't see the flames but they are on me(for each player) if that 's no possible, what do I have to delete to don't see it.
Code:
doFire()
{
self.maxhealth = 100;
self.health = self.maxhealth;
tagArray[0] = "J_Spine1";
tagArray[1] = "j_knee_ri";
tagArray[2] = "j_knee_le";
tagArray[3] = "j_spine4";
tagArray[4] = "j_head";
for(;;)
{
wait 1;
for(i=0;i<tagArray.size;i++)
{
PlayFxOnTag(level._effect["character_fire_death_sm"], self, tagArray[i]);
}
}
}