How to write a simple macro
-
- Posts: 3
- Joined: Sun Apr 02, 2017 9:34 pm
- Location: USA
How to write a simple macro
Hi, I'm having trouble figuring out how to write a simple macro for the Iris controls. I need it for GTA 5. Left shift + W. If anyone can help me figure out how to write a basic key macro it would be greatly appreciated.
Re: How to write a simple macro
Here you are...
Code: Select all
<MACRO id="ShiftW">
<MAIN>
<KEYINPUT behaviour="PRESS" code="0x10"/>
<WAIT time="100ms"/>
<KEYINPUT behaviour="PRESS" code="0x57"/>
<WAIT time="50"/>
<KEYINPUT behaviour="RELEASE" code="0x57"/>
<KEYINPUT behaviour="RELEASE" code="0x10"/>
</MAIN>
</MACRO>
-
- Posts: 3
- Joined: Sun Apr 02, 2017 9:34 pm
- Location: USA
Re: How to write a simple macro
Thank you. So much!