SA-MP Forums Archive
[Ajuda] Converter de CheckPointRace Pra CheckPoint - 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] Converter de CheckPointRace Pra CheckPoint (/showthread.php?tid=432029)



Converter de CheckPointRace Pra CheckPoint - iCracker - 20.04.2013

Bom eu fiz o projeto de um profissao de motoriosta de onibus so que fiz com checkpoint race e fica um checkpoint ate o cel uma coisa feia queria converter pra checkpoint normal eu tentei fazer a proeza mas nao conseguir deu centenas de warings e o checkpoint bugo vo deixa abaixo os codigos atuaiz se alguem poder da um exemplo de como converter Ficarei muito grato desde ja Obrigado a todos.
OBS: o case esta dentro do OnPlayerEnterRaceCheckpoint estou ciente que pra converter tem q passa ele pro
OnPlayerEnterCheckpoint essa nao e o problema o o Troca e uma arrai que tenhu com as coordenadas dos checkpoints


PHP код:

case 1:
                {
                    
                        
SetPlayerRaceCheckpoint(playerid0CheckPoints[1][0], CheckPoints[1][1], CheckPoints[1][2], CheckPoints[2][0], CheckPoints[2][1], CheckPoints[2][2], 4);
                        
Trocar[playerid] = 2;
                        
                  } 



Re: Converter de CheckPointRace Pra CheckPoint - Schocc - 20.04.2013

SetPlayerCheckpoint


Re: Converter de CheckPointRace Pra CheckPoint - iCracker - 20.04.2013

isso aew nao resolveu o meu problema '-'


Re: Converter de CheckPointRace Pra CheckPoint - GTO.DoDo - 21.04.2013

De
pawn Код:
case 1:
{
                   
SetPlayerRaceCheckpoint(playerid, 0, CheckPoints[1][0], CheckPoints[1][1], CheckPoints[1][2], CheckPoints[2][0], CheckPoints[2][1], CheckPoints[2][2], 4);
Trocar[playerid] = 2;
                       
}
para
pawn Код:
case 1:
{
                 
SetPlayerCheckpoint(playerid, CheckPoints[1][0], CheckPoints[1][1], CheckPoints[1][2], 4);
Trocar[playerid] = 2;
                       
}