Just to be sure you're not gonna use format() with back copy, I'll show you the method:
Code:
new msg[2048]
new len = 0
len += formatex(msg[len], charsmax(msg) - len, "<html>")
len += formatex(msg[len], charsmax(msg) - len, "<head></head>")
len += formatex(msg[len], charsmax(msg) - len, "<body>%s</body>", "wtf")
len += formatex(msg[len], charsmax(msg) - len, "</html>")
Still, I think
add() could work instead of formatex() aswell... but I never used it =)
__________________