[Ajuda] Criando Checkpoint na minha posiзгo - 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] Criando Checkpoint na minha posiзгo (
/showthread.php?tid=434747)
Criando Checkpoint na minha posiзгo -
fonyke - 04.05.2013
Pessoal quiria criar um checkpoint de corrida onde o player estive tentei fazer so q nao estou conseguindo fiz esse mas ta nao ta funciondo.
Код:
if(strcmp(cmd, "/ccheckpoint", true) == 0)
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
SetPlayerRaceCheckpoint(playerid, 0,X,Y,Z,8.0);
return 1;
}
Re: Criando Checkpoint na minha posiзгo -
Lуs - 04.05.2013
Vocк estб criando o checkpoint somente para vocк, faзa um loop nos jogadores que vocк quer, ou em todos do servidor, ou use um streamer.
pawn Код:
if(strcmp(cmd, "/ccheckpoint", true) == 0)
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
for(new s = GetMaxPlayers(), i; i < s; i++)
if(IsPlayerConnected(i))
SetPlayerRaceCheckpoint(i, 0,X,Y,Z,8.0);
return 1;
}
Re: Criando Checkpoint na minha posiзгo -
fonyke - 04.05.2013
ele ta dando erro
Код:
(23739) : warning 202: number of arguments does not match definition
linha 23739:
Код:
SetPlayerRaceCheckpoint(i, 0,X,Y,Z,8.0);
Re: Criando Checkpoint na minha posiзгo -
Lуs - 04.05.2013
Quote:
Originally Posted by fonyke
ele ta dando erro
Код:
(23739) : warning 202: number of arguments does not match definition
linha 23739:
Код:
SetPlayerRaceCheckpoint(i, 0,X,Y,Z,8.0);
|
Veja os parвmetros e corrija:
https://sampwiki.blast.hk/wiki/SetPlayerRaceCheckpoint
Re: Criando Checkpoint na minha posiзгo -
fonyke - 04.05.2013
obrgiado deu certo, rep+ !