-
Download xor, extract the content, modify the value
path[0]
to point to the executablexor.exe
. -
Download 7-Zip, extract the content, modify the value
path[1]
to point to the executable7z.exe
. -
Download quickbms, extract the content, modify the value
path[2]
to point to the executablequickbms.exe
. -
Download fmod_extractors, extract the content, modify the value
path[3]
to point to the executablefmod_extr.exe
.
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
*://askcodez.com/* | |
*://jonlabelle.com/* | |
*://*.delftstack.com/* |
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 EmuParadise Download Workaround | |
// @namespace emuparadise.me | |
// @version 1.0.1 | |
// @description Replaces the download links to bypass copyright protection. | |
// @description:fr Remplace les liens de téléchargement pour contourner les protection des droits d’auteur. | |
// @icon64 data:image/x-icon;base64,AAABAAEAEBAAAAAAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAQAQAAAAAAAAAAAAAAAAAAAAAAAD///8B////Af///wH///8BLjZDTzJeb6lAbX/LQm+A2UFvgNtAbn7PO2V0sTxaZ2P///8B////Af///wH///8B////Af///wH///8BRZekTVeKov9utM//eMPi/3jE4/94xOP/d8Lh/3C41f9dmbL/Q32Qbf///wH///8B////Af///wH///8B////AWCQrbtyutf/crjW/0ZxhP+E1ff/h9n8/0h0h/9vs8//e8np/1KQpt0tMz0F////Af///wH///8BQ0RdHwgLN7FFcY39db3W/3Cz0P9CYHD/g9X2/4bZ+/9DYnP/a6jE/3zK5/9IeY//DQ01wxERODH///8BFxZnIRkbad0FB1//Ex5b/zxkgf9Xi53/ZYuW/2Skuf9kpbv/YIeT/1aHmP9AbIP/FyZV/wUIUv8NDmLvDQw9NxMUipcIFof/DROK/woNfv8IC27/FCFt/x41cP8mQG7/JkBs/x40aP8UI17/CAta/wcJaf8LEHn/ChR8/xAWe7MMh7jVBWS4/xERsP8QGLH/EBet/w4Po/8MB5r/CguS/woMjf8LB4r/DAqL/w0Skf8 |
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 Abyss Explorer+ | |
// @namespace http://acelisweaven.github.io/AbyssExplorer/ | |
// @version 1.1 | |
// @description Abyss Explorer Plus is a mod for the Abyss Explorer utility, which adds some changes. | |
// @description:fr Abyss Explorer Plus est un mod pour l'utilitaire Abyss Explorer, qui ajoute quelques changements. | |
// @icon https://raw.githubusercontent.com/AcelisWeaven/AbyssExplorer/gh-pages/icon/favicon.ico | |
// @website https://gist.github.com/Glaived/bf80a268fdbc5ed8ffd71e7786c8cfa6 | |
// @supportURL https://gist.github.com/Glaived/bf80a268fdbc5ed8ffd71e7786c8cfa6 | |
// @updateURL https://gist.githubusercontent.com/raw/bf80a268fdbc5ed8ffd71e7786c8cfa6/AbyssExplorerPlus.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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
#Persistent ; Keeps a script permanently running (that is, until the user closes it or ExitApp is encountered). | |
#SingleInstance force | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
FileEncoding UTF-8 | |
#if WinActive("ahk_exe NeonAbyss.exe") | |
z:: |
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
#if WinActive("ahk_exe VALORANT-Win64-Shipping.exe") | |
*XButton1:: ; Choose your key | |
if (cut) { | |
send 2 ; Take the pistol if there's no main weapon. | |
send 1 | |
} else { | |
send 3 | |
} | |
cut := !cut |
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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
#Persistent ; Keeps a script permanently running (that is, until the user closes it or ExitApp is encountered). | |
#SingleInstance force | |
#if WinActive("ahk_exe Albion-Online.exe") | |
Up:: | |
SetDefaultMouseSpeed 0 | |
while GetKeyState("Up", "P") { | |
if (GetKeyState("Left", "P")) { |
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
//META{"name":"ReloadOnIdle","website":"https://gist.github.com/Glaived/7548c7e86a0c9ac19a169ed9572e715d","source":"https://gist.github.com/Glaived/7548c7e86a0c9ac19a169ed9572e715d/raw/e87e9e0511fd22095ef847862062c10caf489269/ReloadOnIdle.plugin.js"}*// | |
class ReloadOnIdle { | |
getName() { return "ReloadOnIdle"; } | |
getShortName() { return "ReloadOnIdle"; } | |
getDescription() { return "Reload Discord every 6 hours if you are AFK"; } | |
getVersion() { return "1.0.1"; } | |
getAuthor() { return "Glaived"; } | |
constructor() {} |
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
@echo off | |
mkdir "1 - Audio" | |
cd "1 - Audio" | |
mkdir "1 - Music" | |
mkdir "2 - Effect" | |
cd .. | |
mkdir "2 - Img" | |
cd "2 - Img" |
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
Show hidden characters
[ | |
/* You can add shortcut : example for Windows */ | |
{ "keys": ["ctrl+alt+shift+keypad_plus"], "command": "reset_font_size_to_user_defaults" } | |
/* ... */ | |
] |
NewerOlder