Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > AutoIt
You last visited: Today at 15:55

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

Advertisement



[TUTORIAL] How to make a BOT

Discussion on [TUTORIAL] How to make a BOT within the AutoIt forum part of the Coders Den category.

Reply
 
Old 01/31/2010, 17:55   #16
 
ax5's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,050
Received Thanks: 472
Good Work
ax5 is offline  
Old 01/31/2010, 19:09   #17
 
Xereon's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 793
Received Thanks: 366
Quote:
Originally Posted by ax5 View Post
i never used pixel search but but i have used image search but image search dosent work on all PC`s. Is pixel search the same like image search ?
imagesearch is senseless.

There is already a function in AutoIT which do the same : PixelChecksum()
Xereon is offline  
Thanks
1 User
Old 02/06/2010, 16:54   #18
 
elite*gold: 0
Join Date: Dec 2009
Posts: 395
Received Thanks: 94
Quote:
Originally Posted by ax5 View Post
i never used pixel search but but i have used image search but image search dosent work on all PC`s. Is pixel search the same like image search ?
Image search should work on all non-64 bit operating systems.

Quote:
Originally Posted by Xereon View Post
imagesearch is senseless.

There is already a function in AutoIT which do the same : PixelChecksum()
They are not the same thing.
Theri is offline  
Old 02/07/2010, 15:13   #19
 
Xereon's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 793
Received Thanks: 366
Quote:
Originally Posted by Theri View Post
They are not the same thing.

They are.

1.Generate the sum of the picture you want to check
2.Loop through
3.Done
Xereon is offline  
Old 02/07/2010, 16:30   #20
 
elite*gold: 0
Join Date: Dec 2009
Posts: 395
Received Thanks: 94
I understand your point and they still are not the same thing, I simply have to assume you've never read the source code for image search from ahk or have used image search yourself.

Pixelchecksum has its uses, want to know if the pixels in an area changed? Great, use it. That's what its for. Looking for a particular picture on screen, and in most of our contexts, in game? Well good luck with that. It takes a decent amount of tolerance when matching images and you want to use a function that returns a strict checksum to determine if your image is on screen. I've not played with the function but even trying to compare the same image to itself with image search it never matches with 0 tolerance. With image search you can define any color to be transparent and ignored in the matching and you're not going to get that with pixelchecksum.

Also, to use the checksum, you're going to what? Screen shot, and cut out the image you want and then get your checksum for the image? Then set a variable in your main script and look for it. Ok, so is this image you're looking for in one place all the time? No? Ok so now you're going to write loops to search the whole screen or areas of the screen? If your image that you got a checksum for can appear any where on screen or in a smaller area you're going to have to start searching in one spot then increment over 1 or 2 pixels at a time, reach the end of the line from left to right and then if needed move back to X origin and down the y axis to continue the process. I'd be willing to wager money that is far more time intensive than just using image search in this context.

I'd be more than happy to see a coded example that proves the built in checksum search would be faster to find an image on screen than image search.
Theri is offline  
Old 02/07/2010, 23:01   #21
 
elite*gold: 0
Join Date: Nov 2009
Posts: 15
Received Thanks: 3
nice
s999kyle999 is offline  
Old 02/15/2010, 18:00   #22
 
elite*gold: 0
Join Date: Feb 2010
Posts: 1
Received Thanks: 1
i need a botz to hit z 10 times a second.... Any help?

z
chazzzle is offline  
Thanks
1 User
Old 02/15/2010, 18:39   #23
 
elite*gold: 0
Join Date: May 2009
Posts: 10
Received Thanks: 1
Think you could help us Star Trek Players out with a bot?
NukePROOF is offline  
Old 02/16/2010, 14:09   #24
 
TheForsaken's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 63
Received Thanks: 645
Quote:
Originally Posted by chazzzle View Post
i need a botz to hit z 10 times a second.... Any help?

z
Code:
For $i = 0 to 10 Step +1
    Send("z")
Next
ConsoleWrite("End")
TheForsaken is offline  
Thanks
1 User
Old 02/16/2010, 19:02   #25
 
ax5's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,050
Received Thanks: 472
Good job
ax5 is offline  
Old 02/17/2010, 13:09   #26
 
elite*gold: 0
Join Date: Jan 2008
Posts: 13
Received Thanks: 0
Quote:
Originally Posted by TheForsaken View Post
Code:
For $i = 0 to 10 Step +1
    Send("z")
