How to use "DestroyVehicle" without player in vehicle?
#1

Hi all, i need help with the Callback "DestoyVehicle" Because I have succeded to make it work but only with GetPlayerVehicleID but I need to use it without player in the vehicle for my crusher system.

Here is the method I use:


Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext,"/fb", true))
     	{
      	new Float:x, Float:y, Float:z;
	new idcar;
	idcar = GetVehiclePos(idcar, x, y, z);
	DestroyVehicle(idcar);
     	GameTextForPlayer(playerid, "Vehicule broyer!", 3500, 1);
        }
}
Tanks for your help.

PS: Sorry for my bad english, im french...
Reply
#2

idcar doesn't have any value...


You haven't checked for parameters in the command to make idcar have a value.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)