Quote:
Originally Posted by Wizz123
pawn Код:
SetTimerEx("anim", 10000, false, "i", playerid); ApplyAnimation(playerid,"KNIFE","KILL_Knife_Ped_Die",4.0,0,1,1,1,0); TogglePlayerControllable(playerid, 0);
Put this under the OnPlayerDeath function.
pawn Код:
forward anim(playerid); public anim(playerid) { ToggePlayerControllable(playerid, 1); ClearAnimations(playerid); return 1; }
And this somewhere in your script.
|
Okay Thanks,But can you make it repeat the anim after like 3 seconds ?