Пређи на главни садржај

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

NameDescription
vehicleidThe 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,
string[128];

for (new i = 0; i < MAX_VEHICLES; i++)
{
if (IsValidVehicle(i))
{
count++;
}
}

format(string, sizeof(string), "* There are %d valid spawned vehicles on this server.", count);
SendClientMessage(playerid, 0x33CCCCFF, string);
return 1;
}
return 0;
}