0% found this document useful (0 votes)
528 views1 page

Macro Haxball

This document contains code for two keyboard macros in a scripting language. The first macro labeled "Leopard-B, �Tank-Mode�" continuously presses and releases the "x" key when the "Z" key is held down, simulating tank controls. The second macro labeled "Leopard-B, �Lift/Rocket � Other Mode�" presses and releases the "x" key in intervals of 5 seconds when the "C" key is held down, simulating an alternating action.

Uploaded by

Lenuta Ciocan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
528 views1 page

Macro Haxball

This document contains code for two keyboard macros in a scripting language. The first macro labeled "Leopard-B, �Tank-Mode�" continuously presses and releases the "x" key when the "Z" key is held down, simulating tank controls. The second macro labeled "Leopard-B, �Lift/Rocket � Other Mode�" presses and releases the "x" key in intervals of 5 seconds when the "C" key is held down, simulating an alternating action.

Uploaded by

Lenuta Ciocan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Code:O

Z:: ; Leopard-B, �Tank-Mode�

While GetKeyState(�Z�,�P�)

Send, {x down}

sleep, 0.016667

Send, {x up}

sleep, 0.016667

C:: ; Leopard-B, �Lift/Rocket � Other Mode�

while GetKeyState(�C�, �P�)

Send, {x down}

sleep, 5

Send, {x up}

sleep, 5

Send, {x down}

sleep, 5

You might also like