Skip to content

Instantly share code, notes, and snippets.

View FatsackFails's full-sized avatar

Fatsack FatsackFails

View GitHub Profile
@FatsackFails
FatsackFails / triggers.txt
Last active August 18, 2021 11:05
Kruiz Control Snippet: Write Month to OBS Text Source
OnInit
Function "var date = new Date(); var months = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC']; return {monthName: months[date.getMonth()]}"
OBS Source "Date" Text "{monthName}"
@FatsackFails
FatsackFails / Convert MOV to WEBM.bat
Last active May 11, 2021 08:54
FFmpeg MOV to WEBM BAT
for %%i in (*.*) do ffmpeg -i "%%i" -f webm -c:v libvpx -b:v 2M -acodec libvorbis -auto-alt-ref 0 "%%~ni.webm"
@FatsackFails
FatsackFails / toggle.txt
Last active April 26, 2022 00:09
Toggle System for Kruiz Control
#Sets toggle01 to off when KC starts up
OnInit
Variable Set toggle01 false
#Send Message to switch toggle01
OnCommand b 0 !toggle
Message Send switchToggle
#Switches toggle01 on and off
OnMessage switchToggle
@FatsackFails
FatsackFails / Hotkeys.ini
Created March 10, 2021 15:16
Fallout 4 Twitch Integration Hotkeys Demo
[Macros]
spd=sucsm 3
[Hotkeys]
F2=tm
F3=tfc
F13=cgf "Debug.Notification" "Twitch gifted Caps!";player.addItem f 1000
F14=cgf "Debug.Notification" "Spawning a Ghoul!";player.PlaceAtMe 758ae;PickLastRef;addItem 69081 1
@FatsackFails
FatsackFails / triggers.txt
Last active March 10, 2021 17:34
Fallout 4 Twitch Integration Kruiz Control Demo
#Fallout 4 Twitch Integration
OnCommand e 0 !givecaps
GET API http://localhost:32032/keypress?key=F13&presses=1&pass=6969696969696969
Chat Send "Sending 1000 caps!"
OnCommand e 0 !ghoul
GET API http://localhost:32032/keypress?key=F14&presses=1&pass=6969696969696969
Chat Send "Sending a Ghoul! Kappa"