Jump to content

Makes a list of Steam games on your account


harmor
 Share

Recommended Posts

#include <String.au3>
#include <array.au3>
#include <INet.au3>
local $user
$user = InputBox("Steam Username", "What is your Steam username?", "", "")
local $display
local $array
local $sHTML = _INetGetSource ("http://steamcommunity.com/id/"&$user&"/games?tab=all")
$array = _StringBetween($sHTML, "<h4>", "</h4>")
$display = _ArrayDisplay($array, "")

Update:

Changed code to use _INetGetSource() instead of _IE* since non-Windows operating systems do not have Internet Explorer installed.

Edited by harmor
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...