✅ - 100% Completion
🟢 - Completed
💤 - Started, on hold
❌ - Not started
🔴 - Not Purchased
as of march 16, i've completely restarted this backlog and only categories with games i've at least started playing will be listed
Game | Start/End | Progress | Team | Dex (caught/seen) |
---|---|---|---|---|
Red | Feb 2024 ⏹️ Ended |
HoF | Lv64 Venusaur♂️ Lv63 Graveler♀️️ Lv61 Lapras♀️ Lv58 Beedrill♀️ Lv62 Pidgeot♀️ |
43/123 |
Silver | Feb 2024⏹️ Ended | HoF, 16 badges | Lv61 Beedrill♀️Lv63 LugiaLv62 Graveler♀️Lv62 Gyarados♂️✨Lv61 Pidgeot♀️ | 24/183 |
Seeing how SteamIDs have changed recently, I thought I'd write a Gist to help others (including myself!) decypher how to convert these from one format to the other in Python. First, let's go over basics to convert a 64bit CommunityID into a SteamID:
steamid64ident = 76561197960265728
def commid_to_steamid(commid):
steamid = []
steamid.append('STEAM_0:')
steamidacct = int(commid) - steamid64ident