08.11.2015, 08:49
Thank you, I managed to find a way to solve my problem, the two ways mentioned would not work the way I wanted, because a PlayerTextDraw would stay on top of the other, managed to solve the problem with this code:
PHP код:
if(DOF2_FileExists(GetDataPlayer(playerid))) for(new i; i != 23; i++) PlayerTextDrawShow(playerid, Text_Login[playerid][i]);
else {
for(new i; i != 24; i++) {
if(i == 21) continue;
PlayerTextDrawShow(playerid, Text_Login[playerid][i]);
}
}