13.05.2014, 14:36
ohh really.. thank!
and the load?
and the load?
PHP код:
stock Load3DTextLabels()
{
new
Str[100],
text[128],
Float:x,
Float:y,
Float:z,
Float:tavolsag,
wv,
total;
format(query, sizeof(query), "SELECT * FROM `3dtextlabel`");
mysql_query(sqldb, query);
mysql_store_result();
if(mysql_num_rows() > 0)
{
while(mysql_fetch_row(Str))
{
sscanf(Str, "p<|>s[128]ffffi", text, x, y, z, tavolsag, wv);
Create3DTextLabel(text, 0xFF0606FF, x, y, z, tavolsag, wv, 1);
total++;
printf("debug: %s %f %f %f %f i",text, x, y, z, tavolsag, wv);
}
}
mysql_free_result();
printf("%i textlabel betцltve!",total);
return 1;
}