Append to the end of all tiki files you make a QuakeEd footer which is outlined below.
This is so that the mappers can put your stuff in their levels and for general organization.
/*QUAKED Blah_Blah_blah (R G B) (0 0 0) (0 0 0)
Description
*/
| import datetime | |
| import asyncio | |
| import discord | |
| import feedparser | |
| # https://pypi.org/project/discord.py/ | |
| # https://pypi.org/project/feedparser/ | |
| TOKEN = "TOKEN_HERE" |
| @echo off | |
| SET st3Path=C:\Program Files\Sublime Text 3\sublime_text.exe | |
| rem add it for folders | |
| @reg add "HKEY_CLASSES_ROOT\Directory\shell\Open with Sublime Text" /t REG_SZ /v "" /d "Open with Sublime Text" /f | |
| @reg add "HKEY_CLASSES_ROOT\Directory\shell\Open with Sublime Text" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f | |
| @reg add "HKEY_CLASSES_ROOT\Directory\shell\Open with Sublime Text\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f | |
| pause |
| // ==UserScript== | |
| // @name Killing Floor Web Admin Linkifier | |
| // @namespace KillingFloorWebAdminLinkifier | |
| // @description Turn Player's IPs and IDs into clickable links | |
| // @author Zappa (eduzappa18) | |
| // @version 1.0.0 | |
| // @license MIT | |
| // @homepageURL https://gist.github.com/eduzappa18/3fe86e884fa022797236153d37e3559f | |
| // @updateURL https://gist.github.com/eduzappa18/3fe86e884fa022797236153d37e3559f/raw/KillingFloorWebAdminLinkifier.user.js | |
| // @downloadURL https://gist.github.com/eduzappa18/3fe86e884fa022797236153d37e3559f/raw/KillingFloorWebAdminLinkifier.user.js |
| javascript:(function() { | |
| let vid = document.querySelector('video'); | |
| let scale, style; | |
| if (vid) { | |
| if (vid.toggle === undefined) { | |
| vid.toggle = true; | |
| } | |
| if (vid.toggle) { | |
| scale = vid.videoHeight/vid.videoWidth; | |
| } |