SA-MP Forums Archive
[Ajuda] ajuda /jetpack - 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] ajuda /jetpack (/showthread.php?tid=437225)



ajuda /jetpack - Wanderson_SAMP - 14.05.2013

Queria que o Jetpack dos Sуcios desaparecesi quando eles apertarem "F" pra sair do Mesmo.

Код:
if(strcmp(cmdtext, "/jetpack", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(PlayerInfo[playerid][pJailed] != 0)
    	    {
	   			SendClientMessage(playerid,COLOR_GREY,"Vocк nгo pode pegar seu jetpack na cadeia");
	   			return 1;
    	    }
    	    if(PlayerPaintballing[playerid] != 0)
    		{
	   			SendClientMessage(playerid,COLOR_GREY," Vocк nгo pode usar seu jet no evento!");
	   			return 1;
    		}
            if(PlayerInfo[playerid][pSocio] == 1)
            {
                    if(IsPlayerInAnyVehicle(playerid)) return  SendClientMessage(playerid, COLOR_WHITE, "Vocк Nгo Pode Usar /jetpack em Um Veiculo !");
                    SetPlayerSpecialAction(playerid, 2);
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    format(string, sizeof(string), "Sуcio %s Pegou seu JetPack", sendername);
                    ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                    return 1;
            }
        }
        return 1;
    }



Re: ajuda /jetpack - feliphemort - 14.05.2013

Tenta ai na public OnPlayerKeyStateChange
pawn Код:
if(newkeys == KEY_SECONDARY_ATTACK)
{
if(GetPlayerSpecialAction(playerid) == SPECIAL_ACTION_USEJETPACK)
{
SetPlayerSpecialAction(playerid, SPECIAL_ACTION_NONE);
}
}



Re: ajuda /jetpack - Wanderson_SAMP - 14.05.2013

Vou testar, vc tem SKP felipe?


Re: ajuda /jetpack - Wanderson_SAMP - 14.05.2013

deu nao felipe.


Re: ajuda /jetpack - Coreia - 14.05.2013

pawn Код:
if(newkeys == KEY_SECONDARY_ATTACK){ return OnPlayerCommandText(playerid,"/jetpack"); }



Re: ajuda /jetpack - Wanderson_SAMP - 14.05.2013

Quote:
Originally Posted by Coreia
Посмотреть сообщение
pawn Код:
if(newkeys == KEY_SECONDARY_ATTACK){ return OnPlayerCommandText(playerid,"/jetpack"); }
onde eu coloco isso?