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
/** | |
* @name Steam Inventory broken Tabs enabler | |
* @description Activate all currently known broken inventory tabs | |
* @version 1.0.0 | |
* @author RenokK | |
* @website https://steamcommunity.com/groups/InventoryService/discussions/0/1711816348630251347/ | |
*/ | |
const appIds = [ | |
422890, 961210, 912210, 870000, 973780, 714360, 2004920, 652410, 1959960, |
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
local perk1 = "CRITICAL_HIT" | |
local perk2 = "BREATH_UNDERWATER" | |
local perk3 = "EXTRA_MONEY" | |
local perk4 = "EXTRA_MONEY_TRICK_KILL" | |
local perk5 = "HOVER_BOOST" | |
local perk6 = "MOVEMENT_FASTER" | |
local perk7 = "LOW_GRAVITY" | |
local perk8 = "SPEED_DIVER" | |
local perk9 = "STRONG_KICK" | |
local perk10 = "REPELLING_CAPE" |
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
<COLOR NAME="AliceBlue" CMYK="#0f070000" Spot="0" Register="0"/> | |
<COLOR NAME="AntiqueWhite" CMYK="#000f2305" Spot="0" Register="0"/> | |
<COLOR NAME="AntiqueWhite1" CMYK="#00102400" Spot="0" Register="0"/> | |
<COLOR NAME="AntiqueWhite2" CMYK="#000f2211" Spot="0" Register="0"/> | |
<COLOR NAME="AntiqueWhite3" CMYK="#000d1d32" Spot="0" Register="0"/> | |
<COLOR NAME="AntiqueWhite4" CMYK="#00081374" Spot="0" Register="0"/> | |
<COLOR NAME="Aquamarine" CMYK="#80002b00" Spot="0" Register="0"/> | |
<COLOR NAME="Aquamarine1" CMYK="#80002b00" Spot="0" Register="0"/> | |
<COLOR NAME="Aquamarine2" CMYK="#78002811" Spot="0" Register="0"/> | |
<COLOR NAME="Aquamarine3" CMYK="#67002332" Spot="0" Register="0"/> |
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
private findObjectByPath (obj, path: string) { | |
const pathArr: Array<string> = path.split('.'); | |
let counter: number = 0 | |
let tempObj = obj; | |
while (counter < pathArr.length) { | |
const cur = pathArr[counter]; | |
tempObj = tempObj[cur]; | |
counter++; | |
} | |
return tempObj; |
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 Auto-Gamble | |
// @namespace autoGamble | |
// @include https://csgopolygon.com/ | |
// @version 1.3 | |
// @grant none | |
// ==/UserScript== | |
$(document).on('ready', () => { | |
console.log('ready'); |
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
Array.prototype.remove = function(from, to) { | |
var rest = this.slice((to || from) + 1 || this.length); | |
this.length = from < 0 ? this.length + from : from; | |
return this.push.apply(this, rest); | |
}; |
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
Branch: <% if (gitHead) { %> [<%= gitHead %>]<% } %><% if (projectName) { %> - Project: [<%= projectName %>]<% } %><% if (filePath) { %> - Filepath: [<%= filePath %>]<% } %> |