IsValidVehicle
From SA-MP Wiki
Description:
Check if a vehicle is created.
(vehicleid)
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
The following functions may be useful, as they are related to this function in one way or another.
- GetPlayerVehicleID: Get the ID of the vehicle the player is in.
- GetVehicleModel: Get the model id of a vehicle.