05.08.2017, 18:41
Tente:
PHP Code:
mysql_tquery(IDConexao, "SELECT * FROM Label", "CarregarLabel", "");
PHP Code:
forward CarregarLabel();
public CarregarLabel()
{
new rows = cache_get_row_count();
if(rows > 0)
{
for(new i = 0; i < rows; i++)
{
cache_get_field_content(i, "Texto", LabelInfo[i][TextoLabel], .max_len = MAX_LABEL_TEXT);
LabelInfo[i][LabelX] = cache_get_field_content_float(i, "LabelX");
LabelInfo[i][LabelY] = cache_get_field_content_float(i, "LabelY");
LabelInfo[i][LabelZ] = cache_get_field_content_float(i, "LabelZ");
Create3DTextLabel(LabelInfo[i][TextoLabel], -1, LabelInfo[i][LabelX], LabelInfo[i][LabelY], LabelInfo[i][LabelZ], 40.0, 0, 0);
}
}
return 1;
}