04.06.2018, 21:35
You have to use the strcat function so that it works.
example of strcat:
Ofcourse you need to define a string, and string size to it. As an example:
And you need to divide your query into 5-6 lines i guess with that much text you got in there.
Hope I helped.
example of strcat:
Код:
strcat(string, "{FF0000} text1\n"); strcat(string, "{FF0000}1. {FFFFFF}text2.\n"); strcat(string, "{FF0000}2. {FFFFFF}text3.\n"); strcat(string, "{FF0000}3. {FFFFFF}text4.\n"); strcat(string, " {FF0000}text5\n"); strcat(string, "{ff0000}1.{ffffff} text6\n"); strcat(string, "{ff0000}2.{ffffff} text7\n"); strcat(string, "{ff0000}3.{ffffff} text8");
Код:
new string[256];
Hope I helped.