SA-MP Forums Archive
Help For Key To Command - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help For Key To Command (/showthread.php?tid=489809)



Help For Key To Command - amirho3ein - 24.01.2014

Hoy I Can Use Key To Command/I Using SFCRRPG GAmeMode
Example: Iwant Using Left Alt key Instead /robstore cmd
Help Me Pls


Re: Help For Key To Command - amirho3ein - 25.01.2014

No Body For help Me?


Re: Help For Key To Command - Dignity - 25.01.2014

Use these function(s):

https://sampwiki.blast.hk/wiki/OnPlayerKeyStateChange

https://sampwiki.blast.hk/wiki/Keys

pawn Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if (PRESSED(KEY_WALK))
    {
    // Code here
    }
    return 1;
}