25.12.2010, 09:40
you could use something like this:
this won't show the textdraw if it is too long... you can change the number to the length which is the highest possible for you..
Код:
new str[1000]; format(str,1000," ~r~List~w~~n~~n~"); for(new x=0; x!=50;x++) { format(str,sizeof(str),"%sRowBLABLABLABLABLABLABLA%d~n~",str,x); } if(strlen(str) <= 280){ TextDrawSetString(txd,str); TextDrawShowForPlayer(txd); }