01.06.2015, 09:45
Quote:
you can give me full this command + functions + publics and stocks?
|
However, you can use a one second timer and a loop through all the vehicles and check; For instance:
pawn Код:
public OneSecondTimer(playerid)
{
for(new i = 1; i <= GetVehiclePoolSize(); i++)
{
if(GetPlayerSurfingVehicleID(playerid) == i)
{
// Do whatever
}
}