A simple TAS script for Strata that I made in 20 minutes. (Also, join our discord)
Scripts are formatted like so:
# this is a comment
[duration],[button1],[button2],etc.
# press jump for 10f
10,J
# overlapping inputs
5,D
5,D,S
15,S
# repeating inputs
Repeat,5
1,R,D
15,R,S
1,R,J
10,R
EndRepeat
# will repeat the inputs between repeat and endrepeat 5 times (case insensitive)
# 0 frame inputs will be ignored
0,R
- Clone the project
cd
into project root- Change config (in config.py) to your liking (see config section)
python main.py
- When
Ready
appears, tab into the game - Enjoy
INPUT_FILEPATH
- Filepath of input file to run. Or just use0
and pipe the input into stdin like I do.INPUT_MAP
- In-game controls go here.FPS
- Framerate to run at. Keep this at 144.