Register for your free account! | Forgot your password?

You last visited: Today at 05:20

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Simple Autoit bot. Code inside!

Discussion on Simple Autoit bot. Code inside! within the WoW Exploits, Hacks, Tools & Macros forum part of the World of Warcraft category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Sep 2005
Posts: 2
Received Thanks: 0
OK guys this is just a teaser. I rewrote my Nutralbot Code to better handle Killing and looting mobs. As far as i can tell it does everything better. Just tested with a lvl 1 human rogue and got to lvl 2 all on its own while i was just sitting here watching.

Setup Part one:
Make sure your defalt attack is the 1 key.
Make sure your ranged attack is set to the 8 key.
Setup the camera following style as "always", its in your interface options, and make sure your camera is behind your toon, and looking down on him/her a bit.
Run Wow in Windowed mode at 1024x768
*********************************

Setup Part two:
Find yourself a spot where you will be able to tab to select mobs, and still be within range of your bow/throwing knives or axe/wand etc etc.
Make sure you have plenty of said "pulling" weapon.
Run the script, but dont walk away just yet.
Watch and see what happens to make sure you are in a good spot and it will loot correctly.

The PAUSE key exits this script.

If everything works, enjoy. If something goes wrong with the script please post errors here.

As of right now this bot will not move you closer or further away from a mob. It just stands there and fights. I have plans for future updates but right now ive been up for somwhere in the area of 36 hours so im going to sleep.

here's the code:

Code:
; <AUT2EXE VERSION: 3.1.0.4> 

; ---------------------------------------------------------------------------- 
; <AUT2EXE INCLUDE-START: C:\Documents and Settings\Home\My Documents\NutralBot.au3> 
; ---------------------------------------------------------------------------- 

; ************************************************** ************************************************** **** 
; NutralBot v1.5 beta by Dirtybob. 


; Globals 
$win_title = "World of Warcraft" 

; Sets the "Pause" Key to Exit the bot. 
HotKeySet("{PAUSE}", "EndScript") 



; Fires up WOW, puts it on top. I recomend Windowed Mode. 
WinActivate($win_title, "") 
WinSetOnTop($win_title, "", 0) 
Sleep(1000) 

; Checks your toons life, its its too low it sits down to rest.
Func Life_Check()
$Coord = PixelSearch ( 0, 0, 194, 76, 0x00D900 , 0, 0 )
If not @error Then 
sleep(1000)
Find_mob()
else
Send("x")
sleep(5000)
Send("x")
endif
EndFunc 


; Looks for a mob
func Find_Mob() 
Send("{TAB}") 
sleep(500) 
$Coord = PixelSearch ( 0, 0, 382, 58, 0x3F3E3F , 0, 0 ) 
If not @error Then 
Pull_mob()
else
sleep(500)
;Move_Toon()
Life_check() 
EndIf 
EndFunc 

; Pulls the mob by shooting, or whatever ranged you have set to key 8
Func Pull_Mob()
Send("8")
Sleep(1300)
Attack_Mob()
EndFunc


;Func Move_Toon()
;Not supported yet
;
;
;EndFunc

Func Attack_Mob()
Send("1")
Mob_Life()
endfunc

Func Mob_Life()
while 1
$Coord = PixelSearch ( 0, 0, 263, 75, 0x009800 , 0, 0 ) 
If @error Then
Loot_Mob()
else
sleep(5000)
endif
wend
EndFunc

Func Loot_mob()
send("{SHIFTDOWN}") 
MouseClick("right", 507, 360, 1, 1)
sleep(300)
send("{SHIFTUP}")
sleep(500)
send("{SHIFTDOWN}") 
sleep(300)
MouseClick("right", 473, 408, 1, 1)
send("{SHIFTUP}")
sleep(500)
send("{SHIFTDOWN}") 
sleep(300)
MouseClick("right", 517, 410, 1, 1)
send("{SHIFTUP}")
sleep(500)
send("{SHIFTDOWN}") 
sleep(300)
MouseClick("right", 539, 414, 1, 1)
send("{SHIFTUP}")
sleep(750)
Life_Check()
Endfunc


Life_Check()


; Exits the Bot. 
Func EndScript() 
$exit = MsgBox(4, "Ender", "Exit the Bot?") 
If $exit = 6 Then 
Exit 
EndIf 
EndFunc
OKAYKERLE dieses ist ein Teaser gerecht. Ich schrieb meinen Nutralbot Code neu, um Handgriff Tötung und plündernden Pöbel zu verbessern. Insoweit ich erklären kann, tut er alles besser. Gerade geprüft mit einem lvl 1 menschlichen Gauner und an lvl 2 alle gelangt eigenständig, während ich gerechter Sitting hier aufpassend war.

