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



SetPlayerCheckpoint - DaRoma - 04.04.2017

Boa noite. estou colocando o Checkpoint mais nгo esta aparecendo a setinha vermelha no mapa alguem ajuda ae


PHP код:
if(response)
    {
    if(
listitem == 1)
     {
    
SetPlayerCheckpoint(playerid,677.1426,1939.2954,5.5391,146.5819);
    } 



Re: SetPlayerCheckpoint - didimk157 - 04.04.2017

tente agora editado
PHP код:
if(response)
    {
    if(
listitem == 1)
     {
    
SetPlayerCheckpoint(playerid,677.1426,1939.2954,5.5391,4.0);
    } 



Re: SetPlayerCheckpoint - HoodScript - 04.04.2017

SetPlayerCheckpoint(playerid,677.1426,1939.2954,5. 5391,146.5819);

estб errado! checkpoint apenas se utiliza o ponto x,y,z

SetPlayerCheckpoint(playerid,677.1426,1939.2954,5. 5391, 3.0);

3.0 = tamanho do check


Re: SetPlayerCheckpoint - DarkBr - 04.04.2017

Код:
if(response)
    {
    if(listitem == 1)
     {
    SetPlayerCheckpoint(playerid, X Y, Z, 3.0);//troque 3 pela largura do seu Check.
    }



Re: SetPlayerCheckpoint - DaRoma - 04.04.2017

Mesma coisa mano ' nгo aparece o Checkpoint


Re: SetPlayerCheckpoint - HoodScript - 04.04.2017

Quote:
Originally Posted by DaRoma
Посмотреть сообщение
Mesma coisa mano ' nгo aparece o Checkpoint
entгo utilize o CreateDynamicRaceCP(1, X, Y, Z, 0.0, 0.0, 0.0, 2.0, -1, -1, playerid, 99999999.0);


x,y,z = altere pela sua posiзгo do local


Re: SetPlayerCheckpoint - ViniBorn - 04.04.2017

Tem certeza que listitem й 1, e nгo 0 ?

pawn Код:
if(listitem == 1)



Re: SetPlayerCheckpoint - DarkBr - 04.04.2017

Quote:
Originally Posted by DaRoma
Посмотреть сообщение
Mesma coisa mano ' nгo aparece o Checkpoint
Abre seu GM escolha o Lugar que vc quer que fique o CHECKPOINT
da /SAVE
abre seu explorador de arquivos e faz isso C:\Users\Public\Documents\GTA San Andreas User Files\SAMP
abra o arquivo

savedpositions e procure o ultimo da lista ele irб estar mais ou menos assim

AddPlayerClass(idSkin,CorX, CorY, CorZ, Angulo,0,0,0,0,0,0); //

Copie apenas CorX, CorY, CorZ

Код:
SetPlayerCheckpoint(playerid, CorX, CorY, CorZ, 3.0);



Re: SetPlayerCheckpoint - Luiiiz - 04.04.2017

tente usar assim

PHP код:
if(response)
{
    switch(
listitem)
    {
        case 
0:
        {
            
SetPlayerCheckpoint(playeridPosiзгo XPosiзгo YPosiзгo Z3.0);
        }
        case 
1:
        {
            
SetPlayerCheckpoint(playeridPosiзгo XPosiзгo YPosiзгo Z3.0);
        } 
// CASO QUISER MAIS CHECKPOINT COLOQUE " Case 2: / Case 3: / etc.
    
}