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
| // null binds on WASD | |
| joy_side_sensitivity 1 | |
| joy_forward_sensitivity 1 | |
| alias "+a" "rightleft -1 0 0; alias +d ad" | |
| alias "left1" "rightleft -1 0 0; alias +d ad" | |
| alias "ad" "rightleft 1 0 0; alias -d add; alias -a ada" | |
| alias "-a" "rightleft 0 0 0; alias +d right1; alias -d right2; alias -a left2; alias +a left1" | |
| alias "left2" "rightleft 0 0 0; alias +d right1; alias -d right2; alias -a left2; alias +a left1" |
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/bash | |
| # Prompts the user for a URL if not provided as a command-line argument. | |
| # Extracts the ID from the given URL to use in API requests. | |
| function promptForURL() { | |
| local url="$1" | |
| until [ -n "$url" ]; do | |
| read -p "URL: " url | |
| done | |
| id=$(sed 's|.*gofile.io/d/||g' <<< "$url") |
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
| //Improve Fps Kot | |
| cl_showhelp "0" | |
| cl_lagcompensation "1" | |
| cl_predictweapons "1" | |
| cl_resend "6" | |
| cl_timeout "9999999" | |
| r_eyegloss "0" | |
| r_eyemove "0" | |
| r_eyeshift_x "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
| // ==UserScript== | |
| // @name Bypass pixeldrain download (gallery) | |
| // @namespace http://tampermonkey.net/ | |
| // @match https://pixeldrain.com/l/* | |
| // @grant none | |
| // @version 2.0 | |
| // @author TmatzXzonEv | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; |
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
| // Extract file IDs and construct single URLs | |
| const fileData = window.viewer_data.api_response.files; | |
| const singleUrls = fileData.map(file => `https://pixeldrain.com/u/${file.id}`); | |
| // Construct log message | |
| const logMessage = ["Single URLs:"]; | |
| singleUrls.forEach(url => logMessage.push(url)); | |
| // Create a Blob containing the log message | |
| const blob = new Blob([logMessage.join("\n")], { type: "text/plain" }); |