Posts: 66
Threads: 21
Joined: Jun 2012
Reputation:
0
How can I solve this:
format(string, sizeof(string), "ONE TWO THREE");
Result: ONE TWO THREE
I want:
ONE
TWO
THREE
I tried: /n, ~n~, /r/n and nothing.
Thanks.
Posts: 1,905
Threads: 63
Joined: Oct 2011
Reputation:
0
New line for what?
New line for dialogs is \n
New line for gametext, and textdraws is ~n~
Posts: 224
Threads: 37
Joined: Feb 2011
Reputation:
0
Try and do it like this:
format(string, sizeof(string), "ONE!");
SendClientMessage(playerid,COLOR_RED,string);
format(string, sizeof(string), "TWO!");
SendClientMessage(playerid,COLOR_ORANGE,string);
format(string, sizeof(string), "THREE!");
SendClientMessage(playerid,COLOR_GREEN,string);
Posts: 66
Threads: 21
Joined: Jun 2012
Reputation:
0
I want it for my payday. But i cant figure it out.
Posts: 449
Threads: 48
Joined: Jan 2010
Reputation:
0
You cant make a new line in SendClientMessage, it displays text in a new line automatically, so just do whats mentioned above.