Register for your free account! | Forgot your password?

Go Back   elitepvpers > General Gaming > General Gaming Discussion
You last visited: Today at 18:55

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

Advertisement



Eden Eternal Simple Bot

Discussion on Eden Eternal Simple Bot within the General Gaming Discussion forum part of the General Gaming category.

Closed Thread
 
Old 11/11/2011, 22:40   #661
 
blinko's Avatar
 
elite*gold: 0
Join Date: Aug 2005
Posts: 499
Received Thanks: 131
Quote:
Originally Posted by hobie15 View Post
how to use it?

sorry newbie
F10 to start/stop the bot
F9 to exit the program
and F11 to toggle zoom
blinko is offline  
Old 11/12/2011, 04:20   #662
 
elite*gold: 0
Join Date: Aug 2009
Posts: 27
Received Thanks: 4
hey is this for dragon nest sea?
dantekato is offline  
Old 11/12/2011, 15:33   #663
 
elite*gold: 0
Join Date: Nov 2008
Posts: 11
Received Thanks: 1
I just wonder how insane a person must be to pay 10 $ for 40 hours of botting, thats freaking so expensive, not even 2 days of botting and its 10 $ u gotta be kiddin me, i almost wanted to buy it but i thought the price gonna be like all normal bots, like in Silkroad Online 10 $ for a month or something but cmon 2 days for 10$ its a bot for millioners ... get a brain afkguy!!!!

And a PS: So thats all for now i hope u can fix the prices and work some more under that project becouse it have to be like awesome and much much better than blinkos bot so more people actually want to pay for it, not just few rich dummies.
danio0106 is offline  
Old 11/13/2011, 12:30   #664
 
elite*gold: 0
Join Date: May 2011
Posts: 17
Received Thanks: 0
where can i download the latest working bot.... jeez.... THANKS!
mikepale01 is offline  
Old 11/14/2011, 05:54   #665
 
elite*gold: 0
Join Date: Nov 2011
Posts: 1
Received Thanks: 0
Hi how to operate the bot please
falcom974 is offline  
Old 11/16/2011, 00:19   #666
 
blinko's Avatar
 
elite*gold: 0
Join Date: Aug 2005
Posts: 499
Received Thanks: 131
Quote:
Originally Posted by mikepale01 View Post
where can i download the latest working bot.... jeez.... THANKS!
You should just use the Installer-Updater tool that I linked up earlier. It'll grab the full source and compiled exe from my site. Here it is again if you don't have it. I've attached it.

Here's a scan, and it seems to be a new false positive. I have yet to see this one before.


Source Code you can compile yourself then use it to download the bot files.
Code:
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=smile.ico
#AutoIt3Wrapper_Outfile=EEBot_Installer-Updater.exe
#AutoIt3Wrapper_UseUpx=n
#AutoIt3Wrapper_UseX64=n
#AutoIt3Wrapper_Add_Constants=n
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
;Migrated code for AutoIt version 3.3.1.x (and above)
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <ProgressConstants.au3>
#include <WindowsConstants.au3>
#include <File.au3>
#include <Array.au3>
#include <String.au3>

