What do you expect. It going to do that because your using a single global variable to store all those. It going to overwrite them using copy. Are you trying to put all those messages into a single variable?
Code:
new len;
new message[256];
// I believe this is correct usage.
len += format(message, message[len], "Message");
len += format(message, message[len], "Message");
edit
Quote:
|
Originally Posted by copy
copy - Copies one string to another for a maximum for len characters.
|
__________________