I created 3 simple scripts, which you can execute with your StreamDeck to increase or reset your win / loss counters while you are streaming.
Create the following batch files on your Windows-PC and paste in the code snippets:
| <?php | |
| class sort | |
| { | |
| public function quicksort(array $data, $left, $right) | |
| { | |
| if ($left < $right) { | |
| $splitpos = $this->split($data, $left, $right); | |
| $data = $this->quicksort($data, $left, $splitpos -1); |
I created 3 simple scripts, which you can execute with your StreamDeck to increase or reset your win / loss counters while you are streaming.
Create the following batch files on your Windows-PC and paste in the code snippets: