Steam Tools - Easy Access

By dronez4 on May 15, 2015

I orginally made this script for a community called RenCorner for steam tools made for easy access.
let me know what you think they all work
it works off of the steam protocol

menu * {
  Steam tools
  .STD:/dialog -m std std
}

dialog std {
  title "Steam tools"
  size -1 -1 700 190
  option pixels
  tab "Steam tools",1,4 4 690 165
  button "Screenshots", 2, 15 45 135 25
  button "Add friends", 3, 155 45 135 25
  button "Servers", 4, 405 45 135 25
  button "Store", 5, 545 45 135 25
  button "Add non-steam game", 6, 15 85 135 25
  button "Appear Offline", 7, 155 85 135 25
  button "Games list", 8, 405 85 135 25
  button "Friends list", 9, 545 85 135 25
  button "Flush Steam Config", 10, 280 125 135 25
  button "Appear Online", 15, 87 125 135 25
  button "Appear busy", 16, 475 125 135 25

  text "© Copyright By dronez4 ©", 12, 10 170 200 100
  text "RenCorner Steam Tools", 13, 170 170 200 100,
}

on *:dialog:std:*:*: {
  if ($devent == sclick) {
    if ($did == 2) {
      //run steam://open/screenshots
    }
    if ($did == 3) {
      //run steam://friends/add
    }
    if ($did == 4) {
      //run steam://open/servers
    }
    if ($did == 5) {
      //run steam://store/
    }
    if ($did == 6) {
      //run steam://AddNonSteamGame
    }
    if ($did == 7) {
      //run steam://friends/status/offline
    }
    if ($did == 8) {
      //run steam://nav/games/list
    }
    if ($did == 9) {
      //run steam://open/friends
    }
    if ($did == 10) {
      //run steam://flushconfig/
    }
    if ($did == 15) {
      //run steam://friends/status/online
    }
    if ($did == 16) {
      //run steam://friends/status/busy
    }
  }
}

Comments

Sign in to comment.
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.