[Help] Destroy car after spawned new car, didnt work!
#1

Hello guys,

I got a 'problem' namely, I was just created a variable for my /car command,
The variable that I was creating was a Destroyvehicle thing,
It destroys, but it destroys directly,

Thats wrong,

Because it needs only destroys when a player spawns a 2nd vehicle I mean:

Player do /car the player leave the car and he do again /car, now the first car that he spawned needs to destroy (if he spawned a new /car)

Now is my question, whats wrong with this:

PHP Code:
if(!strcmp(cmdtext"/car"true))
        {
        new 
Float:up[3], carid;
          
GetPlayerPos(playeridup[0], up[1], up[2]);
        
carid CreateVehicle(411up[0]+2up[1]+2up[2], 0, -1, -10);
        
PutPlayerInVehicle(playeridcarid0);
        new 
currentveh;
          
currentveh GetPlayerVehicleID(playerid);
          
DestroyVehicle(currentveh);
        
LinkVehicleToInterior(caridGetPlayerInterior(playerid));
        
SetVehicleVirtualWorld(caridGetPlayerVirtualWorld(playerid));
        
SendClientMessage(playerid0x20C92EFF"* You spawned a new Infernus car, you can also use the /carmenu to spawn other vehicle types.");
        return 
1;
        } 
I dont have any errors or warnings.

Thanks
Reply
#2

pawn Code:
if(!strcmp(cmdtext, "/car", true))
{
        new Float:up[3], carid;
        GetPlayerPos(playerid, up[0], up[1], up[2]);
        new CurrentVeh = GetPlayerVehicleID(playerid);
        DestroyVehicle(CurrentVeh);
        carid = CreateVehicle(411, up[0]+2, up[1]+2, up[2], 0, -1, -1, 0);
        PutPlayerInVehicle(playerid, carid, 0);
        LinkVehicleToInterior(carid, GetPlayerInterior(playerid));
        SetVehicleVirtualWorld(carid, GetPlayerVirtualWorld(playerid));
        SendClientMessage(playerid, 0x20C92EFF, "* You spawned a new Infernus car, you can also use the /carmenu to spawn other vehicle types.");
        return 1;
}
This will only work if you use the command /car while inside another vehicle.
Reply
#3

ahh and how can i destroy it everywere?
Reply
#4

REMOVED because i tough i was editing my post but it was a new post :l
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)