sorry...but I download it and a few minute i leave botting and using that when im back dc and all my gold at item gone.... im playing at home so nobody can know my user and pass
It's cool man i'll figure everything out. The bot works fine though. Just compile the source yourselfQuote:
sorry...but I download it and a few minute i leave botting and using that when im back dc and all my gold at item gone.... im playing at home so nobody can know my user and pass
#include <ComboConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
opt("GuiOnEventMode",1)
global $running
HotKeySet("{F5}","RunMiniBot")
$Form1_1 = GUICreate("EE Auto-Pilot", 277, 225, 286, 201)
GuiSetOnEvent($GUI_EVENT_CLOSE,"CLOSE")
$str = "1|2|3|4|5|6|7|8|9|0"
$lbl_name = GUICtrlCreateLabel("Name", 8, 8, 150, 17)
$Label1 = GUICtrlCreateLabel("Label1", 8, 24, 150, 17)
$Label2 = GUICtrlCreateLabel("Label2", 8, 40, 150, 17)
$Label3 = GUICtrlCreateLabel("Label2", 8, 56, 150, 17)
$Label4 = GUICtrlCreateLabel("Key HP <=", 8, 80, 70, 17)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Input1 = GUICtrlCreateInput("250", 84, 80, 82, 28)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Combo4 = GUICtrlCreateCombo("", 167, 80, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Label5 = GUICtrlCreateLabel("Key MP <=", 8, 112, 62, 17)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Input2 = GUICtrlCreateInput("250", 84, 112, 82, 28)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Combo5 = GUICtrlCreateCombo("", 167, 112, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Label6 = GUICtrlCreateLabel("Skill 1:", 8, 144, 35, 17)
$Label7 = GUICtrlCreateLabel("Skill 2:", 8, 168, 35, 17)
$Label8 = GUICtrlCreateLabel("Skill 3:", 8, 193, 35, 17)
$Combo1 = GUICtrlCreateCombo("", 48, 144, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
$Combo2 = GUICtrlCreateCombo("", 48, 168, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
$Combo3 = GUICtrlCreateCombo("", 48, 192, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
$Label9 = GUICtrlCreateLabel("BSkill 1:", 104, 144, 35, 17)
$Combo6 = GUICtrlCreateCombo("", 144, 144, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
$Combo7 = GUICtrlCreateCombo("", 144, 168, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
$Combo8 = GUICtrlCreateCombo("", 144, 192, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
$Label10 = GUICtrlCreateLabel("BSkill 3:", 104, 192, 35, 17)
$Label11 = GUICtrlCreateLabel("BSkill 2:", 104, 168, 35, 17)
$Input3 = GUICtrlCreateInput("250", 240, 144, 26, 21)
$Label12 = GUICtrlCreateLabel("Time:", 200, 144, 35, 17)
$Input4 = GUICtrlCreateInput("250", 240, 168, 26, 21)
$Label13 = GUICtrlCreateLabel("Time:", 200, 168, 35, 17)
$Input5 = GUICtrlCreateInput("250", 240, 192, 26, 21)
$Label14 = GUICtrlCreateLabel("Time:", 200, 192, 35, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
First of all in your code an error is called because RunMiniBot is an undecalred function, as is CLOSE() function. Also you'll need the #include 'EEMem.au3' in there with the include files. o.oQuote:
Blinko need timed keys for buffs i try more not work
PHP Code:#include <ComboConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
opt("GuiOnEventMode",1)
global $running
HotKeySet("{F5}","RunMiniBot")
$Form1_1 = GUICreate("EE Auto-Pilot", 277, 225, 286, 201)
GuiSetOnEvent($GUI_EVENT_CLOSE,"CLOSE")
$str = "1|2|3|4|5|6|7|8|9|0"
$lbl_name = GUICtrlCreateLabel("Name", 8, 8, 150, 17)
$Label1 = GUICtrlCreateLabel("Label1", 8, 24, 150, 17)
$Label2 = GUICtrlCreateLabel("Label2", 8, 40, 150, 17)
$Label3 = GUICtrlCreateLabel("Label2", 8, 56, 150, 17)
$Label4 = GUICtrlCreateLabel("Key HP <=", 8, 80, 70, 17)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Input1 = GUICtrlCreateInput("250", 84, 80, 82, 28)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Combo4 = GUICtrlCreateCombo("", 167, 80, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Label5 = GUICtrlCreateLabel("Key MP <=", 8, 112, 62, 17)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Input2 = GUICtrlCreateInput("250", 84, 112, 82, 28)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Combo5 = GUICtrlCreateCombo("", 167, 112, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Label6 = GUICtrlCreateLabel("Skill 1:", 8, 144, 35, 17)
$Label7 = GUICtrlCreateLabel("Skill 2:", 8, 168, 35, 17)
$Label8 = GUICtrlCreateLabel("Skill 3:", 8, 193, 35, 17)
$Combo1 = GUICtrlCreateCombo("", 48, 144, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
$Combo2 = GUICtrlCreateCombo("", 48, 168, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
$Combo3 = GUICtrlCreateCombo("", 48, 192, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
$Label9 = GUICtrlCreateLabel("BSkill 1:", 104, 144, 35, 17)
$Combo6 = GUICtrlCreateCombo("", 144, 144, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
$Combo7 = GUICtrlCreateCombo("", 144, 168, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
$Combo8 = GUICtrlCreateCombo("", 144, 192, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, $str)
$Label10 = GUICtrlCreateLabel("BSkill 3:", 104, 192, 35, 17)
$Label11 = GUICtrlCreateLabel("BSkill 2:", 104, 168, 35, 17)
$Input3 = GUICtrlCreateInput("250", 240, 144, 26, 21)
$Label12 = GUICtrlCreateLabel("Time:", 200, 144, 35, 17)
$Input4 = GUICtrlCreateInput("250", 240, 168, 26, 21)
$Label13 = GUICtrlCreateLabel("Time:", 200, 168, 35, 17)
$Input5 = GUICtrlCreateInput("250", 240, 192, 26, 21)
$Label14 = GUICtrlCreateLabel("Time:", 200, 192, 35, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
uhm.. is there a script here of the captcha that overe used on the first bot??Quote:
First of all in your code an error is called because RunMiniBot is an undecalred function, as is CLOSE() function. Also you'll need the #include 'EEMem.au3' in there with the include files. o.o
Other than that just use functions from the EEMem.au3 and your golden :P
The first OverEE thing didn't have anything in it for the captcha, those cannot be stopped with simple macro bots and memory reading. It'll require much more.Quote:
hmm.. i wish someone can workout on those captcha thingy.. piff.. it sucks.. uhm.. the EEbot still spams 1,2,3 on the captcha.. piff..
uhm.. is there a script here of the captcha that overe used on the first bot??
There is no such thing as a gold hack unless it's bugged with some viruses. Kind of suspicious your links were blocked as well.Quote:
found a couple of supposed hacks unable to by pass since its not sc but if u want to take a crack at it here ya go.
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
last one just found >< gonna try it
[Only registered and activated users can see links. Click Here To Register...]