Hallo
Ich möchte gerne per MySQL NODM Zonen erstellen die man auf der Karte sehen kann in der Farbe Hellrot.
Dies funktioniert aber bei mir nicht so ganz.
Code:
forward LoadNoDmZonen();
public LoadNoDmZonen()
{
new rows,fields,count;
cache_get_data(rows,fields);
for(new i=0;i<rows;i++)
{
if(i < MAX_NODMZONEN)
{
NoDMZonen[i][NoDMID] = cache_get_field_content_int(i, "ID");
NoDMZonen[i][NoDMFarbe] = cache_get_field_content_int(i, "Farbe");
NoDMZonen[i][NoDMMinX] = cache_get_field_content_float(i, "MinX");
NoDMZonen[i][NoDMMinY] = cache_get_field_content_float(i, "MinY");
NoDMZonen[i][NoDMMaxX] = cache_get_field_content_float(i, "MaxX");
NoDMZonen[i][NoDMMaxY] = cache_get_field_content_float(i, "MaxY");
count++;
}
NoDMZonen[i][NoDMID] = GangZoneCreate(NoDMZonen[i][NoDMMinX],NoDMZonen[i][NoDMMinY],NoDMZonen[i][NoDMMaxX],NoDMZonen[i][NoDMMaxY]);
}
print("=================================");
printf("[LOAD] NO DM ZONEN geladen: %d/%d",count,MAX_NODMZONEN);
return 1;
}
Alles anzeigen
@Jeffry
Ich bedanke mich schonmal von den Usern.