SA-MP Forums Archive
[AJUDA] equipar 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] equipar com "F" (/showthread.php?tid=276116)



[AJUDA] equipar com "F" - histire - 12.08.2011

tipw como o titulo ja diz queria uma ajuda pra quando o player apertase "f" ou "enter" onde equipa ele equipase ou abrise 1 menu em dialog pra equipar etc.. eu nao estou falando ki quero ki vcs faz e sim ke me ensinen se tiver como agradeзo (:


Re: [AJUDA] equipar com "F" - Allan Kardec - 12.08.2011

https://sampwiki.blast.hk/wiki/GetPlayerKeys#Key_List



Att.: Button.


Re: [AJUDA] equipar com "F" - histire - 12.08.2011

entao 6.6.6 eu ja vi isso eu entendi +- nao entendi direito como faser
tiver como me da 1 exemplo ;s


Re: [AJUDA] equipar com "F" - Allan Kardec - 12.08.2011

pawn Код:
if(newkeys == 16) // 16 й o nъmero da tecla
{
     if(!IsPlayerInRangeOfPoint(playerid, 5.0, pX, pY, pZ))
     {
          SendClientMessage(playerid, 0xC96969FF, "Vocк tem que estar no local para equipar"); // vai verificar se ele tб na cordenada se nгo tiver retorna a mensagem
     }
     GivePlayerWeapon(playerid, 24, 200); // vai setar a arma a ele
     SendClientMessage(playerid, 0xE31919FF, "[~] {FFFFF}Vocк recebeu uma Eagle!"); // vai enviar a msg a ele.
}
Este cуdigo tem que estar na public OnPlayerKeyStateChange.


Re: [AJUDA] equipar com "F" - histire - 12.08.2011

muito obrigado 6.6.6 repu (:


Re: [AJUDA] equipar com "F" - Allan Kardec - 12.08.2011

nada ^^ precisar estamos ai. hehe


Re: [AJUDA] equipar com "F" - histire - 12.08.2011

cara tah dand oseguinte erro
pawn Код:
C:\Users\Marli\Downloads\Iniciante\gamemodes\Iniciante.pwn(207) : error 010: invalid function or declaration
C:\Users\Marli\Downloads\Iniciante\gamemodes\Iniciante.pwn(209) : error 029: invalid expression, assumed zero
C:\Users\Marli\Downloads\Iniciante\gamemodes\Iniciante.pwn(209) : error 029: invalid expression, assumed zero
C:\Users\Marli\Downloads\Iniciante\gamemodes\Iniciante.pwn(211) : error 010: invalid function or declaration
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


4 Errors.

linha do erro :;
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if ((newkeys == 16))
}
if(!IsPlayerInRangeOfPoint(playerid, 5.0, 1152.4468,-1186.6064,32.0275))


Re: [AJUDA] equipar com "F" - Allan Kardec - 12.08.2011

pawn Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if(newkeys == 16) // 16 й o nъmero da tecla
    {
         if(!IsPlayerInRangeOfPoint(playerid, 5.0, pX, pY, pZ))
         {
              SendClientMessage(playerid, 0xC96969FF, "Vocк tem que estar no local para equipar"); // vai verificar se ele tб na cordenada se nгo tiver retorna a mensagem
         }
         GivePlayerWeapon(playerid, 24, 200); // vai setar a arma a ele
         SendClientMessage(playerid, 0xE31919FF, "[~] {FFFFF}Vocк recebeu uma Eagle!"); // vai enviar a msg a ele.
     }
     return 1;
}



Re: [AJUDA] equipar com "F" - histire - 12.08.2011

erro continua nessas 2 linha
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if(newkeys == 16) // 16 й o nъmero da tecla