Remember to replace the folder directory, <AdminPassword>
, <RCONPort>
to your own.
Also, you need to use crontab
to schedule the following scripts if necessary.
I'm using supervisor to restart the service, the example config is as:
// ==UserScript== | |
// @name XPath Change Notifier | |
// @namespace http://tampermonkey.net/ | |
// @version 1.4 | |
// @description 每分钟检测指定 XPath 元素是否发生变化 | |
// @author Bluefissure | |
// @match https://us-store.msi.com/* | |
// @match https://www.bestbuy.com/site/* | |
// @grant GM_notification | |
// @grant GM_setValue |
# author: Bluefissure | |
# License: MIT License | |
# Description: Fixes Palworld brokwn save files corrupted by someone existing the guild | |
# Based on the work of https://github.com/cheahjs/palworld-save-tools/releases/tag/v0.13.0 | |
import argparse | |
import codecs | |
import os | |
import json | |
from lib.gvas import GvasFile |
#!/bin/bash | |
# This script is enabling (uncommenting) the Chinese&Japanese locale and regenerates them | |
sudo steamos-readonly disable | |
sudo pacman-key --init | |
sudo pacman-key --populate archlinux | |
sudo pacman -S glibc | |
sudo sed -i "s%#ja_JP.UTF-8 UTF-8%ja_JP.UTF-8 UTF-8%" /etc/locale.gen | |
sudo sed -i "s%#zh_CN.UTF-8 UTF-8%zh_CN.UTF-8 UTF-8%" /etc/locale.gen |
[ | |
{ | |
"Author": "Haplo064", | |
"Name": "Chat Bubbles", | |
"Description": "\u4f7f\u7528\u6e38\u620f\u5185\u7f6e\u7684\u53d1\u8a00\u6c14\u6ce1\u6765\u5c55\u793a\u804a\u5929\u5185\u5bb9", | |
"InternalName": "ChatBubbles", | |
"AssemblyVersion": "1.3.2.0", | |
"RepoUrl": "https://github.com/Haplo064/ChatBubbles", | |
"ApplicableVersion": "any", | |
"Tags": [ |
[{ | |
"Author": "akira0245", | |
"Name": "DalamudFontReplacer", | |
"Punchline": "Replaces dalamud's default font", | |
"Description": "Replaces dalamud's default font(and glyph range) with NotoSansCJKsc-Medium 17pt in order to display Chinese characters properly.\nInstalling this and the font replacing effects immediately.\n If you don't want to replace font anymore, please disable this plugin and restart the game.\nFont size, path and glyph range can be changed in plugin config file.", | |
"InternalName": "DalamudFontReplacer", | |
"AssemblyVersion": "1.0.0.3", | |
"RepoUrl": "https://github.com/akira0245/DalamudCNAdapter", | |
"ApplicableVersion": "any", | |
"Tags": [ |
def decodeVarint(x): | |
result = 0 | |
exit = False | |
while not exit: | |
if (x & 0b10000000): | |
exit = False | |
else: | |
exit = True | |
low_byte = x & (0b11111111) | |
result = result << 7 |
[ | |
{ | |
"Author": "Bluefissure", | |
"Name": "SmartVote", | |
"InternalName": "SmartVote", | |
"AssemblyVersion": "1.0.1.0", | |
"Description": "Smart Vote the Mvp in player commendation for you.", | |
"ApplicableVersion": "any", | |
"RepoUrl": "https://github.com/Bluefissure/SmartVote", | |
"DalamudApiLevel": 2, |
#!/usr/bin/env python3 | |
""" | |
Very simple HTTP server in python for logging requests | |
Usage:: | |
./matcha2dc.py [<port>] | |
""" | |
from http.server import BaseHTTPRequestHandler, HTTPServer | |
import logging, json | |
import requests |
import argparse | |
import csv | |
import os | |
import requests | |
import codecs | |
import random | |
import re | |
import json | |
from collections import defaultdict |