HotKeySet("{ESC}","Form1Close")
global $ary,$fname,$dlc, $Progress1
global $content
Opt("GUIOnEventMode", 1)
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("EE Auto-Pilot Updater", 294, 50, 192, 124)
GUISetOnEvent($GUI_EVENT_CLOSE, "Form1Close")
$Progress1 = GUICtrlCreateProgress(8, 8, 275, 20)
$Button1 = GUICtrlCreateButton("Update", 117, 48, 75, 20, 0)
GUICtrlSetOnEvent(-1, "Button1")
GuiCtrlSetState($Button1,$GUI_HIDE)
$label1 = GuiCtrlCreateLabel("Working..",8,28,280,17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

if not FileExists(@WorkingDir & "\config\") Then
	DirCreate(@WorkingDir & "\config\")
EndIf

if not FileExists(@WorkingDir & "\EEAutoPilot.settings") Then
	download("http://eeautopilot.site90.com/install.dlc", @workingDir & "\install.dlc", $Progress1)
	$content = "install.dlc"
	Button1()
	else
$app_version = INIRead(@WorkingDir & "\EEAutoPilot.settings","settings","version","")
download("http://eeautopilot.site90.com/autoupdate.dlc", @WorkingDir & "\autoupdate.dlc", $Progress1)
sleep(1*1000)
$version = INIRead(@WorkingDir & "\autoupdate.dlc","version","enc","")
;~ MsgBox(0,"",StringTrimLeft($version,StringLen($version) - 3) & " : " & $app_version)
;~ exit 0
;string = "1.2.002"
If int(StringTrimLeft($version,StringLen($version) - 3)) <> Int(StringTrimLeft($app_version,StringLen($app_version) - 3)) then
MsgBox(0,"","Application Needs Updated")
$content = "autoupdate.dlc"
Button1()
Else
	MsgBox(0,"","AutoPilot up to date")
EndIf
endif

While 1
    Sleep(100)
WEnd
func Button1()
	Button1Click($content)
EndFunc

Func Button1Click($content)
	$dlc = @WorkingDir & "\" & $content
	_FileReadToArray($dlc,$ary)
;~ _ArrayDisplay($ary)

	$aStr = _ArrayToString($ary,"|")

	$sp = StringSplit($aStr,"|")

	for $i = 2 to $sp[0]
		$ap = StringSplit($sp[$i],"/")
		$fname = @WorkingDir & "\" & $ap[$ap[0]]
		 download($sp[$i], $fname, $Progress1)
	 Next

	if FileExists(@WorkingDir & "\user.ini") Then
		FileCopy(@WorkingDir & "\user.ini",@WorkingDir & "\config\user.ini")
		FileDelete(@WorkingDir & "\user.ini")
	EndIf

GUICtrlSetData($label1, "                               Update Complete !!!")

EndFunc

Func Form1Close()
	FileDelete(@WorkingDir & "\install.dlc")
	FileDelete(@WorkingDir & "\autoupdate.dlc")
    Exit 0
EndFunc

func download($url, $target, $progress)
    $size =InetGetSize($url)
    $hDownload = InetGet($url, $target, 1, 1)   	;1 = Forces a reload from the remote site, 1 = Return immediately and download in the background
		$ab = StringSplit($url,"/")
		$a = $ab[$ab[0]]
  While Not InetGetInfo($hDownload, 2)                                            ;2 = Set to True if the download is complete, False if the download is still ongoing.
        GUICtrlSetData($progress,Ceiling((InetGetInfo($hDownload, 0)/$size)*100))
		GUICtrlSetData($label1,$a & ": " & InetGetInfo($hDownload, 0) & "/" & $size & " : " & Ceiling((InetGetInfo($hDownload, 0)/$size)*100) & "%")		;0 = Bytes read so far (this is updated while the download progresses).
	Wend
	InetClose($hDownload)
endfunc
Attached Files
File Type: rar EEBot_Installer-Updater.rar (298.3 KB, 225 views)
blinko is offline  
Old 11/23/2011, 07:58   #667
 
pakupaku's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 30
Received Thanks: 1
any updates for the address?
pakupaku is offline  
Old 11/23/2011, 09:39   #668
 
elite*gold: 0
Join Date: Aug 2010
Posts: 24
Received Thanks: 0
they must have included some stuff into the new patch..been trying to use cheat engine to find the address and it crashes you and then makes the temporarily unable to connect thing pop on for 15 minutes if u try to login from same IP.. the program crashes easier too...

Anyone else can confirm if they ahve same problem?
cazirrez is offline  
Old 11/23/2011, 10:06   #669
 
pakupaku's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 30
Received Thanks: 1
confirmed
pakupaku is offline  
Old 11/23/2011, 14:06   #670
 
elite*gold: 0
Join Date: Feb 2011
Posts: 7
Received Thanks: 0
Please Update the Address
rshanne is offline  
Old 11/23/2011, 15:20   #671
 
elite*gold: 0
Join Date: Jul 2010
Posts: 6
Received Thanks: 0
If anyone know of any program or an update to this, here it crashed with atulização the game!
It opens but does not recognize the character.
Thank you for your attention I hope you can help
and please where dowload of boot ???
rafaelagun is offline  
Old 11/23/2011, 17:38   #672
 
Ploxasarus's Avatar
 
elite*gold: 193
Join Date: Jan 2008
Posts: 2,654
Received Thanks: 2,440
At the moment with the new patch things require to be updated. Suprisingly they have implimented detection of cheat engine within the client ( it is already implimented in the taiwan version ) and also done some crafty things in an attempt to stop botting. I have been discussing this with blinko and it should be fixed soon.
Ploxasarus is offline  
Old 11/23/2011, 17:55   #673
 
elite*gold: 0
Join Date: Jul 2011
Posts: 25
Received Thanks: 0
so there's no more new update yet?
tobebenjo is offline  
Old 11/23/2011, 18:03   #674
 
elite*gold: 0
Join Date: Feb 2011
Posts: 7
Received Thanks: 0
Quote:
Originally Posted by tobebenjo View Post
so there's no more new update yet?
There will be look at the post of Ploxasarus. Try to read before posting.
rshanne is offline  
Old 11/23/2011, 21:44   #675
 
elite*gold: 0
Join Date: Jul 2011
Posts: 25
Received Thanks: 0
Quote:
Originally Posted by rshanne View Post
There will be look at the post of Ploxasarus. Try to read before posting.
im just only asking!because when i log on earlier i saw so many people still using bot...so theres a big deal with that?
tobebenjo is offline  
Closed Thread


Similar Threads Similar Threads
Eden Eternal bot issue
08/21/2011 - AutoIt - 7 Replies
Im trying to use my own bot in the game Eden Eternal. But I'm not getting to use the _SendMessage and _PostMessage functons, i tried a lot to make it work but i didn't obtain success... just the Send function worked... Code, doesnt work (the $HANDLER is working, i think. It just write into the chat): ;_SendMessage($HANDLE, 256, 112); ;_SendMessage($HANDLE, 0x4d, 0); ;_PostMessage($HANDLE, 256, 49, 0x20001); ;_PostMessage($HANDLE, 257, 49, 0x20001); ;ControlSend($HANDLE, "", "",...
Eden Eternal
08/16/2011 - General Gaming Discussion - 2 Replies
Hallo Leute. Ich wollte fragen ob ihr bei der CB von Eden Eternal dabei wart, was ihr davon haltet und ob es eventuell Server files oder Language patches für die Japanische version gibt. Danke im vorraus. Kexxi
WTS Eden Eternal Account.
07/11/2011 - Trading - 17 Replies
Hello! Selling my Eden Eternal account from this site here: Eden Eternal - Eden Eternal - A free MMORPG from Aeria Games Game is open to ANYONE and EVERYONE. Meaning you can play from anywhere. Germany, Europe, Australia, Hawaii, United States, Canada, etc. Server: Aquamarine Details: Maverick Trait (10% AGI, 5% ATK Speed)
eden eternal hacks needed
07/01/2011 - General Coding - 3 Replies
any1 gonna make hacks for eden eternal ?
Eternal Eden OB!
06/16/2011 - General Gaming Discussion - 0 Replies
Eden Eternal - Eden Eternal - A free MMORPG from Aeria Games signup here! ^ OB starts today experience the fun!



All times are GMT +2. The time now is 18: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.