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
#RequireAdmin | |
#NoTrayIcon | |
Opt("MustDeclareVars", True) | |
Opt("ExpandVarStrings", True) | |
Global $pid, $openProcess, $handle, $windowHandle, $charName | |
Global $kernelHandle = DllOpen('kernel32.dll') | |
If Not $kernelHandle Then | |
MsgBox(16, 'Error', 'Failed to open kernel32.dll') |
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
# https://github.com/uBlockOrigin/uAssets/pull/3517 | |
twitch-videoad.js application/javascript | |
(function() { | |
if ( /(^|\.)twitch\.tv$/.test(document.location.hostname) === false ) { return; } | |
var realFetch = window.fetch; | |
window.fetch = function(input, init) { | |
if ( arguments.length >= 2 && typeof input === 'string' && input.includes('/access_token') ) { | |
var url = new URL(arguments[0]); | |
url.searchParams.forEach(function(value, key) { | |
url.searchParams.delete(key); |
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
#include-once | |
#Region About | |
#cs | |
This is a simple inventory management without a GUI | |
The bot will Store the items you want | |
Identify whatever is left on your inventory | |
Sell what he needs to | |
Everything is easily configurable | |
You can add more configuration very easily if you know what you're doing |
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
"xo": { | |
"rules": { | |
"linebreak-style": "off", | |
"camelcase": "off", | |
"no-var": "off", | |
"prefer-arrow-callback": "off", | |
"max-params": "warn", | |
"unicorn/filename-case": [ | |
"error", |