"Untitled" By gando (https://pastebin.com/u/gando) URL: https://pastebin.com/P9wbdksd Created on: Saturday 26th of May 2012 05:57:25 PM CDT Retrieved on: Saturday 31 of October 2020 07:57:05 AM UTC def getCommunityID(steamID): # now working, thanks to the miracle of the split() method tempString = steamID.split('_')[1] X = long(tempString.split(':')[0]) Y = long(tempString.split(':')[1]) Z = long(tempString.split(':')[2]) SteamCommunityID = (Z*2) + 76561197960265728 + Y return SteamCommunityID