25.04.2014, 13:41
Just use format twice.
The line is too long that's why the compiler is not responding. By the way, you don't need to use COL_CYAN everytime. It will use that color on the next line so doing that is just a waste of characters.
pawn Код:
// edit the text and the arguments.
format(String,sizeof(String), "...", ...);
format(String,sizeof(String), "%s ...", String, ...); // inserts the previous text into this one