Hey leute ich hoffe ihr könnt mir helfen und zwar der 3d text wird nicht angzeigt ich hoffe ihr könnt mir hier helfen bei den blitzern mfg lui
Code
case _SQL_BLITZER_LOAD:
{
cache_get_data(rows,fields);
new bid = 0;
if(rows)
{
while(bid<rows)
{
Blitzer[bid][EGmBhRubbishObject] = -1;
cache_get_field_content(bid,"BlitzerGeschwindigkeit",result); Blitzer[bid][BlitzerGeschwindigkeit] = strval(result); strdel(result,0,sizeof(result));
cache_get_field_content(bid,"BlitzerOrt",result); format(Blitzer[bid][BlitzerOrt],64,"%s",result);
strmid(Blitzer[bid][BlitzerOrt],result,0,strlen(result),sizeof(result)); strdel(result,0,sizeof(result));
cache_get_field_content(bid,"sperreX",result); Blitzer[bid][sperreX] = floatstr(result); strdel(result,0,sizeof(result));
cache_get_field_content(bid,"sperreY",result); Blitzer[bid][sperreY] = floatstr(result); strdel(result,0,sizeof(result));
cache_get_field_content(bid,"sperreZ",result); Blitzer[bid][sperreZ] = floatstr(result); strdel(result,0,sizeof(result));
cache_get_field_content(bid,"HP",result); Blitzer[bid][EGmBhHp] = strval(result); strdel(result,0,sizeof(result));
Blitzer[bid][Erstellt] = 1;
Blitzer[bid][ID] = CreateDynamicObject(18880,Blitzer[bid][sperreX],Blitzer[bid][sperreY],Blitzer[bid][sperreZ]-2.0,0.0,0.0,10);
format(result,sizeof(result),"Blitzer %i\nRichtgeschwindigkeit: %iKm/h\n\nToleranz: %iKm/h",bid,Blitzer[bid][BlitzerGeschwindigkeit],fsteuern[BlitzerToleranz]);
BlitzerLabel[bid] = CreateDynamic3DTextLabel(result,0x7DC5007A,Blitzer[bid][sperreX],Blitzer[bid][sperreY],Blitzer[bid][sperreZ],10.0,INVALID_PLAYER_ID,INVALID_VEHICLE_ID,1,0);
Blitzer[bid][EGmBhTstamp] = gettime() + ((random(10) + 10)*60);
if(Blitzer[bid][EGmBhHp] <= 0)
{
Blitzer[bid][EGmBhHp] = 0;
Blitzer[bid][EGmBhRubbishObject] = CreateDynamicObject(18727,Blitzer[bid][sperreX],Blitzer[bid][sperreY],Blitzer[bid][sperreZ],0,0,0);
}
bid++;
}
}
printf("- Blitzer geladen %i/%i -",rows,MAX_BLITZER);
return 1;
}
Alles anzeigen