Skip to content

Instantly share code, notes, and snippets.

View korden32's full-sized avatar

KorDen korden32

View GitHub Profile
@korden32
korden32 / scud-fastban.user.js
Last active August 29, 2015 14:05
SCUD FastBan
// ==UserScript==
// @name SCUD FastBan
// @version 0.2.0
// @author KorDen
// @grant none
// @include *//steamcommunity.com/discussions/forum/*
// @include *//steamcommunity.com/groups/*/discussions/*
// @include *//steamcommunity.com/app/*discussions*
// @include *//steamcommunity.com/app/*/tradingforum*
// @include *//steamcommunity.com/workshop/discussions/*
@korden32
korden32 / scud-bbcodes.user.js
Last active August 29, 2015 14:20
SCUD BBCodes
// ==UserScript==
// @name SCUD BBCodes
// @version 0.1.2
// @author KorDen
// @grant none
// @include *//steamcommunity.com/discussions/forum/*
// @include *//steamcommunity.com/groups/*/discussions*
// @include *//steamcommunity.com/app/*discussions*
// @include *//steamcommunity.com/app/*/tradingforum*
// @include *//steamcommunity.com/workshop/discussions/*
@korden32
korden32 / steamforums-unban.user.js
Last active August 29, 2015 14:23
Steam forums unban
// ==UserScript==
// @name Steam forums unban
// @author KorDen
// @version 0.1.1
// @grant none
// @include *//steamcommunity.com/*/forumBanManage*
// ==/UserScript==
$J('.group_paging:first').before('<div class="search_controls">\
Un-ban by SteamID: <div class="gray_bevel for_text_input"><input size="20" placeholder="SteamID64" value="" id="unban_sid"></div>\
// ==UserScript==
// @name Steam account history advanced view
// @version 0.0.1
// @author KorDen
// @grant none
// @include https://store.steampowered.com/account/history/*
// ==/UserScript==
( function() {
if($J('.wallet_table_row').length > 0) {
// ==UserScript==
// @name SInventory GoTo
// @author KorDen
// @include *//steamcommunity.com/*/inventory/*
// @version 0.1.0
// @grant none
// ==/UserScript==
$J('.filter_label:first').prepend('<input type=text id=invPage size=2><input type=button value="Go" onClick="g_ActiveInventory.SetActivePage($J(\'#invPage\').prop(\'value\') - 1)"> ');
@korden32
korden32 / community-market-wishlist-script.user.js
Last active September 16, 2015 17:35 — forked from Maximilian-L/community-market-wishlist-script.user.js
Allows you to add Steam Commuity Market items to a wishlist tab to keep track of items that you might want to purchase at a later point of time.
// ==UserScript==
// @name Steam Community Market Wishlist
// @description Allows you to add Steam Commuity Market items to a wishlist tab to keep track of items that you might want to purchase at a later point of time.
// @match *steamcommunity.com/market*
// @grant none
// ==/UserScript==
//Adjust the following variable's value to your currency's code (see list below)
var marketCurrency = 3; // 1 = $; 2 = £; 3 = €; 5 = pуб; 7 = R$; 8 = ¥; 9 = kr; 10 = Rp; 11 = RM; 12 = P; 13 = S$; 14 = ฿; 17 = TL; 19 = Mex$; 20 = CDN$; 22 = NZ$
//Adjust the following variable's value to your currency's sign (see list above)
@korden32
korden32 / market-to-csv-ingame.user.js
Created September 20, 2015 19:09
Steam In-Game purchases export
// ==UserScript==
// @name Steam In-Game purchases export
// @author KorDen
// @version 0.0.1
// @grant none
// @include https://store.steampowered.com/account/history*
// ==/UserScript==
( function() {
$J('.wallet_history_table').before('<a class="btn_small btn_blue_white_innerfade" id="btnExport"><span>Export in-game purchases...</span></a><br><br>');
@korden32
korden32 / infjump.sp
Created May 10, 2013 13:08
Simple BunnyHop for SM
public Action:OnPlayerRunCmd(client, &buttons, &impulse, Float:vel[3], Float:angles[3], &weapon)
if (IsPlayerAlive(client) && (buttons & IN_JUMP) && !(GetEntityFlags(client) & FL_ONGROUND) && !(GetEntityMoveType(client) & MOVETYPE_LADDER) && (GetEntProp(client, Prop_Data, "m_nWaterLevel") <= 1))
buttons &= ~IN_JUMP;
@korden32
korden32 / bks-noblock.sp
Created May 10, 2013 19:38
Simple NoBlock
#include <sourcemod>
#include <sdktools>
new g_offsCollisionGroup=-1;
public Plugin:myinfo =
{
name = "BKS NoBlock",
author = "KorDen",
version = "1.0",
url = "dev,sky-play.ru"
// ==UserScript==
// @name SCUD FastReply
// @version 0.2.0
// @author KorDen
// @grant none
// @include *//steamcommunity.com/discussions/forum/*
// @include *//steamcommunity.com/groups/*/discussions*
// @include *//steamcommunity.com/app/*discussions*
// @include *//steamcommunity.com/app/*/tradingforum*
// @include *//steamcommunity.com/workshop/discussions/*