Register for your free account! | Forgot your password?

Go Back   elitepvpers > General Gaming > General Gaming Discussion
You last visited: Today at 03:26

  • 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 07/15/2011, 03:20   #106
 
elite*gold: 0
Join Date: Jan 2005
Posts: 23
Received Thanks: 2
I would LOVE a bot for this game! Just a simple attack would suffice lol
Eldrad is offline  
Old 07/15/2011, 05:33   #107
 
elite*gold: 0
Join Date: Apr 2011
Posts: 3
Received Thanks: 2
I literally know nothing about autoit but after 5 hours of googling and self teaching i figured out how to find the new "Global $APP_BASE_ADDRESS = xxxxxxxxx, $TARGET_BASE_ADDRESS = xxxxxxxxx"

Using a few other scripts (Array.au3, NomadMemory.au3) and

Code:
#include <Array.au3>
#include <NomadMemory.au3> ;because you need this for _memread functions

Global $winProcess = "_Launcher.exe", $pidProcess = ProcessExists($winProcess)
Global $offsetStatic = "00650454", $hProcess, $baseMem1, $baseMem2

SetPrivilege("SeDebugPrivilege", 1)

$hProcess = _MemoryOpen($pidProcess)
If @Error Then
    MsgBox (16, "", "Error opening process: " & $pidProcess & " [ code: " & @error & "]")
    Exit
EndIf

$baseMem1 = _MemoryGetBaseAddress($hProcess, 1)
If @Error Then
    MsgBox (16, "", "Error getting base address: " & $pidProcess & " [ code: " & @error & "]")
    Exit
EndIf

$baseMem2 = "0x" & Hex($baseMem1 + Dec($offsetStatic))
_MemoryClose($hProcess)

MsgBox(64, "", $pidProcess & " ] " & @CRLF & _
    Hex($baseMem1) & " - " & $baseMem2)
I found the new target address is

Code:
Global $APP_BASE_ADDRESS = 0x007A0454, $TARGET_BASE_ADDRESS = 0x009A0454
Now i could be wrong but I changed the APP_BASE_ADDRESS to the address of the bot itself and I changed the TARGET_BASE_ADDRESS to the address of the updated Eden Eternal. Like i said before i'm just trying to figure this stuff out so let me know if this is wrong...

Here is the problem with all this... I figured that all I had to do was change the address... Wrong. The bot now spams the tab key only. It looks like its not picking up any health bars (enemy or your own) and its not trying to press any keys (other than TAB obviously). So I've really gone as deep as I know how to. If anyone would like to figure out just how in the hell im supposed to get the bot to detect the hp of me and the mob im attacking then I would be more than happy to continue working on a working bot for everyone.

Better yet... This guy (OP) could just update it himself since he knows what hes doing.

Download links:
Let me know if the bot works for you.
Since i'm new I would suggest downloading the OverEE.au3 and downloading Autoit and compiling it for yourself so that you can be sure that I did not alter the file any other way than previously stated.
Code:
OverEE.exe
http://" sharecash" .org/download.php?file=2136411
OverEE.au3
http://" sharecash" .org/download.php?file=2136410
Remove " " and spaces from downloads
explosivepyro is offline  
Old 07/15/2011, 06:08   #108
 
elite*gold: 0
Join Date: May 2008
Posts: 3
Received Thanks: 0
anyone downloaded explosivepyro's file yet? looks suspicious just upload to mediafire, megaupload/rapidshare
mqqier is offline  
Old 07/15/2011, 06:38   #109
 
elite*gold: 0
Join Date: Apr 2011
Posts: 3
Received Thanks: 2
Quote:
Originally Posted by mqqier View Post
anyone downloaded explosivepyro's file yet? looks suspicious just upload to mediafire, megaupload/rapidshare
get autoit and take the script from the first page and replace the lines I noted with the changed lines i made. Then save and go to tools and compile.

I'm just trying to make some extra money by using a uploading site that pays you but if you want to do it the longer way then do what I said above.
explosivepyro is offline  
Old 07/15/2011, 06:45   #110
 
elite*gold: 0
Join Date: Jul 2011
Posts: 3
Received Thanks: 0
i tried using the address explosivepyro gave.. it does the same for me.. it spams Tab but does nothing. i tweaked the code a little by sending button 1 button 2 button 3 after the Send("{TAB}") line, my char used skill in hotkeys 1,2,3. so i think its not calling the function attackTarget.

it only calls the selectTarget function thats why it spams the tab.. i dont know why.. maybe something was altered in the game.
ralphklapps is offline  
Old 07/15/2011, 07:11   #111
 
elite*gold: 0
Join Date: May 2008
Posts: 6
Received Thanks: 0
great explosivepyro to have placed the address but has failed to have put ShareCash but there's nothing you've done the hardest part for others to use it and you guys can redo their bots

