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
| world210.runescape.com | |
| world210a.runescape.com | |
| world211.runescape.com | |
| world211a.runescape.com | |
| world212.runescape.com | |
| world212a.runescape.com | |
| world213.runescape.com | |
| world213a.runescape.com | |
| world214.runescape.com | |
| world214a.runescape.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
| #SingleInstance Force | |
| Menu, Tray, Tip,RS3 client anti-minimize`nPress F1 to enable | |
| F1::disableMinimize() | |
| disableMinimize() { | |
| WinSet, Style, -0x20000, ahk_class JagWindow | |
| TrayTip, RuneScape, Client minimize button disabled, 3 | |
| ExitApp | |
| } |
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
| #!/bin/sh | |
| printf "Downloading list... " | |
| curl "https://dblw.oisd.nl/" -o oisd-dblw.txt 2> /dev/null | |
| printf "done\nProcessing list... " | |
| grep -v "#" oisd-dblw.txt | grep -v "*." | grep "." | awk '{print "local-zone: \""$1"\" always_refuse"}' > oisd-wildcard.conf | |
| rm -f oisd-dblw.txt | |
| printf "done\n" |
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
| # Domain blocklist for sketchy Minecraft mod sites | |
| # For use with any DNS-based domain blocking solution | |
| # Supports both IPv4 and IPv6 | |
| # Last updated: 2020-10-25 18:29 UTC | |
| :: 9minecraft.net www.9minecraft.net | |
| :: www.dl.9minecraft.net www.dl1.9minecraft.net www.dl2.9minecraft.net www.dl3.9minecraft.net www.dl4.9minecraft.net www.dl5.9minecraft.net www.dl6.9minecraft.net | |
| :: www.files.9minecraft.net www.files1.9minecraft.net www.files2.9minecraft.net www.files3.9minecraft.net www.files4.9minecraft.net | |
| :: mc-mod.net www.mc-mod.net | |
| :: www.download.mc-mod.net www.files.mc-mod.net |
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
| ; Elevation Bypass v1.0 | |
| ; Allows one to try and run an application without elevated (admin) user privileges, | |
| ; useful for programs that were compiled with a manifest specifying elevated | |
| ; privileges, programs that don't actually need elevated privileges to run. | |
| #NoEnv | |
| EnvSet, __COMPAT_LAYER, RUNASINVOKER | |
| IniFile = ElevationBypass.ini | |
| if (!FileExist(IniFile)) { | |
| IniWrite, PlaceholderApp.exe, %IniFile%, Application, AppName |
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 | |
| taskkill /f /im gtavLauncher.exe | |
| ipconfig /release | |
| start gtavLauncher.exe | |
| wmic process where name="gtavlauncher.exe" CALL setpriority "low priority" | |
| timeout 30 | |
| ipconfig /renew | |
| wmic process where name="gta5.exe" CALL setpriority "high priority" | |
| wmic process where name="subprocess.exe" CALL setpriority "low priority" |