05.06.2014, 10:48
Try
pawn Код:
stock IsPlayerInWater(playerid)
{
new index = GetPlayerAnimationIndex(playerid);
return ((index >= 1538) && (index <= 1541)) || index == 1544);
//or return ((1538 <= index <= 1541)) || index == 1544);
}