This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
-------------------------------------------------- | |
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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. |