SA-MP Forums Archive
Textdraw problems - 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 problems (/showthread.php?tid=409420)



Textdraw problems - maho422 - 21.01.2013

robbery system.jpg

How do i make my robbery system like that? (TEXT)

Here is the code of mine , but mine is wierd and all bugged the text .. I want it exactly like the picture

pawn Код:
format(string,sizeof(string),"Robbing Otto's Cars.\nFinish Robbery in: %d.\nDont move from the checkpoint.",RobbingOtto[playerid]);
GameTextForPlayer(playerid, string, 3000, 3);
OBS i got like 50 stores all with codes like this with different store names only ! Please help me , if you just can give me the code so i can change all :/


Re: Textdraw problems - Patrick - 21.01.2013

Do it like this + its a gametext not a textdraw

pawn Код:
new string[128];
format(string,sizeof(string),"~p~Robbing Otto's Cars.~n~~r~Finish Robbery in: %d.~n~~w~Dont move from the checkpoint."RobbingOtto[playerid]);
GameTextForPlayer(playerid, string, 1000,3);
and change all your robbery countdown same like that