Results 1 to 2 of 2

Thread: Steam Game promotion!

  1. #1
    Join Date
    Mar 2006
    Location
    Malaysia
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Steam Game promotion!

    Just want to share with you guys

    In this 24 hours CS: Source is only for 5 dolars.

    http://store.steampowered.com/app/240/

    Got other promotion too you guys can find out.
    -It's not about the quantity, It's about the quality-

  2. #2
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    If you're bored you could make a pretty simple script to see how much you can save on every game on Steam.

    Something like..

    python Code:
    for i in range(len(gameIDs)):
      uf = urllib.urlopen('http://store.steampowered.com/app/' + str(i))
      txt = uf.read()
      found = re.search(r'Save \d*%', txt)
      if found:
        print found.group()

    or something. Then you could only save games where you save >= X%.

    (Can Python tags be added? :< Highlight=Python../Highlight is way lamer than Python../Python.)
    Last edited by i luffs yeww; 11-24-2010 at 11:36 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •