Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > AutoIt
You last visited: Today at 12:14

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

Advertisement



Need help with autoit bot !

Discussion on Need help with autoit bot ! within the AutoIt forum part of the Coders Den category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jun 2008
Posts: 427
Received Thanks: 19
Need help with autoit bot !

I don't know but is english allowed here? lol anyways, i've been on an autoit script using theforsaken's tutorial but i'm stuck at a part, i want to add another place for spamming another key but here only one key is working...and also i can't figure out how to make the "stop" button work.

Quote:
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.0.0
Author: shad0wboss
#ce ----------------------------------------------------------------------------
#include <GUIConstantsEx.au3>

GUICreate("shad0wboss's Bot", 300, 150)

GUISetState(@SW_SHOW)

GUICtrlCreateLabel("AOE", 2, 10)
$key1 = GUICtrlCreateInput("", 65, 8, 120)

GUICtrlCreateLabel("PickUp", 2, 82)
$key2 = GUICtrlCreateInput("", 65, 40, 120)

GUICtrlCreateLabel("Spam times", 2, 44)
$time1 = GUICtrlCreateInput("", 65, 75, 120)

$startbutton = GUICtrlCreateButton("Start", 190, 8, 60)

$stopbutton = GUICtrlCreateButton("Stop", 190, 40, 60)

While 1
$msg = GUIGetMsg()

Select

Case $msg = $startbutton

$send1 = GUICtrlRead($key1)
$send2 = GUICtrlRead($key2)
$sleep1 = GUICtrlRead($time1)

While 1
Send($send1)
Send($send2)
Sleep($sleep1)
WEnd

Case $msg = $stopbutton
Exit



Case $msg = $GUI_EVENT_CLOSE
GUIDelete()
ExitLoop
EndSelect

WEnd
shad0wboss is offline  
Old 07/27/2011, 16:44   #2
 
bollen's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 221
Received Thanks: 71
You read the wrong input for your send and sleep.
and If you have started the script you can not Close them because you are in an loop.
Code:
While 1
Send($send1)
Send($send2)
Sleep($sleep1)
wend
if you Make it with AdlibRegister() you can Exit the script
bollen is offline  
Old 07/27/2011, 16:58   #3
 
elite*gold: 0
Join Date: Jun 2008
Posts: 427
Received Thanks: 19
ok one more thing, for the buff, how can i have a hotkey which is pressed after 60 seconds so that includes timer but i can't figure out how to call it.


Quote:
While 1
$msg = GUIGetMsg()

Select

Case $msg = $startbutton

$send1 = GUICtrlRead($key1)
$send2 = Guictrlread($key2)
$sleep1 = GUICtrlRead($time1)
AdlibRegister("_Send", $sleep1)

Case $msg = $stopbutton
Exit
Case $msg = $GUI_EVENT_CLOSE
GUIDelete()
ExitLoop


EndSelect
WEnd

Func _Send()
Send($send1)
Send($send2)
EndFunc ;==>_Send


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;,
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Bot is "Paused". Press Pause again to resume',0,0)
WEnd
ToolTip("")
EndFunc

Func Terminate()
Exit 0
EndFunc

Func ShowMessage()
MsgBox(4096,"","Bot is paused. Press Stop to exit")
EndFunc
also do you think this would work?

Quote:
While 1
$msg = GUIGetMsg()

Select

Case $msg = $startbutton

ControlSend("TwelveSky2", "", "", GUICtrlRead($key1))
ControlSend("TwelveSky2", "", "", GUICtrlRead($key2))


Case $msg = $stopbutton
Exit
Case $msg = $GUI_EVENT_CLOSE
GUIDelete()
ExitLoop


EndSelect
WEnd
shad0wboss is offline  
Old 07/27/2011, 20:08   #4
 
bollen's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 221
Received Thanks: 71
Quote:
also do you think this would work?
Yes i think so if you call it with the right values


Quote:
how can i have a hotkey which is pressed after 60 seconds so that includes timer but i can't figure out how to call it.
If you want to send this Key every 60 seconds then you can try it with
Code:
AdlibRegister("_Send2", 60000)
Func _Send2()
Send("What you want to send")
endfunc
For the pause function you can stop all functions
Code:
Global $pausebutton=0
.......
Case $pausebutton
if $pausestartet=1 then
$pausestartet=0
ToolTip("")
AdlibRegister("_Send1",$sleep1)
AdlibRegister("_Send2",60000)
else
$pausestartet=1 
ToolTip('Bot is "Paused". Press Pause again to resume',0,0)
AdlibUnRegister("_Send1")
AdlibUnRegister("_Send2")
endif
because this is an endless loop
Code:
While $Paused
sleep(100)
ToolTip('Bot is "Paused". Press Pause again to resume',0,0)
WEnd
bollen is offline  
Old 07/27/2011, 22:34   #5
 
elite*gold: 0
Join Date: Jun 2008
Posts: 427
Received Thanks: 19
controlsend function isn't working.
shad0wboss is offline  
Old 07/27/2011, 22:52   #6
 
bollen's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 221
Received Thanks: 71
then you call it with the wrong values
you can get the values from the AutoIt Window Info Tool

€: At some Games Control send doesn't work.
for which game is it?
bollen is offline  
Old 07/28/2011, 13:41   #7
 
elite*gold: 0
Join Date: Jun 2008
Posts: 427
Received Thanks: 19
game i'm trying to use controlsend is TwelveSky2

ok here's the whole script but i can't get the 60 seconds timer to work...please suggest me where i can have it and how can it work? Also if i input F2 key in the boxes, it doesn't work but if i put F and then 2 together, it just spams F key...

Quote:
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.0.0
Author: shad0wboss
#ce ----------------------------------------------------------------------------
#include <GUIConstantsEx.au3>

GUICreate("shad0wboss's Bot", 400, 150)

GUISetState(@SW_SHOW)

GUICtrlCreateLabel("AOE", 2, 10)
$key1 = GUICtrlCreateInput("", 65, 8, 120)

GUICtrlCreateLabel("PickUp", 2, 40)
$key2 = GUICtrlCreateInput("", 65, 40, 120)

$time1 = GUICtrlCreateInput("Happy botting ", 65, 110, 190)

$startbutton = GUICtrlCreateButton("Start", 270, 8, 60)

$stopbutton = GUIctrlcreatebutton("Stop", 270, 40, 60)

GUICtrlcreatelabel("Buff", 2, 75)
$key3 = GUIctrlcreateinput("", 65, 75, 120)



;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;



Global $Paused
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")
HotKeySet("+!d", "ShowMessage")

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
While 1
$msg = GUIGetMsg()

Select

Case $msg = $startbutton


$send1 = GUICtrlRead($key1)
$send2 = Guictrlread($key2)
$sleep1 = GUICtrlRead($time1)
AdlibRegister("_Send", $sleep1)

AdlibRegister("_Send2", 60000)


Case $msg = $stopbutton
Exit
Case $msg = $GUI_EVENT_CLOSE
GUIDelete()
ExitLoop


EndSelect
WEnd

$timer = TimerInit()


Func _Send()
Send($send1)
Send($send2)
EndFunc ;==>_Send

AdlibRegister("_Send2", 60000)
Func _Send2()
Send(GUICtrlRead($key3))
endfunc

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;,
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Bot is "Paused". Press Pause again to resume',0,0)
WEnd
ToolTip("")
EndFunc

Func Terminate()
Exit 0
EndFunc

Func ShowMessage()
MsgBox(4096,"","Bot is paused. Press Stop to exit")
EndFunc
shad0wboss is offline  
Reply




All times are GMT +2. The time now is 12:14.


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.