Помогите разделить 5 скриптов, что-бы они работали последовательно. Я новичок и совсем не могу разобраться, пробовал вставить AdlibRegister, не получилось и решил обратиться за помощью.
Код:
HotKeySet ("{F1}","_Pause" )
HotKeySet ("{F2}","_NotPause")
HotKeySet("{F7}", "_Exit")
Global $Paused
Func _Pause()
$Paused = True
While $Paused
WEnd
EndFunc
Func _NotPause()
$Paused = False
EndFunc
While 1
$Variable = PixelSearch (1076,270,1283,345,0x828297)
If IsArray($Variable) = True Then
MouseMove(1085,280,3)
MouseClick("LEFT")
EndIf
$Variable = PixelSearch(874,54,976,95,0xFFFFFF)
If IsArray($Variable) = True Then
MouseMove(1311,741,0)
MouseClick("LEFT")
EndIf
$Variable = PixelSearch (1267,663,1280,669,0x828297)
If IsArray($Variable) = True Then
MouseMove(1320,741,3)
MouseClick("LEFT")
EndIf
$Variable = PixelSearch (1247,732,1251,735,0xFFFFFF)
If IsArray($Variable) = True Then
MouseMove(1347,740,3)
MouseClick("LEFT")
EndIf
$Variable = PixelSearch (1230,533,1239,538,0x828297)
If IsArray($Variable) = True Then
MouseMove(1285,529,3)
MouseClick("LEFT")
EndIf
WEnd
Func _Exit()
Exit
EndFunc