22.06.2009, 17:44
try this?
Код:
SetTimer("onfoot", 600, 0);
Код:
forward onfoot(playerid);
public onfoot(playerid)
{
if(GetPlayerState(playerid) == PLAYER_STATE_ONFOOT)
{
ResetPlayerWeapons(playerid);
return 1;
}
}

