SA-MP Forums Archive
[Ajuda] Bug no OnPlayerEnterCheckpoint - 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 no OnPlayerEnterCheckpoint (/showthread.php?tid=493776)



Bug no OnPlayerEnterCheckpoint - Lucas_HenryK - 09.02.2014

O problema й que tipo, quando eu entro na checkpoint ' CheckLojaArmas ' ao invйs de mostrar ' Ammunation(playerid); ' as vezes mostra ' Comidas(playerid); ' e quando nгo й um й o outro..

pawn Код:
public OnPlayerEnterCheckpoint(playerid)
{
    // loja de armas 1
    if(CheckLojaArmas)
    {
        Ammunation(playerid);
    }

    // pizzaria 1
    if(CheckLojaComidas)
    {
        Comidas(playerid);
    }
    return 1;
}



Re: Bug no OnPlayerEnterCheckpoint - Lucas_HenryK - 09.02.2014

Alguйm


Re: Bug no OnPlayerEnterCheckpoint - davi54723 - 09.02.2014

Poste ;

CheckLojaArmas
E
CheckLojaComidas


Re: Bug no OnPlayerEnterCheckpoint - Lucas_HenryK - 09.02.2014

CheckLojaArmas = CPS_AddCheckpoint(295.5655,-80.5008,1001.5156,1.2,40);

CheckLojaComidas = CPS_AddCheckpoint(376.5044,-67.5621,1001.5151,1.2,40);


Re: Bug no OnPlayerEnterCheckpoint - caption - 09.02.2014

Um Up Aqui PQ To Com Mesmo Problema


Re: Bug no OnPlayerEnterCheckpoint - Leopawno - 09.02.2014

public OnPlayerEnterCheckpoint(playerid)
{
// loja de armas 1
if(CheckLojaArmas)
{
CheckLojaArmas = CPS_AddCheckpoint(295.5655,-80.5008,1001.5156,1.2,40);
Ammunation(playerid);
}

// pizzaria 1
if(CheckLojaComidas)
{
CheckLojaComidas = CPS_AddCheckpoint(376.5044,-67.5621,1001.5151,1.2,40);
Comidas(playerid);
}
return 1;
}


Re: Bug no OnPlayerEnterCheckpoint - Lucas_HenryK - 11.02.2014

Nгo deu ..

Alguйm tem alguma outra sugestгo ?


Re: Bug no OnPlayerEnterCheckpoint - DannielCooper - 12.02.2014

Nгo entendi muito bem. O Checkpoint nгo desaparece, й isso?


Re: Bug no OnPlayerEnterCheckpoint - Lucas_HenryK - 12.02.2014

nгo tipo se eu entrar no CheckPoint CheckLojaArmas ao inves de executar a funзгo Ammunation(playerid); as vezes executa Comidas(playerid);


Re: Bug no OnPlayerEnterCheckpoint - DannielCooper - 12.02.2014

tenta usar return.

pawn Код:
if(CheckLojaArmas)
    {
        Ammunation(playerid);
        return 1;
    }

    // pizzaria 1
    if(CheckLojaComidas)
    {
        Comidas(playerid);
        return 1;
    }
    return 1;
}