SA-MP Forums Archive
[AJUDA]Entrando com 'F' - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA]Entrando com 'F' (/showthread.php?tid=334303)



[AJUDA]Entrando com 'F' - Manoloww - 14.04.2012

Segui este tutorial para entrar em interiores apertando F/Enter

https://sampforum.blast.hk/showthread.php?tid=259611

Alguйm poderia me dizer,como faзo para utilizar com ZCMD?

Grato.


Re: [AJUDA]Entrando com 'F' - WLSF - 14.04.2012

Й simples й sу chamar o comando de entrar no OnPlayerKeyStateChange

pawn Код:
cmd_NOME(playerid, "");
Exemplo:
pawn Код:
public OnPlayerKeySateChange(playerid, newkeys, oldkeys)
{
    if(newkeys == 16)
    {
        cmd_NOME(playerid, "");
        return 1;  
    }
    return 1;
}
Basta fazer o comando em zcmd...


Re: [AJUDA]Entrando com 'F' - Manoloww - 14.04.2012

Jб consegui,obrigado.