SA-MP Forums Archive
textdraw - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: textdraw (/showthread.php?tid=349512)



textdraw - bleedis - 09.06.2012

Hey there!!
I have problem with textdraw. I want it to be in one line but it makse every text in new line.. see in picture



pawn Код:
format(string4, sizeof(string4), "+%d Exp Level up!", exp);
    uMsgBox_Show(playerid, string4);
This is the code.. whats the problem?


Re: textdraw - fordawinzz - 09.06.2012

pawn Код:
format(string4, sizeof(string4), "+%d~n~Exp~n~Level~n~up!", exp);



Re: textdraw - MP2 - 09.06.2012

You need to set the box size (TextDrawTextSize I think). Just set it to 640, 640, that'll cover the entire screen.


Re: textdraw - bleedis - 09.06.2012

Thank u Mp.