23.06.2013, 09:20
https://sampwiki.blast.hk/wiki/OnPlayerKeyStateChange
I suggest you to read the wiki of OnPlayerKeyState first.
pawn Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if(newkeys & KEY_NO) //Normal no response is of key "N".
{
//Stuffs here.
}
return 1;
}

