15.02.2018, 15:18
Olб estou tentando criar um chat em textdraw tudo funciona do jeito que eu quero mas, o histуrico do chat nгo fica em ordem uma mensagem antiga que era para subir fica no mesmo local.
PHP код:
addChatMessage(playerid,string[])
{
if(LinhaChat[playerid] >= 9) LinhaChat[playerid]=1;
format(ChatXiter[playerid][LinhaChat[playerid]],200,"%s",string);
for(new t; t < LinhaChat[playerid]; t++)
{
PlayerTextDrawHide(playerid,ChatCheater[playerid][t]);
if(!t)
{
IA_PlayerTextDrawSetString(playerid, ChatCheater[playerid][t], string);
PlayerTextDrawShow(playerid, ChatCheater[playerid][t]);
}
else
{
IA_PlayerTextDrawSetString(playerid, ChatCheater[playerid][t], ChatXiter[playerid][t]);
PlayerTextDrawShow(playerid, ChatCheater[playerid][t]);
}
}
LinhaChat[playerid] += 1;
return 1;
}