Skip to content

Instantly share code, notes, and snippets.

@begin-theadventure
begin-theadventure / legion+nightly.sh
Last active September 20, 2023 09:42
Legion+ Nighly shell script updater/installer.
echo "# Start."
echo "# Legion+ Nightly updater/installer. Place in the application folder and run (only if you have already installed the stable version)"
sleep 4
echo "# Download Legion+Nightly.zip"
curl https://github.com/r-ex/LegionPlus/releases/download/nightly/Legion+Nightly.zip -Lo Legion+Nightly.zip
echo "# Unzip Legion+Nightly.zip and replace the executable.."
unzip -o Legion+Nightly.zip
@begin-theadventure
begin-theadventure / How to export Titanfall 2 sounds
Last active July 22, 2023 15:18
How to export Titanfall 2 sounds
Tutorial
https://gist.github.com/begin-theadventure/b0d53e7a560cebb637d9744587126126?permalink_comment_id=4635349#gistcomment-4635349
@begin-theadventure
begin-theadventure / How to play Titanfall 2 Vanilla with Northstar mods
Last active October 24, 2023 10:05
How to play Titanfall 2 Vanilla with Northstar mods / the Northstar client.
Tutorial
https://gist.github.com/begin-theadventure/b74370800fcf6b12ee55c7d2487eb6e8?permalink_comment_id=4634027#gistcomment-4634027
@begin-theadventure
begin-theadventure / Titanfall 2 - explained list of all callerIDs
Last active June 14, 2023 00:47
Explained list of all caller IDs for ID/waveform/voice cards from Titanfall 2 + how to export their banners.
Factions:
05 - Apex Predators - Kuben Blisk
06 - Vinson Dynamics - Ashleigh Reid "Ash"
07 - Angel City Elite (ACEs) - Robert Taube "Barker"
10 & 12 - The Last Resort - Davis & Droz
11 - ARES Division - General Elias Marder
13 - The 6-4 - Gates
20 - Marauder Corps (M-COR) - Sarah Briggs
36 - Marvin's Finest Hour
R5Reloaded: https://github.com/begin-theadventure/lutris-scripts/tree/main/lutris-scripts/R5Reloaded)
Titanfall 1: https://github.com/begin-theadventure/lutris-scripts/tree/main/lutris-scripts/Titanfall)
Titanfall 2: https://github.com/begin-theadventure/lutris-scripts/tree/main/lutris-scripts/Titanfall%202)
Northstar client: https://github.com/begin-theadventure/lutris-scripts/tree/main/lutris-scripts/Northstar)
@begin-theadventure
begin-theadventure / mp3-wav_converter.sh
Last active September 26, 2022 21:10
Bulk conversion of mp3 files to wav 16-bit 48000 Hz using ffmpeg and a shell script. It works in the current directory.
shopt -s globstar nullglob
for f in *.mp3
do
ffmpeg -i "${f}" -vn -c:a pcm_s16le -ar 48000 "${f%.*}.wav"
done
@begin-theadventure
begin-theadventure / subtitles_english.dat.txt
Created August 29, 2022 17:13
Titanfall 2 english subtitles converted to plain text.
Excellent. Just in time.
BT: I am engaging a hostile Titan.
BT: Excessive damage. Warning. Warning.
BT: Warning, detecting hull damage.
BT: Core activated.
BT: Burst Core activated.
BT: Burst Core ready.
BT: Dash Core activated.
BT: Dash Core ready.
BT: Flame Core activated.
@begin-theadventure
begin-theadventure / audio_output.txt
Created August 29, 2022 16:50
A list of all EventId (audio) from Titanfall 2.
This file has been truncated, but you can view the full file.
0,1_second_fadeout
1,2_second_fadeout
2,3_second_fadeout
3,3p_zipline_attach
4,3p_zipline_attach_enemy
5,3p_zipline_detach
6,3p_zipline_detach_enemy
7,3p_zipline_loop
8,3p_zipline_loop_enemy
9,40mm_lowammo_shot1
@begin-theadventure
begin-theadventure / wav_converter.sh
Last active September 26, 2022 21:10
Bulk conversion of wav files to 16-bit 48000 Hz using ffmpeg and a shell script. It works in the current directory.
shopt -s globstar nullglob
for f in *.wav **/*.wav
do
ffmpeg -i "$f" -acodec pcm_s16le -ar 48000 "${f%.wav}.new.wav"
mv -f "${f%.wav}.new.wav" "$f"
done