Skip to content

Instantly share code, notes, and snippets.

@msikma
Created April 12, 2022 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msikma/92102875556c69d7b12f882141769d5e to your computer and use it in GitHub Desktop.
Save msikma/92102875556c69d7b12f882141769d5e to your computer and use it in GitHub Desktop.
# Normality - Save file blue/green sky switch
# <https://tcrf.net/Normality>
# To change the sky in NORMSAVE.001 to blue.
printf '\x08' | dd of="NORMSAVE.001" bs=1 seek=(echo (wc -c "NORMSAVE.001" | awk '{print $1}')" - 294" | bc -l) count=1 conv=notrunc
# To change the sky back to green.
printf '\x06' | dd of="NORMSAVE.001" bs=1 seek=(echo (wc -c "NORMSAVE.001" | awk '{print $1}')" - 294" | bc -l) count=1 conv=notrunc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment