SA-MP Forums Archive
Format - 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: Format (/showthread.php?tid=505332)



Format - Ananisiki - 08.04.2014

Hi, i had alot of textdraws in my stats system so i changed it a bit

now i have like
pawn Код:
~w~Your Kills: ~g~%d ~n~~w~Your Deaths: ~g~%d ~n~~w~Favorit Skin: ~g~%d, pStats[playerid][Kills], pStats[playerid][Deaths], pStats[playerid][Skin]
And so on, but when i format it only the numbers show up, not the other textdraws, but if i do it like

pawn Код:
~w~Your Kills: ~g~%d, pStats[playerid][Kills] // (only once)
then it works, what can the problem be?


Re: Format - arakuta - 08.04.2014

You forgot quotes:

pawn Код:
"Example %d",10);
Where is this textdraw placed? It writes the informations in various lines. Make sure them get all in the screen.