Dynamic textdraw dont load
#7

Quote:
Originally Posted by SKAzini
Посмотреть сообщение
pawn Код:
mysql_query(conn,"SELECT * FROM textlabel");
Need to make it to use

Код:
forward OnLoadTextLabels();
public OnLoadTextLabels()
{
        new totalLabels = cache_get_row_count();
        for(new i,j = totalLabels ; i != j; i++)
        {
            cache_get_field_content(0,"t_text",tInfo[i][t_string],conn);
            cache_get_field_content(0,"t_color_",tInfo[i][t_color],conn);
            tInfo[i][t_postion][0] = cache_get_field_content_float(0,"t_x",conn);
            tInfo[i][t_postion][1] = cache_get_field_content_float(0,"t_y",conn);
            tInfo[i][t_postion][2] = cache_get_field_content_float(0,"t_z",conn);
            tInfo[i][t_id] = cache_get_field_content_int(0,"t_id_",conn);
            tInfo[i][t_label] = Create3DTextLabel(tInfo[i][t_string],0xED1414FF,tInfo[i][t_postion][0],tInfo[i][t_postion][1],tInfo[i][t_postion][2],40.0,0,0);
                
        }
        return 1;
}
EDIT:

Made it like this instead:

Код:
stock LoadTextLabels()
{
    mysql_query(conn,"SELECT * FROM textlabel");
    new totalLabels = cache_get_row_count();
    for(new i,j = totalLabels ; i != j; i++)
    {
        cache_get_field_content(0,"t_text",tInfo[i][t_string],conn);
        cache_get_field_content(0,"t_color_",tInfo[i][t_color],conn);
        tInfo[i][t_postion][0] = cache_get_field_content_float(0,"t_x",conn);
        tInfo[i][t_postion][1] = cache_get_field_content_float(0,"t_y",conn);
        tInfo[i][t_postion][2] = cache_get_field_content_float(0,"t_z",conn);
        tInfo[i][t_id] = cache_get_field_content_int(0,"t_id_",conn);
        tInfo[i][t_label] = Create3DTextLabel(tInfo[i][t_string],0xED1414FF,tInfo[i][t_postion][0],tInfo[i][t_postion][1],tInfo[i][t_postion][2],40.0,0,0);
        print("Loaded Labels");

    }
    return 1;
}
Still dont load though
Reply


Messages In This Thread
Dynamic textdraw dont load - by BizzyD - 09.08.2014, 14:30
Re: Dynamic textdraw dont load - by BizzyD - 09.08.2014, 14:53
Re: Dynamic textdraw dont load - by BizzyD - 09.08.2014, 15:18
Respuesta: Dynamic textdraw dont load - by Xabi - 09.08.2014, 15:31
Re: Dynamic textdraw dont load - by BizzyD - 09.08.2014, 16:32
Re: Dynamic textdraw dont load - by SKAzini - 09.08.2014, 16:33
Re: Dynamic textdraw dont load - by BizzyD - 09.08.2014, 16:36
Re: Dynamic textdraw dont load - by BizzyD - 09.08.2014, 19:57

Forum Jump:


Users browsing this thread: 1 Guest(s)