05.02.2016, 20:24
Quote:
|
Use the IsPlayerIdle snippet and edit it so that the animation only plays if the player is idle, which means that no other animations are currently playing.
Код:
stock IsPlayerIdle(playerid) {
new
index = GetPlayerAnimationIndex(playerid);
return ((index == 1275) || (1181 <= index <= 1192));
}
|


