Results 3 comments of Armageddon

I'm looking for functionality to do something like this: ```rust fn main() { loop { match key_pressed() { Some(KeyCode::F12) => do_something(), Some(KeyCode::Escape) => break, None => {} } } }...

It should work through ladder interface actually. Try this one https://aiarena.net/wiki/bot-development/#wiki-toc-set-up-bot-vs-bot-locally This one probably works too https://github.com/aiarena/rust-arenaclient There's also instruction about that in official protocol documentation https://github.com/Blizzard/s2client-proto/blob/master/docs/protocol.md#play-two-bots-against-each-other Try first 2...