[Problem]
#1

How to check is player on foot?
Код:
  	if (HOLDING( KEY_UP ))
	{

		{
			LoopingAnim(playerid,"PED","WALK_gang2",4.1,1,1,1,1,1);
    }
	}
	if (RELEASED( KEY_UP ))
	{

		{
			ClearAnimations(playerid);
		}
	}
Reply
#2

pawn Код:
if(GetPlayerState(playerid) == PLAYER_STATE_ONFOOT)
{
  //Player is onfoot.
}
Reply
#3

Ok that all i needed.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)