Skip to content

Instantly share code, notes, and snippets.

@mrbid
mrbid / quakelive_bluebones_autoshoot.c
Last active January 7, 2023 12:16
Autoshoot bot for Quake 3 & Quake Live.
/*
--------------------------------------------------
James William Fletcher (github.com/mrbid)
February 2020 - October 2021
--------------------------------------------------
This is a re-release with a crosshair and other
minimal changes.
This uses pre-computed weights designed to target
only the aqua blue bones model.
@DejayRezme
DejayRezme / Av1SvtEnc.ps1
Created January 22, 2022 19:51
Script to encode a bunch of files with SvtAv1EncApp and ffmpeg from command line
param(
[Parameter(Mandatory=$true, ValueFromPipeline=$true, Position=0)]
[string] $inputPath,
[int] $sp = 7,
[int] $crf = 28,
[int] $fg = 0,
[switch] $af,
[switch] $wi
)
if ($af) {$audioOptions = "-af channelmap=channel_layout=5.1"}
@pR0Ps
pR0Ps / skyforcestars.py
Created August 17, 2020 03:23
Set the number of stars you have in Sky Force Reloaded
#!/usr/bin/env python
"""
The game Sky Force Reloaded on Android stores how many in-game stars you've
collected in an obfuscated config file. This program was made by
reverse-engineering that obfuscation using a bunch of sample values.
Given the number of stars you want, it will generate a line to add to the
game's config file. Note that the game will treat invalid values as 0 so make a
backup of your config before modifying it.