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



BUG ONPLAYERKEY - JuniorTheDM - 10.08.2015

Eu Aperto 'F' Em Qlqer Lugar abre o dialog '-'

PHP код:
public OnPlayerKeyStateChange(playerid,newkeys,oldkeys)
{
    if(
newkeys == 16 && GetPlayerState(playerid) == PLAYER_STATE_ONFOOT)
    {
        if(!
IsPlayerInRangeOfPoint(3playerid756.2317,-1356.3861,13.5141))
        {
          new 
MEGAString[2500];
          
MEGAString[0]=EOS;
          
strcat(MEGAString"Equipamentos »»\n");
          
strcat(MEGAString"Sair »»\n");
          
ShowPlayerDialog(playeridDIALOG_MENUDIALOG_STYLE_LIST"Menu Organizacao"MEGAString"Selecionar""Sair");
        }
    }
    return 
1;




Re: BUG ONPLAYERKEY - Gii - 10.08.2015

PHP код:
if(!IsPlayerInRangeOfPoint(3playerid756.2317,-1356.3861,13.5141)) 
! -> Negaзгo.

PHP код:
if( IsPlayerInRangeOfPoint(playerid3756.2317,-1356.3861,13.5141) ) 
Vocк se equivocou na ordem dos parвmetros tambйm ...