24.05.2013, 15:10
Quote:
pawn Код:
|
pawn Код:
[MAX_PLAYERS];
Ficaria assim?
pawn Код:
if(strcmp(cmd,"/vv",true) ==0)
{
if(IsPlayerConnected(playerid))
{
if (PlayerInfo[playerid][pDonateRank] < 2)
{
SendClientMessage(playerid, COLOR_GRAD1, " Vocк nгo tem permissгo para usar este comando! !");
return 1;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USO: /vv [carid] [color1] [color2]");
return 1;
}
new car;
car = strval(tmp);
if(car < 400 || car > 611) { SendClientMessage(playerid, COLOR_GREY, " Vehicle Number can't be below 400 ou above 611 !"); return 1; }
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USO: /vv [carid] [color1] [color2]");
return 1;
}
new color1;
color1 = strval(tmp);
if(color1 < 0 || color1 > 300) { SendClientMessage(playerid, COLOR_GREY, " Color Number can't be below 0 ou above 300 !"); return 1; }
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USO: /vv [carid] [color1] [color2]");
return 1;
}
new color2;
color2 = strval(tmp);
if(color2 < 0 || color2 > 300) { SendClientMessage(playerid, COLOR_GREY, " Color Number can't be below 0 ou above 300 !"); return 1; }
new Float:X,Float:Y,Float:Z;
GetPlayerPos(playerid, X,Y,Z);
new carid = CreateVehicle(car, X,Y,Z, 0.0, color1, color2,60000);
LinkVehicleToInterior(carid, GetPlayerInterior(playerid));
CreatedCars[CreatedCar] = carid;
CreatedCar ++;
format(string, sizeof(string), "Veнculo %d, criado.", carid);
SendClientMessage(playerid, COLOR_GREY, string);
new DonodoVeiculoCriado[MAX_PLAYERS]
if (DonodoVeiculoCriado[MAX_PLAYERS])
{
SendClientMessage(playerid, COLOR_GRAD1, " Vocк nгo pode ultilizar esse veiculo!");
return 1;
}
}
return 1;
}