View Single Post
ajr1234
Senior Member
Join Date: Mar 2011
Location: Chicago, IL, U.S.A.
Old 08-03-2011 , 03:32   Re: Get steamid number
Reply With Quote #3

I have a stock that may help you:
PHP Code:
stock GetSteamID(clientString:authstr[], maxlen)
{
    
GetClientAuthString(clientauthstrmaxlen);
    if(
StrEqual(authstr"STEAM_ID_LAN"false))
    
GetClientIP(clientauthstrmaxlen);
    
ReplaceString(authstrmaxlen"STEAM_0:"""false);
    
ReplaceString(authstrmaxlen"STEAM_1:"""false);

Use it like this:
PHP Code:
decl String:buffer[256];
GetSteamID(clientbuffersizeof(buffer));
// buffer now holds the steam ID 
ajr1234 is offline