Einstellung Teil eins: Stellen Sie sicher, daß Ihr defalt Angriff der 1 Schlüssel ist. Stellen Sie sicher, daß Ihr erstreckter Angriff auf den Schlüssel 8 eingestellt wird. Gründen Sie die Kamera nach Art als "immer", seinen innen Ihren Schnittstelle Wahlen, und stellen Sie sicher, daß Ihre Kamera hinter Ihrem toon und dem Schauen unten auf him/her einer Spitze ist. Lassen Sie Wimmern im Windowed Modus an 1024x768 laufen *********************************

Einstellung Teil zwei: Finden Sie sich ein Punkt, wo Sie tab, um Pöbel vorzuwählen in der LageSIND, und seien Sie noch innerhalb des Bereiches Ihrer bow/throwing Messer oder axe/wand usw. usw.. Stellen Sie, viel von besagtem zu haben Waffe sicher ", ziehend". Lassen Sie den Index laufen, aber nicht gehen weg gerade schon. Passen Sie auf und sehen Sie, was geschieht sicherzustellen, daß Sie in einem guten Punkt sind und er plündert richtig.

Der PAUSE Schlüssel nimmt diesen Index heraus.
Wenn alles arbeitet, genießen Sie. Wenn etwas falsch zum Index bitte paßt, geben Sie Störungen hier bekannt.

Ab im Augenblick diesem BOT verschiebt Sie nicht nahe oder weiter entfernt von einen Pöbel. Es gerechte Standplätze dort und Kämpfe. Ich habe Pläne für zukünftige Updates aber im Augenblick das ive, das oben für somwhere im Bereich von 6 Stunden so im gehend zu schlafen gewesen wird.
dirtybob is offline  
Old 09/18/2005, 00:11   #2
 
elite*gold: 0
Join Date: Aug 2005
Posts: 120
Received Thanks: 5
mal eine dumme frage ... wo bekomme ich dieses Autoit her ?
Mongojack is offline  
Old 09/18/2005, 11:42   #3
 
elite*gold: 0
Join Date: Jun 2005
Posts: 2,311
Received Thanks: 15
<--Beispiel
Ansonten Google: AutoIt download und dann halt gucken
k!ddy is offline  
Reply


Similar Threads Similar Threads
Shot Online Thread (AutoIT-Schlaghilfe inside)
04/12/2012 - General Gaming Discussion - 25 Replies
Guten Tag, Hab mich kurzerhand entschlossen hier mal einen allgemeinen Thread über das kostenfreie Online Spiel "Shot-Online" zu eröffnen, da hier einerseits Massen an vereinzelten Themen darüber existieren und es immer wieder dieselben Fragen sind und andererseits habe ich auch noch Fragen und habe da auch mal selber n bisschen an einer Schlaghilfe rumgebastelt. Als erstes mal zu der Schlaghilfe, das ist das erste mal, dass ich mich mal an AutoIT rangesetzt habe und das Ergebnis ist für...
Need Help To Make Simple Bot With : Autoit :
05/21/2010 - General Coding - 9 Replies
Hey Every One.. I Just want Know How To Make Simple Bot With Autoit.. All I need To Know :- 1.How To make The Bot Run On Game Only Mean Work On Background 2.How To Insert HotKeys Like Ctrl+A - Insert - Shit - F1...F10 3.How To Control The Time...? 4.How To Make mouse Click left Or Right Click Into Cord (x,y).. All Of those Wanna Done Into Background... Any Way Thx For Reading My Request N For Help
[Tutorial][For who can't Code] Code Simple NPC (CoEmu)
10/15/2009 - CO2 Private Server - 13 Replies
First i will release the npc and explain you alot of good things The npc Ok .. here is the npc jail in TwinCity (Enter the jail and go out the jail) in Handlers / NpcTalk.cs Search for default: { Text("NPC " + ID + "'s dialog is not coded.", CSocket);
simple autoit bot
10/14/2008 - General Gaming Releases - 8 Replies
So what we're gonna do today is a very basic bot that pulls one mob at a time that you are able to tab target while ingame aka you need to see X amount of mobs infront of you for this to be optimal. The way WAR has been designed makes this very easy to do, your character automatically turns towards the mob you want to attack and pretty much no mobs are actually linked so you can stand infront of a huge cluster of mobs and pull one mob over and over. ...
Simple AutoIT Bot
12/09/2007 - SRO Hacks, Bots, Cheats & Exploits - 8 Replies
Hello Everybody, i made a simple bot for those who don't like T-Bot or for those where it won't works. File-Upload.net - Ihr kostenloser File Hoster! other dl link: 2shared - download MaIn_bot.exe



All times are GMT +2. The time now is 05:20.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.