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
| # Mandrx (https://github.com/mandrx) | |
| import cv2 | |
| import numpy as np | |
| import mss | |
| import pygetwindow as gw | |
| import pyautogui | |
| import keyboard | |
| # Define the name of the window to capture | |
| window_name = 'Ragnarok Origin Global' |
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
| const executeAllScriptTag = () => { | |
| console.log(`Executing all script tags...`) | |
| document.querySelectorAll('script, link').forEach((el) => { | |
| const externalUrl = el.src || el.href || '' | |
| if (!!externalUrl) { | |
| // Create new node | |
| let newNode = document.createElement(el.nodeName); |
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
| const capitalizeString1 = (str) => str | |
| .split(" ") | |
| .map((str)=> | |
| str[0].toUpperCase() + str.slice(1)) | |
| .join(" ") | |
| const capitalizeString2 = (str) => str | |
| .split(" ") | |
| .map((str)=> |