one more question
#1

what script i need to make a car dissapear after a player uses it
tanks
Reply
#2

Just set a very short Respawn Delay on that vehicle.

https://sampwiki.blast.hk/wiki/CreateVehicle
https://sampwiki.blast.hk/wiki/AddStaticVehicleEx
Reply
#3

Juuleman, he meant (I think) that the vehicle just respawns/removes after exitting it;
@AklexXx95:

Code 1: The vehicle will respawn after exitting it
pawn Код:
public OnPlayerExitVehicle(playerid, vehicleid)
{
    SetVehicleToRespawn(vehicleid);
    return 1;
}
Code 2: This will remove the vehicle, it won't be back:
pawn Код:
public OnPlayerExitVehicle(playerid, vehicleid)
{
    DestroyVehicle(vehicleid);
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)