Raised This Month: $51 Target: $400
 12% 

Showing results 1 to 2 of 2
Search took 0.00 seconds.
Search: Posts Made By: asherkin
Forum: Snippets and Tutorials 11-15-2014, 11:13
Replies: 358
Views: 550,550
Posted By asherkin
Re: Convert STEAMID to Steam Community ID

strval(const iNum)
{
return '0' + ((iNum >= 0 && iNum <= 9) ? iNum : 0);
}

intval(cNum)
{
return (cNum >= '0' && cNum <= '9') ? (cNum - '0') : 0;
}
Forum: Snippets and Tutorials 02-01-2011, 09:03
Replies: 358
Views: 550,550
Posted By asherkin
Re: Convert STEAMID to Steam Community ID

For anyone interested, here is a C++ function I'm currently using.
CSteamID atocsteamid(const char *pRenderedID) {
char renderedID[32];
V_strcpy(renderedID, pRenderedID);

char *strPrefix =...
Showing results 1 to 2 of 2

 
Forum Jump

All times are GMT -4. The time now is 06:18.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode