Notice: I do not own the copyright to Helldivers 2. All rights go to Arrowhead and Sony.
./gradlew jarThis builds a jar in build/libs/HD2BotLang.jar, which can be run using java -jar HD2BotLang.jar (or java -jar build/libs/HD2BotLang.jar)
Every argument is directly translated into a line.
That means
java -jar HD2BotLang.jar Some Textwill have two lines of text. it is equivalent to
Some
Text
To get a single line, use quotes
java -jar HD2BotLang.jar "Some Text" "Another line"will get you
Some Text
Another line
VERTICAL: if1, create vertical textSCALE: how much the image should be scaled.1means a letter is 5x5 Pixel. Default: 10PRIMARY,SECONDARY: the symbol and background colours respectively. Given in RGB hex format without leading#(so full red isFF0000instead of#FF0000)
The output file, which is always out.png, will be created in the same directory as the terminal. There is NO check to see if the file already exists. It will be overwritten.
