Jump to content
  • 0

Comanda /vpark


CrisTany

Question

Salut , cand dau /apark la o masina imi dispare si no mai gasesc dupa aceea , inloc sai dea park in acel loc dispare , va arat comanda , daca mio puteti face va rog :D

if(strcmp(cmd, "/apark", true) == 0)
	{
		if(IsPlayerConnected(playerid))
 		{
			new Float:x,Float:y,Float:z;
			new Float:a;
			new carid;
			carid = GetPlayerVehicleID(playerid);
			GetPlayerName(playerid, playername, sizeof(playername));
			GetVehiclePos(carid, x, y, z);
//			GetPlayerFacingAngle(playerid, a);
			GetVehicleZAngle(carid, a);
			if(PlayerInfo[playerid][pAdmin] >= 3)
			{
				CarInfo[carid][cLocationx] = x;
				CarInfo[carid][cLocationy] = y;
				CarInfo[carid][cLocationz] = z;
				CarInfo[carid][cAngle] = a;
				format(string, sizeof(string), "~n~ You have parked your car in this location. ~n~");
				GameTextForPlayer(playerid, "You have parked this car in this position. It will respawn here.", 10000, 3);
				OnPropUpdate();
				OnPlayerUpdate(playerid);
	    		DestroyVehicle(carid);
	    		CreateVehicle(CarInfo[carid][cModel],CarInfo[carid][cLocationx],CarInfo[carid][cLocationy],CarInfo[carid][cLocationz]+1.0,CarInfo[carid][cAngle],CarInfo[carid][cColorOne],CarInfo[carid][cColorTwo],60000);
				return 1;
			}
			else
			{
			    SendClientMessage(playerid, COLOR_GREY, "   Nu esti autorizat pentru a folosi aceasta comanda !");
			    return 1;
			}
		}
		return 1;
	}

Vreau doar cand se da /apark sa se parkeze masina respectiva in acel loc.

Link to comment
Share on other sites

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.