Nose si solo se crea el Pickup y Label, en caso de ser asi, creo que seria el siguiente codigo:
PHP код:
stock CargarNegocios()
{
new query[256],neg = 0;
mysql_query(mysql,"SELECT * FROM TABLA_NEGOCIOS");
while(neg < cache_num_rows())
{
InformacionNegocio[neg][nExtX] = cache_get_field_content_float(neg,"nExtX");
InformacionNegocio[neg][nExtY] = cache_get_field_content_float(neg,"nExtY");
InformacionNegocio[neg][nExtZ] = cache_get_field_content_float(neg,"nExtZ");
//etc
InformacionNegocio[neg][nPickup] = CreateDynamicPickup(1272, 1, InformacionNegocio[negocio][nExtX], InformacionNegocio[negocio][nExtY], InformacionNegocio[negocio][nExtZ], InformacionNegocio[negocio][nWorldExt]
neg++;
}
if(neg) printf("%d Negocios Cargados",neg);
return 1;
}
No entendi mucho, pero espero averte dado una idea por lo menos.