Jump to content

SsCriPteR

Members
  • Posts

    13
  • Joined

  • Last visited

SsCriPteR's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Really? This is a simple bot, it's not gonna "hack" the game, all i need is help it to find the image :-(
  2. This kind of Game Automation it's not going against the company rules. So i don't see what is the problem?
  3. Well, I'm just trying to create a bot, that when finds a image, it will write something. That's it. But can you help please?
  4. Hello, I'm having some issues on this. Keep in mind that i'm starting to learn the basics of AutoIt now... #include <ImageSearch.au3> #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Lane Bot", 186, 195, 769, 326) $Radio1 = GUICtrlCreateRadio("Mid", 16, 64, 73, 17) GUICtrlSetFont(-1, 10, 400, 0, "Consolas") $Radio2 = GUICtrlCreateRadio("Top", 16, 16, 113, 17) GUICtrlSetFont(-1, 10, 400, 0, "Consolas") $Radio3 = GUICtrlCreateRadio("Adc", 16, 88, 65, 17) GUICtrlSetFont(-1, 10, 400, 0, "Consolas") $Radio4 = GUICtrlCreateRadio("Support", 16, 112, 65, 17) GUICtrlSetFont(-1, 10, 400, 0, "Consolas") $Radio5 = GUICtrlCreateRadio("Jungle", 16, 40, 113, 17) GUICtrlSetFont(-1, 10, 400, 0, "Consolas") $Button1 = GUICtrlCreateButton("READY", 16, 144, 81, 25, $WS_GROUP) GUICtrlSetFont(-1, 11, 800, 2, "Consolas") GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### Global $X = 0, $Y = 0 While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 Bot() EndSwitch WEnd Func Bot() $Search = _ImageSearch('blank.png', 0 , $X , $Y , 0) If $Search = 1 Then MouseClick($X, $Y , 10) Else Bot() EndIf EndFunc What i want, is that AutoIt keeps looking for the Image until it finds it, I'm trying to create a loop but it's not working. Someone help me please :3 Thank you for time. Goncalo
  5. I'm kinda confused, i'm not really good at autoit. So if i wanted autoit to come to this page and Return the value of my account posts, how would i do that?
  6. I'm going to explain better what i'm trying to do. My Script: #include <IE.au3> call ("Autologin") Login() Func Login() Global $oIE = _IECreate ("http://www.EXAMPLE.com") $iVisible = 0 Local $user = _IEGetObjByName ($oIE, "user") Local $password = _IEGetObjByName ($oIE, "password") _IEFormElementSetValue($user, "USERNAME") _IEFormElementSetValue($password, "PASSWORD") EndFunc I'm trying to create a auto login. My problem is that the login button doesn't have any id or name, so i can't use _IEGetObjByName, the website code for that button is: <span class="button_middle">Acesso</span> Can anyone help me pls? thank you
  7. Hello. Website code: <span class="button_middle">Acesso</span> My code: Local $button = _IEGetObjByName ($oIE, "Acesso") _IEAction($button , "Click") I'm trying to make it click on the button but it isn't working. Any help pls?
  8. Btw, im how do i use _IE function without displaying the browser??
  9. Hello, thank you for your answer. How can i use Inet function to copy the e-mail provided?
  10. Hello. I'm new to autoit and i need some help please. I want to create a script, where, when i click in a button, it will go to a website, copy the information i want, and give me the information in the GUI, without opening the browser. So, i create a GUI #include <MsgBoxConstants.au3> #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Kassadin", 266, 92, 460, 286) $Label1 = GUICtrlCreateLabel("Information from website", 32, 32, 84, 17) $Button1 = GUICtrlCreateButton("Generate", 160, 24, 65, 25, $WS_GROUP) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 GotoWebsite() EndSwitch WEnd Func Gotowebsite() The function i want, is that it would go to this website: https://10minutemail.net/ And then would copy the random e-mail that generated and change the $Label1 to the random e-mail generated. But all this, wihtout opening my browser, i know it's possible to get information from a website without actually opening the browser, i already seen scripts like that, please someone help me Thank you for your time and i'm sorry for my bad english.
  11. Ty for answering im just a little newbie in this part of autoit. But, still not working.
  12. Hello guys, I'm with some troubles here on my script, im trying to make a program, that when you insert in the input the link, it automaticly downloads it to your desktop. The website i want to use for download is this one: mega.co.nz What im trying to say is, if I upload some stuff in "mega.co.nz" and then, put that link in my input for my programm automaticly download it. But i can't do it :c can someone help? Ty guys, btw, heres my script: #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("[AutoDownloader] - SsCriPteR", 379, 132, 251, 393) GUISetFont(9, 400, 0, "Calibri") $Label1 = GUICtrlCreateLabel("Link:", 8, 16, 33, 22) GUICtrlSetFont(-1, 11, 400, 0, "Calibri") $Input1 = GUICtrlCreateInput(" (Insert the link) ", 88, 16, 273, 22) $Button1 = GUICtrlCreateButton("Download", 72, 72, 65, 25) $Checkbox1 = GUICtrlCreateCheckbox("Download to Desktop", 80, 48, 137, 17) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
×
×
  • Create New...