Hey, could someone please tell me how to make use autoit to make your character sit after spell and, click on another character like for auto sitg. Thanks
To make the character sit after a spell you have to either put the sit shortcut on an F-Key or make a keybinding to sit. Then just have autoit click the F-key or click the shortcut
Send("{^a}") ; This sends CTRL+a to the active window (makes you sit down if you have bound sit to CTRL+a)
Send("{F8}") ; This send F8 to the active window (makes you sit down if you have sit at F8)
Do not attempt this if you didn't even know the above. Go ahead and learn some more basic stuff first.
Click on another character to autostig him is ALOT harder because you need to know the position on the screen where the other char is and that is really tricky.
But if you want to auto stig yourself from another window you can read your coordinates and the other chars coordinates and turn them in to x and y mouse coord and right click where the char is. (This is just if you have both windows open on the same computer)
My bot works perfect except for 1 thing... when its jumping in its designated path and a monster gets in the way(clicks the monster instead of ground)it screws my whole bot up, what do i do? i can send you my script if you like
My bot works perfect except for 1 thing... when its jumping in its designated path and a monster gets in the way(clicks the monster instead of ground)it screws my whole bot up, what do i do? i can send you my script if you like
try tell the bot that mouse press hatsh code floor
My bot works perfect except for 1 thing... when its jumping in its designated path and a monster gets in the way(clicks the monster instead of ground)it screws my whole bot up, what do i do? i can send you my script if you like
make it co-ordinate aware. when i used to make this sort of bot i used the excellent coelse source code for his co-ordinate aware striaght line path finder
make it co-ordinate aware. when i used to make this sort of bot i used the excellent coelse source code for his co-ordinate aware striaght line path finder
ive made alot of bots using this. sh lvler, guard lvler, clicker, item seller, met spammer and etc. BUT I DONT UPLOAD IT AND SHARE IT COZ IM A NOOB AND THEY DONT TRUST MEH.!
Can you send ur bot like item seller to me at my email?? I hope to recieved your email soon..thx for sharing.
So i started to create myself a archer macro for lab1 spawn, so far i managed to sit and activate fly, and clicking the coords to the scattering area.
But my question is, what's the command for 1 right click(scatter) per second, for 28 secs? Then the macro will go back at the safe place, and the loop begins again. How can i do this?
$start = TimerInit() ; initializes the timer
While 1
If TimerDiff($start) > 28000 Then ; if 28 sec been passed
MouseClick("right",$x,$y) ; right click to your coord
$start = TimerInit() ; timer intialized again
EndIf
WEnd
Why do I use a timer, well, you don't block your code, such as sleep does. With my code, your script is still able to do whatever you want until he reached 28 sec...
$start = TimerInit() ; initializes the timer
While 1
If TimerDiff($start) > 28000 Then ; if 28 sec been passed
MouseClick("right",$x,$y) ; right click to your coord
$start = TimerInit() ; timer intialized again
EndIf
WEnd
Why do I use a timer, well, you don't block your code, such as sleep does. With my code, your script is still able to do whatever you want until he reached 28 sec...
but the man is talking autoit, so sleep would be his best bet
Well, it's an AutoIt code. The problem is, when you use a sleep, your script really waits 28 seconds, so nothing can be done until it's reached. My code does not wait the 28 seconds, but when the time has been reached, then it does what he wants to do...
It's an AutoIt code, that can be easily configurable!
So i started to create myself a archer macro for lab1 spawn, so far i managed to sit and activate fly, and clicking the coords to the scattering area.
But my question is, what's the command for 1 right click(scatter) per second, for 28 secs? Then the macro will go back at the safe place, and the loop begins again. How can i do this?
$timer = TimerInit()
While 1
MouseClick("right",$x,$y) ; right click (scatter)
If TimerDiff($timer) > 28000 Then ; if 28 secs reached
_GoToSafePlace() ; your function
$timer = TimerInit() ; timer is now = 0
EndIf
Sleep(1000) ; we want to wait 1sec before sending another click
WEnd
Func _GoToSavePlace()
; your function which has to move your archer to your safe place
EndFunc
Well, it's an AutoIt code. The problem is, when you use a sleep, your script really waits 28 seconds, so nothing can be done until it's reached. My code does not wait the 28 seconds, but when the time has been reached, then it does what he wants to do...
It's an AutoIt code, that can be easily configurable!
I know its been days since this was posted , but am gonna say this just incase some one is learning and finds this.
It doesnt matter if you use Sleep or TimerDiff() there since its in a loop , the script will be forzen anyways.
[GUIDE] How to create Scripts/bots with AutoIT 09/22/2010 - Tutorials - 6 Replies for all who want to learn something or create bots for browsergames, mmorpgs and other games
download Autoit here:
http://www.autoitscript.com/cgi-bin/getfile.pl?au toit3/autoit-v3-setup.exe
Now run the Scite Script Editor
this is where you type in your code, let check your code if errors are in it and compile it to executable exe file.
the first thing you need are the coordinates of your mouse to find locations on the screen, like skill buttons, status bars, or just positions which...
(GUIDE)How to create own scripts/bots with AutoIt 11/19/2008 - Rappelz - 4 Replies for all who want to learn something or create bots for browsergames, mmorpgs and other games
download Autoit here:
http://www.autoitscript.com/cgi-bin/getfile.pl?au toit3/autoit-v3-setup.exe
Now run the Scite Script Editor
this is where you type in your code, let check your code if errors are in it and compile it to executable exe file.
the first thing you need are the coordinates of your mouse to find locations on the screen, like skill buttons, status bars, or just positions which...
learning how to create/write Bots/Macros 01/28/2006 - Conquer Online 2 - 8 Replies Well I know that this is kind of off topic and a lot of people have been flamed by asking questions. I've tried a search and couldnt really find anything in english that i could actually read.
Does anyone know any good sites or anything that a beginner could start learning how to create/write programs for bots and stuff like that? I'm learning how to write programs in VisualBasic at school but dont really know much. If anyone could supply any sites and stuff it would be awesome. thanks in...