slaughter good work!
For LT server i use this function for notify then attack my villages. Sorry,my English no good.
Func send($message)
$oIE2 = _IECreate("http://www.sms4you.lt/", 0, 1,2000,0)
$number ="your phone number"; ex. "+37062824700"
_IELoadWait($oIE2,1000,30000)
$GetSource = _IEDocReadHTML($oIE2)
if (StringInStr($GetSource, 'Nemokamos')) Then
TrayTip("","radau fraze", 0)
$o1 = _IEFormGetObjByName($oIE2, "SMForm")
$o2 = _IEFormElementGetObjByName($o1, "number")
$o3 = _IEFormElementGetObjByName($o1, "num")
$o4 = _IEFormElementGetObjByName($o1, "text")
$o5 = _IEFormElementGetObjByName($o1, "submith12")
_IEFormElementSetValue($o2, $number)
_IEFormElementSetValue($o4, $message)
_IEAction($o5, "click")
EndIf
$oIE2.document.close()
EndFunc