This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using SteamKit2; | |
using SteamTrade; | |
using System; | |
using System.Collections.Generic; | |
using System.Threading; | |
using System.Timers; | |
namespace SteamBot | |
{ | |
public class ScrapUserHandler : UserHandler |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using SteamKit2; | |
using System.Collections.Generic; | |
using SteamTrade; | |
using System; | |
using System.Timers; | |
namespace SteamBot | |
{ | |
public class KeyUserHandler : UserHandler | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using SteamKit2; | |
using System.Collections.Generic; | |
using SteamTrade; | |
namespace SteamBot | |
{ | |
public class ReallySimpleUserHandler : UserHandler | |
{ | |
public SimpleUserHandler (Bot bot, SteamID sid) : base(bot, sid) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo Checking for prerequisites. Please enter password if prompted. | |
sudo apt-get update | |
sudo apt-get install libpng3 libpng3-dev libtool libtiff4 libtiff4-dev libexif12 libexif-dev libgif4 libgif-dev libpango1.0-dev libatk1.0-dev bison automake autoconf make gcc gtk-sharp2 build-essential xorg-dev libfreetype6 libfontconfig libfontconfig-dev gettext libglib2.0-dev git mono-complete libjpeg-dev | |
echo Downloading latest build of mono... | |
git clone git://github.com/mono/mono.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$APIkey = 'API KEY HERE'; // Use your own API key here | |
$profile = $_GET['id']; // usage: page.php?id=1234567890 | |
if (empty($profile)) | |
{ | |
exit(0); | |
} | |
// Put together the URL for the backpack | |
$backpackURL = "http://api.steampowered.com/IEconItems_440/GetPlayerItems/v0001/?key=" . $APIkey . "&SteamID=" . $profile . "&format=json"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Steam Broadcast Chat Cleaner | |
// @namespace http://jzhang.net/ | |
// @version 3.1.1 | |
// @description Cleans up Steam Broadcast chat | |
// @author waylaidwanderer | |
// @include http://steamcommunity.com/broadcast/watch/* | |
// @require //code.jquery.com/jquery-1.11.3.min.js | |
// @downloadURL https://gist.github.com/waylaidwanderer/6bb095e0731ef41d49dc/raw/SteamBroadcastChatCleaner.user.js | |
// @updateURL https://gist.github.com/waylaidwanderer/6bb095e0731ef41d49dc/raw/SteamBroadcastChatCleaner.user.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<TaskerData sr="" dvi="1" tv="5.9.3"> | |
<Profile sr="prof4" ve="2"> | |
<cdate>1601259130061</cdate> | |
<edate>1601428314832</edate> | |
<flags>10</flags> | |
<id>4</id> | |
<mid0>15</mid0> | |
<Event sr="con0" ve="2"> | |
<code>208</code> | |
</Event> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background: #191919; | |
color: #d2d2d2; | |
} | |
h1 { | |
color: #d2d2d2; | |
} | |
.nav__bar { |