Wheal today i am bord so i will make a easy autoit bot tutorial. Easy bot program 2010
You Will need this programs:
Lets start to make the program window we will use GUICreate form.
Quote:
GUICreate("My First Bot", 264, 175)
That was easy to make so now we need to add include files so the GUICreate from will works so add this codes on top of GUICreate. Like this
Quote:
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
GUICreate("My First Bot", 264, 175)
Now we made the bot`s design bot we need 1 thing more to make the design work. we need to add a GUISetState code. So it will look like this.
Quote:
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
GUICreate("My First Bot", 264, 175) GUISetState(@SW_SHOW)
Now we need something to display a nice text to your bot like a description, So we will add a Label using GUICtrlCreateLabel and StaticConstants.au3. So it will look something like this.
Now that we have made the form of the bot and a description label we still have to add a button to run the program or like start it. So we will add ButtonConstants.au3 and GUICtrlCreateButton. Something like this.
Now before starting to script we will need to add Opt that stands for AutoitSetOption,Opt will make so the game you are making this bot for will send the keys you want, some games has blocked Macros for sending keys so this will send even if your game has block scripts. So add Opt. It Will Look Something like this.
OK. now we need to add While and GUIGetMsg whit Switch and case. Case will send the script to the special place you told it to send it to. So it will look something like this.
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
So for now the bot looks something like this for you.
OK so lets start whit the bot scripting now. So we will add something names sleep the sleep code will sleep for have long you tell it to sleep so we will add sleep(2000) that makes it sleep for 2 sec so lets make a case and add sleep mode.
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit Case $Button1
Sleep(2000)
EndSwitch
WEnd
Now that we have added sleep we need to the skills or attack spells on the game so the bot can use them. heres a exampel of a skill bar of a game.
OK now we have a skill bar. So for evry skill on the last picture we have from 1 to 9. So every skill has a number to press so we only need to send every number.Something Like this.
Ok, Now if you Press F5 in autoit your program will start and you can try your bot. BUT the bot will only do the script 1 time so we need to add so it will loop for ever.So we can add simpel While 1 and WEnd for loop for ever. lets try that.
Wheal now it works. Easy way ha?. Ok now you can style your program like adding a background or adding more buttons. I Will add background picture so we need to add GUICtrlCreatePic. Something like this. (Add this code over GUISetState(@SW_SHOW))
thanks so so so so much i been lookinge verywhere for a way to send mouse and keyboard commands without it being blocked by games antihack.
plz go more into this for me as i wuld like to know how the block works also
explain more on how to bypass it plz.
im really chuffed i found this, all my bots get blocked
[AutoIt] TCP Tutorial 09/08/2014 - Coding Tutorials - 54 Replies Hi Leute!
Da ich TCP selber für ein interessantes Thema halte, hab ich mal ein Tutorial darüber geschrieben. Have Fun! ;)
Inhalt:
-] Voraussetzungen
-] Was ist TCP?
-] Client erstellen
-] Server erstellen
Autoit Tutorial 11/16/2010 - EO Exploits, Hacks, Tools & Macros - 4 Replies Okay how to use autoit on EU demons. Okay to make a auto pill its very easy about four five lines.Okay so you always have to type While 1
Then you type Send and what you want it to type will be in the two ("{}").
So we have
While 1
Send("{1}")
then type how long it needs to sleep 1000+
So like Sleep(1000)
[AutoIt] Tutorial 06/01/2010 - AutoIt - 2 Replies Heute zeige ich euch mal viele befehle
Befehl 1 - MsgBox:
- was macht dieder befehl ???
er eröfnet eine nachrichtenfenster
-der befehl:
MsgBox (0, "", "")
-Erklärung
0 = es geht 0 -6
die zahl macht die buttons hier aufgezählt: