This file contains 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
----------------------------------------------------------------------- | |
[REBINDING CONTROLS] | |
----------------------------------------------------------------------- | |
This is for advanced users. READ CAREFULLY, this is your only source on | |
how to do so, there is no live support. | |
List of valid UE keynames: | |
https://nerivec.github.io/old-ue4-wiki/pages/list-of-keygamepad-input-names.html | |
This file contains 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 System; | |
using System.Linq; | |
using System.Diagnostics; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
using System.Collections.Generic; | |
namespace ConsoleApplication3 | |
{ | |
class Program |
This file contains 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
/* eslint-disable no-empty */ | |
// Subscribe to events | |
chrome.tabs.onRemoved.addListener(OnAnyTabRemoved); | |
// Spawn offscreen page | |
// Apaprently it needs to be async to be caugh, for whatever reason | |
(async () => { | |
try { await chrome.offscreen.createDocument({ url: '/pages/offscreen.html', reasons: [chrome.offscreen.Reason.CLIPBOARD], justification: ''}); } | |
catch (error) { console.log(error); } |
This file contains 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
//=================== | |
// DEFINITIONS | |
//=================== | |
typedef struct | |
{ | |
char MAGIC[4]; | |
uint32 FullSize; | |
char FMTMAGIC[8]; | |
uint32 Unk1; | |
uint32 Unk2; |
This file contains 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
//------------------------------------------------ | |
// File: .bmscc (Scenario Camera Collision) | |
// Authors: Kein | |
// Version: 0.1 | |
// History: 0.1 - Initial release | |
//------------------------------------------------ | |
char magic[4]; // MSCD | |
int unk0; | |
int numKeys; | |
struct |
This file contains 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
//--------------------------------------- | |
// Authors: Warpten | |
// Version: 0.2 | |
// Purpose: Metroid Dread BMSSD | |
// Category: Metroid Dread | |
// File Mask: | |
// ID Bytes: | |
// History: 0.1 - Initial Version | |
// 0.2 - readability | |
//--------------------------------------- |
This file contains 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
public class MutableString | |
{ | |
// Setup fields | |
private int m_Pos; | |
private string m_valueStr; | |
private readonly bool dontThrow = false; | |
// Publics | |
public int Capacity { get { return m_valueStr.Length; } } | |
public int Length { get { return m_Pos; } } |
This file contains 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 QuickReply | |
// @version 0.0.1 | |
// @description Quick reply on Steam forums | |
// @author Kein | |
// @match *://steamcommunity.com/app/*/tradingforum/*/* | |
// @match *://steamcommunity.com/groups/*/discussions/* | |
// @match *://steamcommunity.com/app/*/discussions/*/*/* | |
// @match *://steamcommunity.com/workshop/discussions/*/*/* | |
// @grant none |
This file contains 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 Highlighter | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Highlights threads posted by you | |
// @author Kein | |
// @match *://steamcommunity.com/*/*/discussions/ | |
// @match *://steamcommunity.com/*/*/*/?fp=* | |
// @match *://steamcommunity.com/app/*/tradingforum/ | |
// @match *://steamcommunity.com/app/*/tradingforum/?fp=* |
This file contains 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 Wishlist Bulk Remover | |
// @version 0.1 | |
// @description Removes wishlist items in bulk | |
// @author Kein | |
// @match *://store.steampowered.com/wishlist/profiles/* | |
// @match *://store.steampowered.com/wishlist/id/* | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== |