Mein Bitte Folgen will nicht Blinken..
SetTimer("PoliceLightFlash",500,1);
new PoliceLightFlashID = 0;
forward PoliceLightFlash();
public PoliceLightFlash()
{
PoliceLightFlashID++;
if(PoliceLightFlashID > 1)
{
for(new x = 0; x < MAX_VEHICLES; x++)
{
if(IsValidVehicle(x) && PoliceLight[x] != INVALID_OBJECT_ID) SetDynamicObjectMaterialText(PoliceLight[x],0,"POLIZEI\nBITTE FOLGEN",OBJECT_MATERIAL_SIZE_256x128,\"Arial",27,0,0xFFFF0000,0x00000000,1);
}
PoliceLightFlashID = 0;
}
else
{
for(new x = 0; x < MAX_VEHICLES; x++)
{
if(IsValidVehicle(x) && PoliceLight[x] != INVALID_OBJECT_ID) SetDynamicObjectMaterialText(PoliceLight[x],0," ",OBJECT_MATERIAL_SIZE_256x128,\"Arial",20,0,0xFFFF0000,0x00000000,1);
}
}
}