Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function toCommunityID($id)
- {
- if (preg_match('/^STEAM_/', $id)) {
- $parts = explode(':', $id);
- return bcadd(bcadd(bcmul($parts[2], '2'), '76561197960265728'), $parts[1]);
- } elseif (is_numeric($id) && strlen($id) < 16) {
- return bcadd($id, '76561197960265728');
- } else {
- return $id; // We have no idea what this is, so just return it.
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment