A LUA dictionary with every country code supported by Roblox's Localization Service, includes country's name and flag
The script is provided under this gist, however you can also use the require:
require(13144850866) -- returns dictionary
# written by mov-ebx on github | |
import requests | |
def scan(query): | |
def search_repositories(query): | |
url = f'https://api.github.com/search/repositories?q={query.replace(" ", "+")}' | |
response = requests.get(url) | |
if response.status_code != 200: | |
raise Exception(f'Failed to search repositories: {response.status_code}') | |
return response.json()['items'] |
// ==UserScript== | |
// @name Pixlr unlimited daily saves | |
// @description Allows for unlimited daily saves on the Pixlr online image editor! | |
// @match https://pixlr.com/* | |
// @version 1.0 | |
// @author mov-ebx | |
// ==/UserScript== | |
let settings = JSON.parse(localStorage.getItem('user-settings')); | |
localStorage.setItem('user-settings', JSON.stringify({ | |
...settings, |
# user nuke bot, not tested with bot tokens | |
# put your discord token in a file called token.txt | |
import requests, threading | |
### | |
channel_name = 'nuked' # set this to the text you want the channel to be named | |
channel_text = '@everyone https://github.com/mov-ebx' # set this to the text you want to say in the channel | |
tts = True # text to speech? | |
amount_of_channels = 1 # amount of channels you want to nuke with | |
delete_all_channels = True # deletes channels of the server |
{ | |
"Classes": [ | |
{ | |
"Members": [ | |
{ | |
"Category": "Behavior", | |
"MemberType": "Property", | |
"Name": "Archivable", | |
"Security": { | |
"Read": "None", |
// ==UserScript== | |
// @name RogueCheats Anti-Anti-Adblock | |
// @version 1.1 | |
// @license MIT | |
// @description Blocks the annoying popup on RogueCheats asking you to turn off your adblock | |
// @author https://github.com/mov-ebx | |
// @match https://*.rogue.best/* | |
// @match https://*.math-for-the.win/* | |
// @grant none |
local CountryCode = "US" -- Example country code, must be 2 letters | |
local Emoji = "" | |
-- Regional indicator emojis | |
local RegionalIndicators = {A="๐ฆ",B="๐ง",C="๐จ",D="๐ฉ",E="๐ช",F="๐ซ",G="๐ฌ",H="๐ญ",I="๐ฎ",J="๐ฏ",K="๐ฐ",L="๐ฑ",M="๐ฒ",N="๐ณ",O="๐ด",P="๐ต",Q="๐ถ",R="๐ท",S="๐ธ",T="๐น",U="๐บ",V="๐ป",W="๐ผ",X="๐ฝ",Y="๐พ",Z="๐ฟ"} | |
-- Loop through letters in country code | |
for c in CountryCode:gmatch"." do | |
Emoji = Emoji..RegionalIndicators[c] | |
end |
// ==UserScript== | |
// @name Discord Experiments Enabler | |
// @version 1.0 | |
// @description Enables secret/experimental developer options in Discord! Go to `Settings` > `What's New`, and you'll find a ton of stuff there! | |
// @author https://github.com/mov-ebx | |
// @match https://*.discord.com/* | |
// @grant none | |
// @namespace https://greasyfork.org/users/1059581 | |
// @icon https://www.google.com/s2/favicons?sz=256&domain=discord.com | |
// ==/UserScript== |
javascript:(function() { let token = prompt("Please enter the Discord token"); function login(token) { setInterval(() => { document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"` }, 50); setTimeout(() => { location.reload(); }, 2500); } login(token); location.reload(); }());
import requests, time, uuid | |
headers = {'authority':'api.discord.gx.games','accept':'*/*','accept-language':'en-US,en;q=0.9','content-type':'application/json','origin':'https://www.opera.com','referer':'https://www.opera.com/','sec-ch-ua':'"Opera GX";v="105", "Chromium";v="119", "Not?A_Brand";v="24"','sec-ch-ua-mobile':'?0','sec-ch-ua-platform':'"Windows"','sec-fetch-dest':'empty','sec-fetch-mode':'cors','sec-fetch-site':'cross-site','user-agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 OPR/105.0.0.0'} | |
def now(): | |
return f'[{time.strftime("%H:%M:%S")}]' | |
wait_time = 0 | |
def generate(): | |
global wait_time |