I use this code to get animation and when it finishes player's arms get stuck, they freeze, why? How to solve?
I want player walking while he's running animation
I want player walking while he's running animation
PHP Code:
ApplyAnimation(playerid, "PED", "IDLE_CHAT", 4.1, 0, 0, 0, 1, 1);
SetTimerEx("StopAnimation",2500, false, "i", playerid);
public StopAnimation(playerid)
{
ApplyAnimation(playerid, "PED", "IDLE_CHAT", 4.1, 0, 0, 0, 1, 1);
return 1;
}