Jump to content
  • 0

Intrebare /destroycar


Bogdan's

Question

Problema intalnita (descriere): Salutare,am comanda /destroycar toate bune si frumoase,imi distruge masina dar as vrea ca,cand dau /destroycar sa se stearga cu totul masina de pe server.Adica sa nu mai apara in cars.cfg..Cum as putea face asta?
Ero(area / rile) / warning-(ul / urile): -
Liniile de cod / sursa / script-ul(obligatoriu):

if(!strcmp(cmdtext, "/destroycar", true))
    {
        new vehicleid = GetPlayerVehicleID(playerid);
        DestroyVehicle(vehicleid);
		SendClientMessage(playerid,-1,"Comanda executata cu succes!Masina a disparut pentru totdeauna.");
		return 1;
	}


Imagini / Video (optional):
Ati incercat sa rezolvati singur?:  Da,dar nu merge.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Si ce ai incercat se presupune ca trebuie sa faci ceva ca sa ai ce ne arata nou, sa stii ca acel mesaj nu se pune

SendClientMessage(playerid,-1,"Comanda executata cu succes!Masina a disparut pentru totdeauna.");

Sa nu imi spui ca asta ai incercat :))

 

    __  ____      __           
   /  |/  (_)____/ /____  _____
  / /|_/ / / ___/ __/ _ \/ ___/
 / /  / / (__  ) /_/  __/ /    
/_/  /_/_/____/\__/\___/_/     
SERVICII SCRIPTING DE CALITATE
Pagina     Scripting     pawn
Link to comment
Share on other sites

  • 0
if(!strcmp(cmdtext, "/destroycar", true))
    {
        new vehicleid = GetPlayerVehicleID(playerid);
        DestroyVehicle(vehicleid);
		SendClientMessage(playerid,-1,"Comanda executata cu succes!Masina a disparut pentru totdeauna.");
		CarInfo[thiscar][cOwned] = 0; CarInfo[thiscar][cModel] = 602; CarInfo[thiscar][cColorOne] = 0; CarInfo[thiscar][cColorTwo] = 0;
		CarInfo[thiscar][cLocationx] = 0.0; CarInfo[thiscar][cLocationy] = 0.0; CarInfo[thiscar][cLocationz] = 0.0; 
		return 1;
	}

Dar o baga la coordonatele 0 0 0 Si owneru masinii nu ii se sterge masina.

Edited by Bogdan's
Link to comment
Share on other sites

  • 0
PUBLIC: LoadCar()
{
	new arrCoords[31][64];
	new strFromFile2[256];
	new File: file = fopen("personalcars.cfg", io_read);
	if (file)
	{
		new idx = carsonserver;
		while (idx < sizeof(CarInfo))
		{
			fread(file, strFromFile2);
			split(strFromFile2, arrCoords, ',');
			CarInfo[idx][cModel] = strval(arrCoords[0]);
			CarInfo[idx][cLocationx] = floatstr(arrCoords[1]);
			CarInfo[idx][cLocationy] = floatstr(arrCoords[2]);
			CarInfo[idx][cLocationz] = floatstr(arrCoords[3]);
			CarInfo[idx][cAngle] = floatstr(arrCoords[4]);
			CarInfo[idx][cColorOne] = strval(arrCoords[5]);
			CarInfo[idx][cColorTwo] = strval(arrCoords[6]);
			strmid(CarInfo[idx][cOwner], arrCoords[7], 0, strlen(arrCoords[7]), 255);
			strmid(CarInfo[idx][cDescription], arrCoords[8], 0, strlen(arrCoords[8]), 255);
			CarInfo[idx][cValue] = strval(arrCoords[9]);
			strmid(CarInfo[idx][cLicense], arrCoords[10], 0, strlen(arrCoords[10]), 255);
			CarInfo[idx][cOwned] = strval(arrCoords[11]);
			CarInfo[idx][cLock] = strval(arrCoords[12]);
			CarInfo[idx][mod1] = strval(arrCoords[13]);
			CarInfo[idx][mod2] = strval(arrCoords[14]);
			CarInfo[idx][mod3] = strval(arrCoords[15]);
			CarInfo[idx][mod4] = strval(arrCoords[16]);
			CarInfo[idx][mod5] = strval(arrCoords[17]);
			CarInfo[idx][mod6] = strval(arrCoords[18]);
			CarInfo[idx][mod7] = strval(arrCoords[19]);
			CarInfo[idx][mod8] = strval(arrCoords[20]);
			CarInfo[idx][mod9] = strval(arrCoords[21]);
			CarInfo[idx][mod10] = strval(arrCoords[22]);
			CarInfo[idx][mod11] = strval(arrCoords[23]);
			CarInfo[idx][mod12] = strval(arrCoords[24]);
			CarInfo[idx][mod13] = strval(arrCoords[25]);
			CarInfo[idx][mod14] = strval(arrCoords[26]);
			CarInfo[idx][mod15] = strval(arrCoords[27]);
			CarInfo[idx][mod16] = strval(arrCoords[28]);
			CarInfo[idx][mod17] = strval(arrCoords[29]);
			CarInfo[idx][paintjob] = strval(arrCoords[30]);
			printf("CarInfo: %d Owner:%s LicensePlate %s",idx,CarInfo[idx][cOwner],CarInfo[idx][cLicense]);
			idx++;
		}
	}
	return 1;
}

DINI.

Link to comment
Share on other sites

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.