Next
ConsoleWrite("End")
Well Ive Read Your Guide 3+ Time's & A Few Other Guide's.

Think You Can Help Me With A Script?

I Want It To Use f1 Every 10 Minute's & Right Click Ever 5 Second's.

That Way I Can Look At How You Done It & Hopefully Progress On To Making My Own,

Muchly Appreiciated
Russel00 is offline  
Old 02/18/2010, 20:13   #27
 
iTim's Avatar
 
elite*gold: 625
Join Date: Oct 2008
Posts: 767
Received Thanks: 60
@Russel00
Hey ehm this is possible if you make 2
functions and say that the 2 functions should run
together
^^
iTim is offline  
Old 02/18/2010, 20:16   #28
 
Xereon's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 793
Received Thanks: 366
Quote:
Originally Posted by Tim-xD View Post
@Russel00
Hey ehm this is possible if you make 2
functions and say that the 2 functions should run
together
^^
the thing you mean is called "multi-threading" and its not supported in the orginal api.
Xereon is offline  
Old 02/18/2010, 20:30   #29
 
iTim's Avatar
 
elite*gold: 625
Join Date: Oct 2008
Posts: 767
Received Thanks: 60
Here i made a sample script :
Code:
HotKeySet("a", "function1") ;change to your keys
HotKeySet( "d" , "function2" )

While 1
	Sleep (1)
WEnd
Func function1()
	While 1
		Sleep(600000) ; The 10 minutes
		Send ( "{F1}" )
	WEnd
EndFunc

Func function2()
	While 1
		Sleep (5000)
	MouseClick("right") ; You can add cordinates if you want
	Wend
EndFunc

;sorry for my bad english i'm german ^^
Edit : So it wont work ?
iTim is offline  
Old 02/18/2010, 20:38   #30
 
elite*gold: 0
Join Date: Feb 2010
Posts: 8
Received Thanks: 0
good job!nice tutorial.
Zirno is offline  
Reply

Tags
autoit, bot, forsaken, hack, tutorial


Similar Threads Similar Threads
[Video Tutorial] - Very Easy Tutorial How to make your Own Wallhack in C++
09/01/2012 - Soldier Front Hacks, Bots, Cheats & Exploits - 16 Replies
Hello Everyone!Hellow Philippines - Mabuhay Pinoy Cheaters! Confidentials000 of GZP and Me Babyface21 ay iisa lang! Today i Will Teach you on How to Make Your Own Wallhack in C++ Very Simple By Video Tutorials Step by Step Part 1 - 3 Dont Ask me to Release my Private Wallhack coz i Need it to still Undetected
[[Tutorial]] how to make your own hacks with VB
03/13/2011 - WarRock Hacks, Bots, Cheats & Exploits - 81 Replies
] : None Of the addresses work anymore, Current finding the updated ones. So the hacks will not work until me or someone else finds the new addresses! Hey there. Are you getting sick of antiously waiting for someone to post a new hack for use, then in like one hour getting banned? Well thats over. In this tutorial i will show you how to.. Designing and customizing your very own hacks A few examples on how to add stuff such as Unlimited stamina or swimming ----------Getting...
[TUTORIAL] How To Make A UCE !!!
08/12/2010 - MapleStory - 23 Replies
PART 1 UCE ToolsDDK (Driver Development Kit)- Used To Compile, Files For UCE Delphi 7 - Compiling, And Editing UCE Files Delphi 7 Keygen - To Crack Delphi so it's free ASR (Actual Search and Replace) - Used To Search And Replace *Characters* To You Choice
My First tutorial How to make 20K GP in 5 Min
08/05/2010 - CrossFire - 26 Replies
Sup Guys this is my First tutorial on how to make 20K GP in 5 min And this is my video Note: Dont say its bad video or anything ITS MY FIRST TIME MAKING VIDEO BTW Program You will need HotSpot Shield
[Tutorial] How To Make Around $50 A Day
01/30/2010 - Main - 4 Replies
Site is called IMreportcard. You have to comment reviews on products/services/persons to gain points. You can exchange those points into money. Sign-Up Here: *edited* http://i46.tinypic.com/iqg67s.png Now, 100 credits = $1. And as you can see, it's not hard to make 100 credits. Commenting



All times are GMT +2. The time now is 15:55.


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.