
mojehyip
Members-
Posts
13 -
Joined
-
Last visited
mojehyip's Achievements

Seeker (1/7)
0
Reputation
-
How copy information from website.
mojehyip replied to mojehyip's topic in AutoIt General Help and Support
But what command i can get from line: <a href="profil,1,Niedzielka.html" title="Niedzielka"></a> to get Niedzielka(like user iD ) and his points number ? -
mojehyip reacted to a post in a topic: How copy information from website.
-
How copy information from website.
mojehyip replied to mojehyip's topic in AutoIt General Help and Support
Thanks for answer, but i don't specialy know this language. I don't get it fast. But every day, ranking changing. Could some give another easier way to get information from website to log txt? -
http://www.antwo.pl/ on right side of it are column with ranking. I want write into log file every time when i refresh my exproler. $username = redcolor in html code $points = ; greencolor in html code _FileWriteLog(@ScriptDir & "daneDodaneOdpowiedzi.log", "Ranking Stats : " &"USER:"&$username&" "&"( "&$points&" )"& " ADRESS: http://www.antwo.pl/") ( Dear admin, You do not support people making inconsistent with the rules like hacks/keygens/trojans/bot, You Have closed only because you thought i will using it for a bot. I, however, I had no idea how to imagine it differently. Now I found this a nice mobile site the Google translate. Interpreters by him. I can not solve this problem, the rest of the users in the rankings now I start to rewrite and I will learn it. This will allow me check if they all use the service according to the rules. )
-
Save IE URL from Address Bar
mojehyip replied to MacBain00's topic in AutoIt General Help and Support
SOry for newbie question. I want write addres after function into my text file. $url_aktualny = ("$function_reading_http_addres_from_$oie") $url = ("url.txt") FileWrite($url, $url_aktualny) Which command to read the value that was saved by the form of http:// or www. And IE window: Local $oIE = _IECreateEmbedded() Just don't want spam with new topic -
btw. I used $random2 = Random(1, 3000, 1) = and this work
-
I found in some threads this script $pwd = ",besprzesady" Dim $aSpace[3] $digits = 5 For $i = 1 To $digits $aSpace[2] = Chr(Random(48, 57, 1)) ;0-9 $pwd &= $aSpace[Random(0, 2, 1)] Next ConsoleWrite("Your password (" & $digits & " digits): " & $pwd & @CRLF) Now i change it for: Next $random2 = "I maked number: " Dim $aSpace2[3] $digits2 = 3 For $i2 = 1 To $digits2 $aSpace2[2] = Chr(Random(48, 57, 1)) ;0-9 $random2 &= $aSpace2[Random(0, 2, 1)] If $random2 > 1 Then $random2 = ("14") endif Next But sometimes its get "0" i tryed change line $random2 &= $aSpace2[Random(0, 2, 1)] After this, autoit compile show error: G:Documents and SettingsSharecashPulpitProgramantdsw.plDOdawanie pytanskrypt.au3 (48) : ==> Array variable has incorrect number of subscripts or subscript dimension range exceeded.: $random2 &= $aSpace2[Random(1, 3800, 1)] $random2 &= ^ ERROR I want get number only from 1 to 3800. But its not working. I read the HELP and there was information about X & A. X = Min info A = Max info Why its not working ? Random(X, A, 1)Min [optional] The smallest number to be generated. The default is 0. Max [optional] The largest number to be generated. The default is 1. Did i maked some wrong? Tell me
-
send files to server with method post
mojehyip replied to autoititaly's topic in AutoIt General Help and Support
(searching answer to my topic, please don't ban to be arch. ) Funny chat at topic. How fill small input, when this is under input post method? Code looks like that: <div class="right"> <div class="tytul">PANEL LOGOWANIA</div> <div class="form"> <form method="post" action="index.php?logowanie=5"> <input id="l" class="log_input" type="text" value="Login..." name="l"> <input id="h" class="log_input" type="password" style="margin:0 12px 0; color:#CFCFCF; font-size:9px; letter-spacing:1px;" value="Hasło..." name="h"> <input class="log_submit" type="submit" value=" " name="activ"> <span style="float:left; width:100%; font-size:12px; margin-top:5px; "> </form> </div> <div class="linki"> </div> -
I try use login pannel for site. But somehow the frames don't answer ( and script not fill them ). My code: <Removed> Panel login html code: <Removed>
-
I want use some permision codes from mac-addres or windows name user and code it with md5 or other number system How do that ?
-
Stringsbetween need put to INPUT
mojehyip replied to mojehyip's topic in AutoIt General Help and Support
ANYONE CAN HELP? -
Stringsbetween need put to INPUT
mojehyip replied to mojehyip's topic in AutoIt General Help and Support
I have problem with my autoit code Problems: [ autoit ] ( ?do=embed' frameborder='0' data-embedContent> ) C:Program Files (x86)AutoIt3IncludeIE.au3 (1953) : ==> Variable must be of type "Object".: Return SetError($_IEStatus_Success, 0, $o_object.document.body.innerHTML) Return SetError($_IEStatus_Success, 0, $o_object.document^ ERROR My code. [ autoit ] ( - ?do=embed' frameborder='0' data-embedContent> ) #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <IE.au3> #include <GUIListBox.au3> #include <Misc.au3> #include <String.au3> #include <Array.au3> ;ToolTip("Załadowany",0,0,"STATUS") Check this cool named action #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 924, 568, 50, 20) Global $oIE = _IECreateEmbedded() Local $kod_strony = _IEBodyReadHTML($oIE) _IENavigate($oIE, "auto:blank") $Save = GUICtrlCreateButton("Zapisz", 820, 448, 81, 33, $WS_GROUP) $Tab1 = GUICtrlCreateTab(3, 60, 800, 500) GUICtrlSetFont(-1, 10, 800, 0, "Segoe Print") GUICtrlSetResizing(-1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT) $TabSheet1 = GUICtrlCreateTabItem("Fake ustawienia") #region Zmienne lokalne ; czyta stronę local $g_Imie = _StringBetween($kod_strony, '<span class="given-name">', '</span>') ;od jakiego miejsca do jakiego miejsca przeczytać $g_Nazwisko = _StringBetween($kod_strony, '<span class="family-name">', '</span>') $g_Ulica = _StringBetween($kod_strony, '<span class="street-address">', '</span>') $g_Miejscowosc = _StringBetween($kod_strony, '<span class="locality">', '</span>') $g_wojewodztwo = _StringBetween($kod_strony, '<span class="region">', '</span>') $g_kodpocztowy = _StringBetween($kod_strony, '<span class="postal-code">', '</span>') $g_dataurodzenia = _StringBetween($kod_strony, '<li class="bday">', '</li>') $g_haslo = _StringBetween($kod_strony, '<li class="lab">Hasło:</li><li>', '</li>') $g_login = _StringBetween($kod_strony, '<li class="lab">Użytkownik:</li><li>', '</li>') $g_email = _StringBetween($kod_strony, '<li class="email"><span class="value">', '</span>') $g_creditcard = _StringBetween($kod_strony, '<li class="lab">MasterCard:</li><li>', '</li>') $g_cvv2 = _StringBetween($kod_strony, '<li class="lab">CVC2</li><li>', '</li>') $g_expire = _StringBetween($kod_strony, '<li class="lab">Wygasa:</li><li>', '</li>') $g_www = _StringBetween($kod_strony, '<span class="">', '</span>') #endregion $input1 = GUICtrlCreateInput("cos", 184, 152, 185, 21) $Input2 = GUICtrlCreateInput("Ulica + Numer domu", 184, 208, 185, 21) $Input3 = GUICtrlCreateInput("Miasto + Kod pocztowy", 184, 264, 185, 21) $Input4 = GUICtrlCreateInput("xxxxxxxxxxxxxxxx", 408, 136, 89, 21) $Input5 = GUICtrlCreateInput("xxxxxxxxxxxxxxxxxxx", 408, 160, 105, 21) $Input6 = GUICtrlCreateInput(" @teleworm.us", 408, 184, 113, 21) $Input7 = GUICtrlCreateInput("eliteportal.eu", 408, 208, 105, 21) $Input8 = GUICtrlCreateInput("0000 0000 0000 0000", 408, 232, 129, 21) $Input9 = GUICtrlCreateInput("000", 408, 256, 41, 21) $Input10 = GUICtrlCreateInput("00/0000", 408, 280, 73, 21) $Pic1 = GUICtrlCreatePic("", 272, 128, 49, 17) $Label0 = GUICtrlCreateInput("Miesiąc 0, 0000 (00 lat)", 184, 320, 185, 21) $Label1 = GUICtrlCreateLabel("Imię i Nazwisko", 192, 128, 77, 17) $Label2 = GUICtrlCreateLabel("Ulica + Numer domu", 192, 184, 100, 17) $Label3 = GUICtrlCreateLabel("Miasto, Kod pocztowy", 192, 240, 108, 17) $Label4 = GUICtrlCreateLabel("Data urodzenia => Wiek", 184, 296, 119, 17) $Label5 = GUICtrlCreateLabel("Login", 376, 136, 30, 17) $Label6 = GUICtrlCreateLabel("Haslo", 376, 160, 31, 17) $Label7 = GUICtrlCreateLabel("Email", 376, 184, 29, 17) $Label7 = GUICtrlCreateLabel("Email", 376, 184, 29, 17) $Label8 = GUICtrlCreateLabel("www", 376, 208, 28, 17) $Label9 = GUICtrlCreateLabel("Visa", 376, 232, 24, 17) $Label10 = GUICtrlCreateLabel("CVV2", 376, 256, 31, 17) $Label11 = GUICtrlCreateLabel("Expire", 376, 280, 33, 17) $Generator = GUICtrlCreateButton("Generuj moje dane", 384, 312, 177, 73) GUICtrlSetFont(-1, 10, 800, 0, "Segoe Print") GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 Reg1() Case $Button2 Case $Button13 Case $Button15 EndSwitch WEnd -
Stringsbetween need put to INPUT
mojehyip replied to mojehyip's topic in AutoIt General Help and Support
bump -
HI Just trying do some program what coolect informations. Just administration tool to check someone ip with ability to login on site > take string from line and put it into INPUT. For practics i maked one more time but now compile not working, i make functions and strings from pl.fakenamegenerator.com and all data should be in input = How do that. Problems: C:\Program Files (x86)\AutoIt3\Include\IE.au3 (1953) : ==> Variable must be of type "Object".: Return SetError($_IEStatus_Success, 0, $o_object.document.body.innerHTML) Return SetError($_IEStatus_Success, 0, $o_object.document^ ERROR Also question about: $input1 = GUICtrlCreateInput("cos", 184, 152, 185, 21) I want get some like that: $input1 = GUICtrlCreateInput($name + $from + "How many awards:" + $awards, 184, 152, 185, 21) $name = ("Brian") $from = ("Poland") $Awards = ("50") My code. #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <IE.au3> #include <GUIListBox.au3> #include <Misc.au3> #include <String.au3> #include <Array.au3> ;ToolTip("Załadowany",0,0,"STATUS") Check this cool named action #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 924, 568, 50, 20) Global $oIE = _IECreateEmbedded() Local $kod_strony = _IEBodyReadHTML($oIE) _IENavigate($oIE, "auto:blank") $Save = GUICtrlCreateButton("Zapisz", 820, 448, 81, 33, $WS_GROUP) $Tab1 = GUICtrlCreateTab(3, 60, 800, 500) GUICtrlSetFont(-1, 10, 800, 0, "Segoe Print") GUICtrlSetResizing(-1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT) $TabSheet1 = GUICtrlCreateTabItem("Fake ustawienia") #region Zmienne lokalne ; czyta stronę local $g_Imie = _StringBetween($kod_strony, '<span class="given-name">', '</span>') ;od jakiego miejsca do jakiego miejsca przeczytać $g_Nazwisko = _StringBetween($kod_strony, '<span class="family-name">', '</span>') $g_Ulica = _StringBetween($kod_strony, '<span class="street-address">', '</span>') $g_Miejscowosc = _StringBetween($kod_strony, '<span class="locality">', '</span>') $g_wojewodztwo = _StringBetween($kod_strony, '<span class="region">', '</span>') $g_kodpocztowy = _StringBetween($kod_strony, '<span class="postal-code">', '</span>') $g_dataurodzenia = _StringBetween($kod_strony, '<li class="bday">', '</li>') $g_haslo = _StringBetween($kod_strony, '<li class="lab">Hasło:</li><li>', '</li>') $g_login = _StringBetween($kod_strony, '<li class="lab">Użytkownik:</li><li>', '</li>') $g_email = _StringBetween($kod_strony, '<li class="email"><span class="value">', '</span>') $g_creditcard = _StringBetween($kod_strony, '<li class="lab">MasterCard:</li><li>', '</li>') $g_cvv2 = _StringBetween($kod_strony, '<li class="lab">CVC2</li><li>', '</li>') $g_expire = _StringBetween($kod_strony, '<li class="lab">Wygasa:</li><li>', '</li>') $g_www = _StringBetween($kod_strony, '<span class="">', '</span>') #endregion $input1 = GUICtrlCreateInput("cos", 184, 152, 185, 21) $Input2 = GUICtrlCreateInput("Ulica + Numer domu", 184, 208, 185, 21) $Input3 = GUICtrlCreateInput("Miasto + Kod pocztowy", 184, 264, 185, 21) $Input4 = GUICtrlCreateInput("xxxxxxxxxxxxxxxx", 408, 136, 89, 21) $Input5 = GUICtrlCreateInput("xxxxxxxxxxxxxxxxxxx", 408, 160, 105, 21) $Input6 = GUICtrlCreateInput(" @teleworm.us", 408, 184, 113, 21) $Input7 = GUICtrlCreateInput("eliteportal.eu", 408, 208, 105, 21) $Input8 = GUICtrlCreateInput("0000 0000 0000 0000", 408, 232, 129, 21) $Input9 = GUICtrlCreateInput("000", 408, 256, 41, 21) $Input10 = GUICtrlCreateInput("00/0000", 408, 280, 73, 21) $Pic1 = GUICtrlCreatePic("", 272, 128, 49, 17) $Label0 = GUICtrlCreateInput("Miesiąc 0, 0000 (00 lat)", 184, 320, 185, 21) $Label1 = GUICtrlCreateLabel("Imię i Nazwisko", 192, 128, 77, 17) $Label2 = GUICtrlCreateLabel("Ulica + Numer domu", 192, 184, 100, 17) $Label3 = GUICtrlCreateLabel("Miasto, Kod pocztowy", 192, 240, 108, 17) $Label4 = GUICtrlCreateLabel("Data urodzenia => Wiek", 184, 296, 119, 17) $Label5 = GUICtrlCreateLabel("Login", 376, 136, 30, 17) $Label6 = GUICtrlCreateLabel("Haslo", 376, 160, 31, 17) $Label7 = GUICtrlCreateLabel("Email", 376, 184, 29, 17) $Label7 = GUICtrlCreateLabel("Email", 376, 184, 29, 17) $Label8 = GUICtrlCreateLabel("www", 376, 208, 28, 17) $Label9 = GUICtrlCreateLabel("Visa", 376, 232, 24, 17) $Label10 = GUICtrlCreateLabel("CVV2", 376, 256, 31, 17) $Label11 = GUICtrlCreateLabel("Expire", 376, 280, 33, 17) $Generator = GUICtrlCreateButton("Generuj moje dane", 384, 312, 177, 73) GUICtrlSetFont(-1, 10, 800, 0, "Segoe Print") GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 Reg1() Case $Button2 Case $Button13 Case $Button15 EndSwitch WEnd