i need help with the Press Release for keys and stuff
Moderators: Dorian (MJT support), JRL
i need help with the Press Release for keys and stuff
i am trying to get amacro for a game and i need it to when i am in the game for it to press z and press other stuff that wait and press something elts and repeat if u could help i'd appriciate it thx
Dialog>Dialog
Caption=Testie
Top=140
Width=185
Left=210
Height=67
Button=Start,8,8,75,17,1
Button=Exit,96,8,75,17,3
EndDialog>Dialog
show>Dialog,r
if>r=1
goto>start
endif
if>r=3
goto>exit
endif
label>start
setfocus>//your game screen title
send>z
send>//other stuff
wait>//any amount of seconds
send>//something else
goto>start
label>exit
Theres a rough example..If you really want to understand many commands and they're abilties I recommend you read the help htm. file that came with your macro scheduler program. Check out the command reference, there are many other "wait" commands that may better fit your needs.
Caption=Testie
Top=140
Width=185
Left=210
Height=67
Button=Start,8,8,75,17,1
Button=Exit,96,8,75,17,3
EndDialog>Dialog
show>Dialog,r
if>r=1
goto>start
endif
if>r=3
goto>exit
endif
label>start
setfocus>//your game screen title
send>z
send>//other stuff
wait>//any amount of seconds
send>//something else
goto>start
label>exit
Theres a rough example..If you really want to understand many commands and they're abilties I recommend you read the help htm. file that came with your macro scheduler program. Check out the command reference, there are many other "wait" commands that may better fit your needs.