Detaljan opis problema:eh, napravio sam textdraw tekst za box i sad me zanima kako kad tekst dodje do kraja ekrana znaci da nemoze ici dalje(ali kod mene trenuno moze), da se prebaci u novi red ispod? Nadam se da ste me ukapirali 😄
Dio skripte:
stock SendXMessage(playerid, const text[])
{
for(new line; line < 15; line++)
{
TextDrawShowForPlayer(playerid, XMsg);//show the lines
}
for(new line; line < 15; line++)
{
TextDrawHideForAll(XMsg);//hide the line
if(line < 14)
{
XMsgStr = XMsgStr[line+1];//Message going up ^
TextDrawSetString(XMsg, XMsgStr);
}
}
format(XMsgStr, 128, "%s",text);//Message !
TextDrawSetString(XMsg, XMsgStr);//Start fron Line 9
for(new line; line < 15; line++) // goes up
{
TextDrawShowForAll(XMsg);//TextDraw show for player
}
return 1;
}Neke slike/video za lakse dobivanje pomoci(neobavezno):imate stock ako jos nesto treba recite evo i slika problema http://prntscr.com/ce1xcd
