- Install Python 3
- Install and use mod Map Writer
- Download the file
- Type this:
CLS && py mapwriter_sorter.py
openapi: 3.0.0 | |
info: | |
version: "1.0" | |
title: BYOND API | |
description: "Website offer a free API that provides some info for a players and about players, hubs and worlds." | |
termsOfService: https://www.byond.com/TOS | |
contact: | |
name: SS13HUB Team | |
url: http://discord.gg/HMwbBZyEum |
CLS && py mapwriter_sorter.py
this.document.querySelectorAll('[class^="member"],[class^="container"],[class^="clickable"],[data-list-item-id^="members"]')[0]; | |
this.document.querySelectorAll('[class^="userInfoBody"]')[0].innerText.split('\n'); |
// Run in Google Chrome Console. MIT Licence. | |
// For "http://byond.com/games/Exadv1/SpaceStation13?format=text" | |
function main(_input = false) { | |
if ((_input === false) || (_input === null) || (_input == '')) {return console.error("User cancelled the prompt.");} | |
console.clear(); | |
if (verbose) console.debug(['PROCESSING START']); | |
let current_entry = '', _data = {}; // let tabbed = [], notTabbed = []; | |
//_input = _input.split('\r\n'); | |
//if (debug) console.log('_input:', _input); | |
for (var i = 0; i < _input.length; i++) { |
let buttLoot, buttLeave, _debug = Boolean(1); | |
let _store = Array.from(document.querySelectorAll('*')).find(e => e.__vue__).__vue__.$store; | |
// Seach for buttons to click | |
// https://stackoverflow.com/a/67398903/8175291 | |
function querySelectorIncludesText(selector, text) { | |
if ((!selector) || (!text)) return console.error('querySelectorIncludesText error!'); | |
return Array.from(document.querySelectorAll(selector)) | |
.find(el => el.textContent.includes(text)); | |
} | |
// Run away if player can be killed in two successfully hits. |
Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...
Italics *italics* or _italics_
Underline italics __*underline italics*__
// https://stackoverflow.com/questions/6991494/ | |
javascript: (function() { | |
console.clear(); | |
let unique_only = Boolean(1); | |
let arr = new Array(); | |
let messages = document.querySelectorAll('[id ^= "chat-messages-"]'); | |
Array.prototype.forEach.call(messages, callback); | |
function callback(element, i) { | |
let avatar = element.querySelector('[class ^= "avatar-"]'); // [aria-hidden ^= "true"]; | |
// ('[src ^= "https://cdn.discordapp.com/avatars/*]'); |
// WARNING: | |
// "VK error: Действие временно невозможно, поскольку вы совершили слишком много однотипных действий за последнее время. #78101300" | |
var likesButtAll = document.getElementsByClassName("PostButtonReactions"); | |
var likesButtToLike = []; | |
for (var i = 0; i < likesButtAll.length - 1; i++) { | |
if (likesButtAll[i].getAttribute("data-reaction-user-reaction-id") === null) | |
likesButtToLike.push(likesButtAll[i]); | |
} |
import os, json, random, string | |
generateFormFromOSName = bool(1) | |
printMods = bool(0) | |
# + thumbnail.png | |
modpackInfo = { | |
"name": "example-modpack", # aka ID, no spaces | |
"title": "Example Modpack", |