The binary format for Fallout 4 PC save files. This document was created by reverse-engineering files from version 1.2.37.0 of the game.
Note: This document is incomplete!
// ==UserScript== | |
// @name Togethertube Fullscreen | |
// @namespace https://github.com/SirTony | |
// @version 0.2 | |
// @description Enables fullscreen on togethertube.com | |
// @author Tony J. Ellis | |
// @match https://togethertube.com/rooms/* | |
// @grant none | |
// @require https://cdnjs.cloudflare.com/ajax/libs/URI.js/1.18.4/URI.min.js | |
// @require https://cdnjs.cloudflare.com/ajax/libs/URI.js/1.18.4/SecondLevelDomains.min.js |
module dylib; | |
private { | |
import std.string : format, toStringz; | |
import std.exception : enforce; | |
version( Windows ) | |
{ | |
extern( Windows ) void* LoadLibraryA( const char* ); | |
extern( Windows ) void* GetProcAddress( void*, const char* ); |
The binary format for Fallout 4 PC save files. This document was created by reverse-engineering files from version 1.2.37.0 of the game.
Note: This document is incomplete!
from pickle import loads as unpickle | |
from zlib import decompress | |
from argparse import ArgumentParser | |
from sys import exit, stderr | |
import os | |
def _main(): | |
parser = ArgumentParser( description = "RenPy Arhive (.rpa) unpacker" ) | |
parser.add_argument( "-o", "--output", required = False, type = str, dest = "output", metavar = "dir", help = "The directory to output files to" ) | |
parser.add_argument( "-i", "--input", required = True, type = str, dest = "input", metavar = "path", help = "The archive to unpack" ) |
Reserved.
// This script by Tony King is marked with CC0 1.0 Universal. To view a copy of this license, visit https://creativecommons.org/publicdomain/zero/1.0/ | |
/* | |
This is a KubeJS server script that adds a few recipes to Mekanism | |
to make it easier to get some resources that are otherwise | |
annoying to farm in large quantities. | |
Requirements: | |
KubeJS - https://www.curseforge.com/minecraft/mc-mods/kubejs |