01.01.2011, 23:00
I just got this to work, here's how I did it
Then OnPlayerRequestClass
I put it in middle of all my other variables in OnPlayerRequestClass but otherwise it would be
Hope it works buddy
Код:
forward classanim(playerid); public classanim(playerid) { ApplyAnimation(playerid,"STRIP","Strip_D",4.1,0,0,0,0,1); return 1; }
Код:
SetTimer("classanim",1000,0); ApplyAnimation(playerid,"STRIP","strip_D",4,1,0,0,0,0,1);
Код:
public OnPlayerRequestClass(playerid, classid); { SetTimer("classanim",1000,0); ApplyAnimation(playerid,"STRIP","strip_D",4,1,0,0,0,0,1); return 1; }