0 - use the brain.exe
1 - read the post the address is already there (pag 11 - explosivepyro)
2 - use the autoit v1.3 OverEE and rebuild on the first page that this (until I get that I'm dumb)
3 - if not the NomadMemory.au3 read this
sejam felizes
blisszero is offline  
Old 07/15/2011, 10:55   #112
 
elite*gold: 0
Join Date: Jan 2006
Posts: 3
Received Thanks: 0
Quote:
Originally Posted by explosivepyro View Post
I literally know nothing about autoit but after 5 hours of googling and self teaching i figured out how to find the new "Global $APP_BASE_ADDRESS = xxxxxxxxx, $TARGET_BASE_ADDRESS = xxxxxxxxx"

Using a few other scripts (Array.au3, NomadMemory.au3) and

Code:
#include <Array.au3>
#include <NomadMemory.au3> ;because you need this for _memread functions

Global $winProcess = "_Launcher.exe", $pidProcess = ProcessExists($winProcess)
Global $offsetStatic = "00650454", $hProcess, $baseMem1, $baseMem2

SetPrivilege("SeDebugPrivilege", 1)

$hProcess = _MemoryOpen($pidProcess)
If @Error Then
    MsgBox (16, "", "Error opening process: " & $pidProcess & " [ code: " & @error & "]")
    Exit
EndIf

$baseMem1 = _MemoryGetBaseAddress($hProcess, 1)
If @Error Then
    MsgBox (16, "", "Error getting base address: " & $pidProcess & " [ code: " & @error & "]")
    Exit
EndIf

$baseMem2 = "0x" & Hex($baseMem1 + Dec($offsetStatic))
_MemoryClose($hProcess)

MsgBox(64, "", $pidProcess & " ] " & @CRLF & _
    Hex($baseMem1) & " - " & $baseMem2)
I found the new target address is

Code:
Global $APP_BASE_ADDRESS = 0x007A0454, $TARGET_BASE_ADDRESS = 0x009A0454
Now i could be wrong but I changed the APP_BASE_ADDRESS to the address of the bot itself and I changed the TARGET_BASE_ADDRESS to the address of the updated Eden Eternal. Like i said before i'm just trying to figure this stuff out so let me know if this is wrong...

Here is the problem with all this... I figured that all I had to do was change the address... Wrong. The bot now spams the tab key only. It looks like its not picking up any health bars (enemy or your own) and its not trying to press any keys (other than TAB obviously). So I've really gone as deep as I know how to. If anyone would like to figure out just how in the hell im supposed to get the bot to detect the hp of me and the mob im attacking then I would be more than happy to continue working on a working bot for everyone.

Better yet... This guy (OP) could just update it himself since he knows what hes doing.

Download links:
Let me know if the bot works for you.
Since i'm new I would suggest downloading the OverEE.au3 and downloading Autoit and compiling it for yourself so that you can be sure that I did not alter the file any other way than previously stated.
Code:
OverEE.exe
http://" sharecash" .org/download.php?file=2136411
OverEE.au3
http://" sharecash" .org/download.php?file=2136410
Remove " " and spaces from downloads
Thank for share useful code but can u help me how to get $offsetStatic = "00650454"
thank you very much
and can u reupload your file au3 to another hostting. i can't download at this host.
764999 is offline  
Old 07/15/2011, 12:43   #113
 
elite*gold: 0
Join Date: Jun 2008
Posts: 5
Received Thanks: 1
still having problem editing scripts, please upload it, thanks in advance
wakek01 is offline  
Old 07/15/2011, 14:35   #114
 
elite*gold: 0
Join Date: Jun 2011
Posts: 14
Received Thanks: 0
still no update for overEE?
torete21 is offline  
Old 07/15/2011, 18:20   #115
 
elite*gold: 0
Join Date: May 2008
Posts: 6
Received Thanks: 0
use endress posted for explosivepyro change $APP_BASE_ADDRESS & $TARGET_BASE_ADDRESS use bot

@oftopic
sharecash dnot work in brasil **** sever
blisszero is offline  
Old 07/15/2011, 18:28   #116
 
elite*gold: 0
Join Date: Jul 2011
Posts: 2
Received Thanks: 0
how 2 use that bot ? some 1 can help me ?
apekzzzz is offline  
Old 07/15/2011, 18:28   #117
 
elite*gold: 0
Join Date: Jul 2011
Posts: 8
Received Thanks: 0
Sharecash requires you to do survey and sign up for junks... >.> not very trusted.
artemist is offline  
Old 07/15/2011, 20:28   #118
 
elite*gold: 0
Join Date: Jul 2011
Posts: 3
Received Thanks: 0
changed the overe adresses to pyro one... but still nothing o.O
SoSlayer is offline  
Old 07/15/2011, 21:04   #119
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1
Received Thanks: 0
so.. is any chance to bot in Eden Eternal for the moment after pach?
i rlly need a bot and i cant find one to work.......
gaborumihai is offline  
Old 07/16/2011, 00:10   #120
 
elite*gold: 0
Join Date: Apr 2011
Posts: 3
Received Thanks: 2


explosivepyro is offline  
Thanks
2 Users
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 03:26.


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.