#include <UIAutomate.au3>
Start()
Kach_Start()
Func Start()
AutoItSetOption("WinTitleMatchMode", 2)
Global Const $OPERA = _Opera_Start()
EndFunc
Func _Opera_Start()
Local $operwnd, $private
ShellExecute("Opera.exe", "--force-renderer-accessibility", "C:\Program Files\Opera\")
$operwnd = WinWaitActive("Opera", Null, 10)
Sleep(2000)
Send("^+n")
Sleep(1000)
WinClose($operwnd)
$private = WinWaitActive("Opera", Null, 10)
If Not $private Then Exit ConsoleWrite(" - Окно не найдено" & @LF)
$oParent = _UIA_GetElementFromHandle($private)
Return $oParent
EndFunc
Func OpenMT()
$adresstype = _UIA_GetControlTypeElement($OPERA, "UIA_EditControlTypeId", "Поле адреса")
_UIA_ElementMouseClick($adresstype)
Sleep(1000)
Send("m.vten.ru{ENTER}")
$light_version = _UIA_WaitControlTypeElement($OPERA,"UIA_TextControlTypeId (0xC364)","Облегч","LegacyIAccessible.Name:",True,0)
Send("^-")
If (IsObj($light_version)) Then
_UIA_ElementMouseClick($light_version)
Else
Exit
EndIf
Sleep(2000)
EndFunc
Func Kach_Start()
OpenMT()
Start_Play()
FirstQuest()
SecondQuest()
EndFunc
Func FirstQuest()
$tavern = _UIA_WaitControlTypeElement($OPERA,"UIA_HyperlinkControlTypeId (0xC355)","Таверна","LegacyIAccessible.Name:",True,0)
_UIA_ElementMouseClick($tavern,"",Default,Default,1,True)
Local $startquest = _UIA_WaitControlTypeElement($OPERA,"UIA_HyperlinkControlTypeId (0xC355)","Выследить волка","LegacyIAccessible.Name:",True,0)
_UIA_ElementMouseClick($startquest,"",Default,Default,1,True)
DoQuest(0)
EndFunc
Func SecondQuest()
Local $startquest
$startquest = _UIA_WaitControlTypeElement($OPERA,"UIA_HyperlinkControlTypeId (0xC355)","Отправиться","LegacyIAccessible.Name:",True,0)
_UIA_ElementMouseClick($startquest,"",Default,Default,1,True)
DoBattle(0)
$continue = _UIA_WaitControlTypeElement($OPERA,"UIA_HyperlinkControlTypeId (0xC355)","Продолжить приключения ","LegacyIAccessible.Name:",False,0)
_UIA_ElementMouseClick($continue,"",Default,Default,1,True)
EndFunc
Func Start_Play()
$startbutton = _UIA_WaitControlTypeElement($OPERA,"UIA_HyperlinkControlTypeId (0xC355)","Начать игру","LegacyIAccessible.Name:",False,0)
_UIA_ElementMouseClick($startbutton,"",Default,Default,1,True)
EndFunc
Func DoQuest($type)
Select
Case $type=0
DoBattle(0)
$continue = _UIA_WaitControlTypeElement($OPERA,"UIA_HyperlinkControlTypeId (0xC355)","Продолжить приключения","LegacyIAccessible.Name:",True,0)
_UIA_ElementMouseClick($continue,"",Default,Default,1,True)
Case $type=1
EndSelect
EndFunc
Func DoBattle($mode)
Local $timetowait = 0
Local $continue = ""
Select
Case $mode=0
While Not(IsObj(_UIA_WaitControlTypeElement($OPERA,"UIA_HyperlinkControlTypeId (0xC355)","Продолжить","LegacyIAccessible.Name:",True,(2/10))))
Attack()
$timetowait = Random(-1500,2500)
Sleep(2500+$timetowait)
WEnd
Case $mode=1
Exit
EndSelect
$continue = _UIA_WaitControlTypeElement($OPERA,"UIA_HyperlinkControlTypeId (0xC355)","Продолжить","LegacyIAccessible.Name:",True,0)
_UIA_ElementMouseClick($continue,"",Default,Default,1,True)
EndFunc
Func Attack()
$attackclick = _UIA_WaitControlTypeElement($OPERA,"UIA_HyperlinkControlTypeId (0xC355)","Добивать","LegacyIAccessible.Name:",True,5)
If (Not(IsObj($attackclick))) Then
_UIA_ElementMouseClick(_UIA_WaitControlTypeElement($OPERA,"UIA_HyperlinkControlTypeId (0xC355)","Бить","LegacyIAccessible.Name:",True,5),"",Default,Default,1,True)
Else
_UIA_ElementMouseClick($attackclick,"",Default,Default,1,True)
EndIf
EndFunc
Func UseForceAmuletGroup($mode)
EndFunc