This ?
PHP Code:
{
new szAuthid[32];
get_user_authid(id, szAuthid, charsmax(szAuthid));
szAuthid[9] = EOS;
server_print("Left:%s , Right:%s", szAuthid, szAuthid[10]);
}
You always have weird question. You would have better to tell what you want to do with the steamid.
I remember having trouvle with ':' and replace simply with '_' like this :
szAuthid[7] = szAuthid[9] = '_';
And to reverse, so simple :
szAuthid[7] = szAuthid[9] = ':';
__________________