Quote:
Originally Posted by fysiks
No. The format string tells the code how to format the string so it will only replace the special formatting character sets (i.e. the "%s" or "%n").
|
What do you mean? I know that. I wrote I need NOT only the name but a space after it too
Code:
formatex(szTemp, charsmax(szTemp), "%s ", szName)
^
If you know how to do it another way then please tell me
Sure, I can do this to add a space but what's the difference then:
Code:
case NAME_ONLY:
{
get_user_name(iSender, szTemp, charsmax(szTemp))
add(szTemp, charsmax(szTemp), " ")
}
__________________