SA-MP Forums Archive
[Ajuda] Nгo executa - 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] Nгo executa (/showthread.php?tid=475723)



Nгo executa - iHarzard - 14.11.2013

Estou fazendo um sistema de natal, porйm o cуdigo abaixo nгo estб funcionando.
O que pode ser?

pawn Код:
if(newkeys == KEY_SECONDARY_ATTACK) // NATAL
{
        new string[128];
       
        for(new i=0;i <= MAX_ARVORES;i++)
            format(string,sizeof(string),PASTA_ARVORES, i);
           
        new Float:posicaoX = DOF2_GetFloat(string,"posX"),
            Float:posicaoY = DOF2_GetFloat(string,"posY"),
            Float:posicaoZ = DOF2_GetFloat(string,"posZ");
           
        if(PlayerToPoint(2.0, playerid, posicaoX, posicaoY, posicaoZ))
        {
            SendClientMessage(playerid, COR_PRINCIPAL, "Parabйns, vocк recebeu seu presente de natal!");
        }
}



Re: Nгo executa - DannielCooper - 14.11.2013

erro bobissimo.

aproveitei e redusi as cйlulas. as usadas sгo 45, mais deixei 1 a +
pawn Код:
if(newkeys == KEY_SECONDARY_ATTACK) // NATAL
{
        new string[46];
       
        for(new i=0;i <= MAX_ARVORES;i++) {
            format(string,sizeof(string),PASTA_ARVORES, i);
           
        new Float:posicaoX = DOF2_GetFloat(string,"posX"),
            Float:posicaoY = DOF2_GetFloat(string,"posY"),
            Float:posicaoZ = DOF2_GetFloat(string,"posZ");
           
        if(PlayerToPoint(2.0, playerid, posicaoX, posicaoY, posicaoZ))
        {
            SendClientMessage(playerid, COR_PRINCIPAL, "Parabйns, vocк recebeu seu presente de natal!");
        }



Respuesta: Nгo executa - iHarzard - 14.11.2013

Deu certo, vlw!