Umm, not quite sure what your question is. You format strings like this:
Code:
new szName[33]
get_user_name(id,szName,32)
replace(szMyStr,127,"<name>",szName)
Also, you cannot pass direct data to act like a string. The compiler has no way of knowing whether you expect a variable / command or a string. So this would work:
Code:
replace(message, 130, "<nick>", veikejas)
But this would not:
Code:
replace(message, 130, <nick>, veikejas)
As per your question though, are you sure the inputted section has brackets ( < and > ) around it?
__________________