Quote:
|
man the posted file has .ibf format. windows can't open it without a program... what should i do?
|
Google up Macro Express and use that to open it. Still, i prefer autoit3 macros.
Heres a intensify macro i made in 1min by editing one of the tutorial scripts :).
Quote:
Global
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")
Tooltip("Intensify macro is running", 0, 0)
;Funny thing is, only the 4 lines bellow are needed for the macro to work
While 1
MouseClick("right",550,330,1,1)
Sleep(9250)
WEnd
;Rest of the code is just extra frills ;)
Func TogglePause()
= NOT
While
sleep(100)
ToolTip('Script is "Paused"',0,0)
WEnd
ToolTip("")
EndFunc
Func Terminate()
Exit 0
EndFunc
|
Press pause/break to pause the macro, and esc to exit.
Yes i know, that is just the script, copy paste and compile it yourself.