Jump to content
  • 0

Question

Posted

Deci Am bagat comanda /car si scriu numele la masina sau id

asa si cum pot face sami spawneze doar o masina ca nu ma da in masina cand spawnez si ami apare langa mine masina si pot da de 100 de ori comanda si spawnez o gramada de masini si asa

se Inchide Server-ul Uite si Comanda

[pawn]dcmd_car(playerid,params[])

{

if(AccInfo[playerid][Level] >= 0)

{

new Index;

    new tmp[256];  tmp  = strtok(params,Index);

new tmp2[256]; tmp2 = strtok(params,Index);

new tmp3[256]; tmp3 = strtok(params,Index);

    if(!strlen(tmp)) return

SendClientMessage(playerid, LIGHTBLUE2, "Usage: /car [ModelID/Name] [Colour1] [Colour2]") &&

      SendClientMessage(playerid, orange, "Function: Will create a Car with specified Colours");

new car;

new string[128];

new colour1, colour2;

  if(!IsNumeric(tmp))

car = GetVehicleModelIDFromName(tmp);

  else car = strval(tmp);

if(car < 400 || car > 611) return  SendClientMessage(playerid, red, "ERROR: Invalid Vehicle Model ID!");

if(!strlen(tmp2)) colour1 = random(126); else colour1 = strval(tmp2);

if(!strlen(tmp3)) colour2 = random(126); else colour2 = strval(tmp3);

if(AccInfo[playerid][pCar] != -1 && !IsPlayerAdmin(playerid))

EraseVeh(AccInfo[playerid][pCar]);

new LVehicleID;

new Float:X,Float:Y,Float:Z;

new Float:Angle,int1;

GetPlayerPos(playerid, X,Y,Z);

GetPlayerFacingAngle(playerid,Angle);

int1 = GetPlayerInterior(playerid);

LVehicleID = CreateVehicle(car, X+3,Y,Z, Angle, colour1, colour2, -1);

LinkVehicleToInterior(LVehicleID,int1);

AccInfo[playerid][pCar] = LVehicleID;

SendCommandToAdmins(playerid,"Car");

format(string, sizeof(string), "%s Spawned a \"%s\" (Model:%d) Colours (%d, %d), Pos: X:%0.2f, Y:%0.2f, Z:%0.2f", pName(playerid), VehicleNames[car-400], car, colour1, colour2, X, Y, Z);

        SaveIn("CarSpawns",string);

format(string, sizeof(string), "|- You have Spawned a \"%s\" (Model: %d) with Colours: %d,%d -|", VehicleNames[car-400], car, colour1, colour2);

return SendClientMessage(playerid,LIGHTBLUE, string);

}

else return ErrorMessages(playerid, 6);

}[/pawn]

560x95_FFFFFF_FF9900_000000_000000.png

1 answer to this question

Recommended Posts

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.