[Ajuda] Respawn carros - 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] Respawn carros (
/showthread.php?tid=541251)
Respawn carros -
_Play_ - 10.10.2014
esse comando ai faz com que o pm level 4 possa resetar todos os carros da sua HQ minha duvida й a seguinte tem como duminuir a quantidade de linhas pra nгo ocupar muita linha do gm pq aida tem as outras orgs
pawn Код:
CMD:rtcpm(playerid, params[])
{
new string[256];
if(Player[playerid][pPM] >= 4)
{
SetVehicleToRespawn(PM[1]);
SetVehicleToRespawn(PM[2]);
SetVehicleToRespawn(PM[3]);
SetVehicleToRespawn(PM[4]);
SetVehicleToRespawn(PM[5]);
SetVehicleToRespawn(PM[6]);
SetVehicleToRespawn(PM[7]);
SetVehicleToRespawn(PM[8]);
SetVehicleToRespawn(PM[9]);
SetVehicleToRespawn(PM[10]);
SetVehicleToRespawn(PM[11]);
SetVehicleToRespawn(PM[12]);
SetVehicleToRespawn(PM[13]);
SetVehicleToRespawn(PM[14]);
format(string, sizeof(string), "{0000FF}O Polнcial {ffffff}%s{0000FF} respawnou todos os carros da PM.", getPName(playerid));
SendMessageToCops(COR_ABATIDO, string);
return 1;
}
else
{
SendClientMessage(playerid, COR_ERRO, "Vocк nгo tem autorizaзгo para usar este comando.");
return 1;
}
Re: Respawn carros -
mau.tito - 10.10.2014
Usa um loop .
Re: Respawn carros -
Saidmrn - 10.10.2014
Quote:
Originally Posted by Ivison
esse comando ai faz com que o pm level 4 possa resetar todos os carros da sua HQ minha duvida й a seguinte tem como duminuir a quantidade de linhas pra nгo ocupar muita linha do gm pq aida tem as outras orgs
pawn Код:
CMD:rtcpm(playerid, params[]) { new string[256]; if(Player[playerid][pPM] >= 4) { SetVehicleToRespawn(PM[1]); SetVehicleToRespawn(PM[2]); SetVehicleToRespawn(PM[3]); SetVehicleToRespawn(PM[4]); SetVehicleToRespawn(PM[5]); SetVehicleToRespawn(PM[6]); SetVehicleToRespawn(PM[7]); SetVehicleToRespawn(PM[8]); SetVehicleToRespawn(PM[9]); SetVehicleToRespawn(PM[10]); SetVehicleToRespawn(PM[11]); SetVehicleToRespawn(PM[12]); SetVehicleToRespawn(PM[13]); SetVehicleToRespawn(PM[14]); format(string, sizeof(string), "{0000FF}O Polнcial {ffffff}%s{0000FF} respawnou todos os carros da PM.", getPName(playerid)); SendMessageToPM(COR_BRANCO, string); else { SendClientMessage(playerid, COR_ERRO, "Vocк nгo tem autorizaзгo para usar este comando."); return 1; } return 1; }
|
pawn Код:
CMD:rtcpm(playerid, params[])
{
new string[256];
if(Player[playerid][pPM] >= 4)
{
for(new i; i < NUMERO DE CARROS PM; i++)
{
SetVehicleToRespawn(PM[i]);
format(string, sizeof(string), "{0000FF}O Polнcial {ffffff}%s{0000FF} respawnou todos os carros da PM.", getPName(playerid));
SendMessageToPM(COR_BRANCO, string);
}
else
{
SendClientMessage(playerid, COR_ERRO, "Vocк nгo tem autorizaзгo para usar este comando.");
return 1;
}
return 1;
}
Re: Respawn carros -
ipsLuan - 10.10.2014
pawn Код:
CMD:rtcpm(playerid, params[]) {
new string[256];
if(Player[playerid][pPM] >= 4) {
for(new i; i < 14; i++) {
SetVehicleToRespawn(PM[i]);
format(string, sizeof(string), "{0000FF}O Polнcial {ffffff}%s{0000FF} respawnou todos os carros da PM.", getPName(playerid));
SendMessageToPM(COR_BRANCO, string);
}
else return SendClientMessage(playerid, COR_ERRO, "Vocк nгo tem autorizaзгo para usar este comando.");
return 1;
}
return 1;
}
Nгo testei, mas acho que funciona.
Re: Respawn carros -
_Play_ - 10.10.2014
vou testar jaja dou edit
Re: Respawn carros -
_Play_ - 10.10.2014
Quote:
Originally Posted by Ivison
vou testar jaja dou edit
|
EDIT
o gta deu ruim mais ja dei +rep a todos reinstalando aqui .-.