IsValidVehicle
note
This function is not present in the old libraries packaged with the SA-MP server however the latest versions of the maintained libraries contain this and other formerly missing declarations.
Description
Check if a vehicle is created.
Parameters
Name | Description |
---|---|
vehicleid | The vehicle to check for existance |
Return Values
true if the vehicle exists, otherwise false.
Example Usage
#if !defined IsValidVehicle
native IsValidVehicle(vehicleid);
#endif
// Count vehicles
public OnPlayerCommandText(playerid,cmdtext[])
{
if (!strcmp(cmdtext,"/countvehicles",true))
{
new
count,
msg[60];
for(new i; i < MAX_VEHICLES; i++)
{
if (IsValidVehicle(i)) count++;
}
format(msg, sizeof(msg), "* There are %d valid spawned vehicles on this server.", count);
SendClientMessage(playerid, 0x33CCCCFF, msg);
return 1;
}
return 0;
}
Related Functions
- GetPlayerVehicleID: Get the ID of the vehicle the player is in.
- GetVehicleModel: Get the model id of a vehicle.