24.03.2012, 04:04
use something like GetVehicleParamsEx then check if the engine is on
some thing like this
some thing like this
pawn Код:
if(GetVehicleParamsEx(vehicleid, 1, //others)) //checks if vehicle engine is on
{
//put your textdraw code
}
else if(GetVehicleParamsEx(vehicleid, 0, //others)) //checks if vehicle engine is off
{
//put your textdraw hide code
}