23.07.2012, 05:42
pawn Код:
stock EstaGirando(playerid)
{
new Animacion[32], Libreria[32];
GetAnimationName(GetPlayerAnimationIndex(playerid), Libreria, sizeof(Libreria), Animacion, sizeof(Animacion));
if(!strcmp(Libreria, "ped", true))
{
if(strcmp(Animacion,"Crounch_Roll_R") == 0|| strcmp(Animacion,"Crounch_Roll_L") == 0)
{
return 1;
}
}
return 0;
}