Register for your free account! | Forgot your password?

You last visited: Today at 18:17

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

Advertisement



AutoGrinder

Discussion on AutoGrinder within the Atlantica Online forum part of the MMORPGs category.

Closed Thread
 
Old 02/16/2012, 17:42   #1141
 
elite*gold: 0
Join Date: Dec 2010
Posts: 41
Received Thanks: 17
Quote:
Originally Posted by ping1234 View Post
because I don't know that thread at KasKus, and after you show the link here I check it out, and then I read your comment at kaskus.. is it fair enough? a lot of peoples out there know the way to update the address, not only here..

from the first of my comment for you, i don't want to fight, but you always give bad words to someone that don't want to share the result..

did you talk about opensource? and then show me what's my problem about that.. i don't share the address but i share the way to update the address.. is opensource rules insist me to share the result of the address? i don't think so and for sure i don't share the bot in other website/websharing and I never make money with this bot.. grow up kids!

and for some peoples here, knowing or learning the way to update is better than just the result..am I wrong? LoL

---------------------------------------------------------------------
marah ya om? wkakakkakaa ngaca dlu om...hahahaha...yg pernah share ini bot ke web laen om sndr lho...hahahahaha websharing pula :P
oh yeah i upload it into websharing, but i give a password there right? and you know the password on my comment on this forum right? and the one that i uploaded were for iAO and i share it here too (websharing url and the file)

oh if better you learn how to search or make it, why you doesn't create your own bot instead of use this bot eh? in every open source software that i know, everyone tell how to make a feature and give the result right? am i wrong? you doesn't know anything and just give a simple conclusion for that opensource thing..

and for everyone, sorry for this argue, but i just keep my own principle to keep sharing all the result of our own modification and tell everyone here how i change a thing and what that thing can do, because its an opensource bot right?

i don't care about anything on this game exactly i just use it for fun, and i use this bot for more fun... i sorry if you all bothered by me ahhahaha...

and for neuronet
everyone on game already know about this bots habbit, i mean if this bot doesn't found any mobs (move into a round pattern), if our char get traded by someone this bot will not close trade box, if die this bot will return on the same spot, and this bot is never sit.

on the last file that i share here i already implemented some feature for example.
  • Sit instead of move if it doesn't found any mobs
  • Change the camera angel about 2 - 3 degrees if still doesn't found any mobs for < 10 times (but still sit)
  • Tele to selected favorite place if it doesn't found any mobs around > 10 times
  • Use Life potion when no WOL in quick inventory, also use food/heal/mana pot

maybe you can use that on your next bot version, because we must humanize this bot little by little to make sure everyone doens't realize that we use bot.

and i have a question, the checksum methode is highly dependent on monitor resolution right? because on my friend monitor with 1660x990 resolution anything works well, but on my monitor with 1024x768 resolution it doesn't work, and i think that because the resolution problem, do you have any suggestion to find the coordinate?


-----------------------------------------------------------------------
EDITED
-----------------------------------------------------------------------

I included my last modification here
Attached Files
File Type: rar Auto Grinder.rar (20.1 KB, 105 views)
yank1609 is offline  
Thanks
2 Users
Old 02/16/2012, 17:55   #1142
 
elite*gold: 0
Join Date: Jul 2010
Posts: 12
Received Thanks: 1
anyone know how i can configure the grinder to accept mob info's and skills up?
maximilliam is offline  
Old 02/16/2012, 18:11   #1143
 
elite*gold: 0
Join Date: Jan 2012
Posts: 22
Received Thanks: 6
Quote:
Originally Posted by camplinomore View Post
yes.. we focused about this for few month for indonesian AO but... it don't show any solved problem when zoom..
for me, in birdview function, I don't use memory read command..but i just change the Mouseclickdrag coord

like this>

Code:
Func set_Birdview()
	If ($combat_marker[1] = 0) Then
		If not WinActive("Atlantica Online") Then
			WinActivate("Atlantica Online")
			Sleep(250)
		EndIf
		_set_UI(0)
		MouseClickDrag("right", 300, 40, 305, 40, 5) ;changed here
		If $MapID = $StartMap Then
		   MouseWheel("down", 80)
		EndIf
		Sleep(1000)
		_set_UI(1)
		$bird_marker = 1
		$as_action = 0
	EndIf
	If $combat_marker[1] > 0 Then
		$bird_marker = 0
	EndIf
EndFunc
and in attack mob function like this> original from neuronet>
Code:
                if $found = 0 Then
			Send("{DOWN}")
			Sleep(100)
			Send("{RIGHT}")
			Sleep(100)
			recalc_pointer()
			Local $Zoom_B_Mem	= _readMem_Array($Zoom_B_Array, 0)
			_MemoryWrite($Zoom_B_Mem, $Mem_Open, $zoom_lvl , "float")
			MouseWheel("down", 40)
			Sleep(200)
			$bird_marker = 1
			$as_action = 0
			sleep(1000)
		EndIf
then i edit like this>
Code:
                if $found = 0 Then
                        Sleep(200)
			MouseClickDrag("right", 420, 120, 423, 120, 5) ; you can experiment with the coordinate in this line
			MouseWheel("down", 40)
			Sleep(200)
			$bird_marker = 1
			$as_action = 0
			sleep(1000)
		EndIf
it will zoom not over head, but birdview (maybe work for AOindo)..
ping1234 is offline  
Thanks
1 User
Old 02/16/2012, 18:19   #1144
 
elite*gold: 0
Join Date: Feb 2012
Posts: 16
Received Thanks: 0
Quote:
Originally Posted by ping1234 View Post
for me, in birdview function, I don't use memory read command..but i just change the Mouseclickdrag coord

like this>

Code:
Func set_Birdview()
	If ($combat_marker[1] = 0) Then
		If not WinActive("Atlantica Online") Then
			WinActivate("Atlantica Online")
			Sleep(250)
		EndIf
		_set_UI(0)
		MouseClickDrag("right", 300, 40, 305, 40, 5) ;changed here
		If $MapID = $StartMap Then
		   MouseWheel("down", 80)
		EndIf
		Sleep(1000)
		_set_UI(1)
		$bird_marker = 1
		$as_action = 0
	EndIf
	If $combat_marker[1] > 0 Then
		$bird_marker = 0
	EndIf
EndFunc
and in attack mob function like this> original from neuronet>
Code:
                if $found = 0 Then
			Send("{DOWN}")
			Sleep(100)
			Send("{RIGHT}")
			Sleep(100)
			recalc_pointer()
			Local $Zoom_B_Mem	= _readMem_Array($Zoom_B_Array, 0)
			_MemoryWrite($Zoom_B_Mem, $Mem_Open, $zoom_lvl , "float")
			MouseWheel("down", 40)
			Sleep(200)
			$bird_marker = 1
			$as_action = 0
			sleep(1000)
		EndIf
then i edit like this>
Code:
                if $found = 0 Then
                        Sleep(200)
			MouseClickDrag("right", 420, 120, 423, 120, 5) ; you can experiment with the coordinate in this line
			MouseWheel("down", 40)
			Sleep(200)
			$bird_marker = 1
			$as_action = 0
			sleep(1000)
		EndIf
it will zoom not over head, but birdview (maybe work for AOindo)..
ok i'll try it but is it possible that the bot uses first person camera? like playing counter strike but with rotation, can it? haha..
ragefury is offline  
Old 02/16/2012, 19:31   #1145
 
elite*gold: 0
Join Date: Sep 2005
Posts: 375
Received Thanks: 86
In PvE, it clicks the auto-battle icon sometimes right after a battle and sends me to my home.
woodyfly is offline  
Old 02/17/2012, 02:56   #1146
 
elite*gold: 0
Join Date: Dec 2010
Posts: 41
Received Thanks: 17
Quote:
Originally Posted by maximilliam View Post
anyone know how i can configure the grinder to accept mob info's and skills up?
Change your monitor resolution into 1660x990 if can't then you must change the code

Quote:
Originally Posted by ping1234 View Post
for me, in birdview function, I don't use memory read command..but i just change the Mouseclickdrag coord

like this>

Code:
Func set_Birdview()
	If ($combat_marker[1] = 0) Then
		If not WinActive("Atlantica Online") Then
			WinActivate("Atlantica Online")
			Sleep(250)
		EndIf
		_set_UI(0)
		MouseClickDrag("right", 300, 40, 305, 40, 5) ;changed here
		If $MapID = $StartMap Then
		   MouseWheel("down", 80)
		EndIf
		Sleep(1000)
		_set_UI(1)
		$bird_marker = 1
		$as_action = 0
	EndIf
	If $combat_marker[1] > 0 Then
		$bird_marker = 0
	EndIf
EndFunc
and in attack mob function like this> original from neuronet>
Code:
                if $found = 0 Then
			Send("{DOWN}")
			Sleep(100)
			Send("{RIGHT}")
			Sleep(100)
			recalc_pointer()
			Local $Zoom_B_Mem	= _readMem_Array($Zoom_B_Array, 0)
			_MemoryWrite($Zoom_B_Mem, $Mem_Open, $zoom_lvl , "float")
			MouseWheel("down", 40)
			Sleep(200)
			$bird_marker = 1
			$as_action = 0
			sleep(1000)
		EndIf
then i edit like this>
Code:
                if $found = 0 Then
                        Sleep(200)
			MouseClickDrag("right", 420, 120, 423, 120, 5) ; you can experiment with the coordinate in this line
			MouseWheel("down", 40)
			Sleep(200)
			$bird_marker = 1
			$as_action = 0
			sleep(1000)
		EndIf
it will zoom not over head, but birdview (maybe work for AOindo)..
by the way ping1234 you use my code right?

Code:
Local $Zoom_B_Mem	= _readMem_Array($Zoom_B_Array, 0)
;		Zoom 15: 1097859072
;		Zoom 20: 1101004800 (4 Byte)
		_MemoryWrite($Zoom_B_Mem, $Mem_Open, 1101398016, "dword")
this is code for zoom hack...
and that local $Zoom_B_Mem is the memory address to hack AO Zoom Bound...
and you all must change the address, because as we know indoAO have different memory address..
once you can found that address then everything gonna be works,,,
yank1609 is offline  
Old 02/17/2012, 10:44   #1147
 
elite*gold: 0
Join Date: Jul 2010
Posts: 12
Received Thanks: 1
thanks yank, but i got a issue, i changed all you mensured but he still not accepting, im using 1024x768, any idea how i can solve it?
maximilliam is offline  
Old 02/17/2012, 19:10   #1148
 
nirwantowawa's Avatar
 
elite*gold: 0
Join Date: Jul 2010
Posts: 17
Received Thanks: 0
Talking

Quote:
Originally Posted by yank1609 View Post
oh yeah i upload it into websharing, but i give a password there right? and you know the password on my comment on this forum right? and the one that i uploaded were for iAO and i share it here too (websharing url and the file)

oh if better you learn how to search or make it, why you doesn't create your own bot instead of use this bot eh? in every open source software that i know, everyone tell how to make a feature and give the result right? am i wrong? you doesn't know anything and just give a simple conclusion for that opensource thing..

and for everyone, sorry for this argue, but i just keep my own principle to keep sharing all the result of our own modification and tell everyone here how i change a thing and what that thing can do, because its an opensource bot right?

i don't care about anything on this game exactly i just use it for fun, and i use this bot for more fun... i sorry if you all bothered by me ahhahaha...

and for neuronet
everyone on game already know about this bots habbit, i mean if this bot doesn't found any mobs (move into a round pattern), if our char get traded by someone this bot will not close trade box, if die this bot will return on the same spot, and this bot is never sit.

on the last file that i share here i already implemented some feature for example.
  • Sit instead of move if it doesn't found any mobs
  • Change the camera angel about 2 - 3 degrees if still doesn't found any mobs for < 10 times (but still sit)
  • Tele to selected favorite place if it doesn't found any mobs around > 10 times
  • Use Life potion when no WOL in quick inventory, also use food/heal/mana pot

maybe you can use that on your next bot version, because we must humanize this bot little by little to make sure everyone doens't realize that we use bot.

and i have a question, the checksum methode is highly dependent on monitor resolution right? because on my friend monitor with 1660x990 resolution anything works well, but on my monitor with 1024x768 resolution it doesn't work, and i think that because the resolution problem, do you have any suggestion to find the coordinate?


-----------------------------------------------------------------------
EDITED
-----------------------------------------------------------------------

I included my last modification here
not work for Ao Indonesia, bot can attack the mob but in the battle phase bot still search the mob,
nirwantowawa is offline  
Old 02/17/2012, 19:58   #1149
 
neuronet's Avatar
 
elite*gold: 0
Join Date: Aug 2009
Posts: 1,520
Received Thanks: 1,304
Quote:
Originally Posted by nirwantowawa View Post
not work for Ao Indonesia, bot can attack the mob but in the battle phase bot still search the mob,
if it still tries to search mobs in battle phase the pointer for "CombatInProcess" is invalid.. This usually shows the following:
0 = out of Battle
1 = normal Battle
2 = Skirmish Battle
neuronet is offline  
Thanks
1 User
Old 02/18/2012, 02:30   #1150
 
nirwantowawa's Avatar
 
elite*gold: 0
Join Date: Jul 2010
Posts: 17
Received Thanks: 0
Quote:
Originally Posted by neuronet View Post
if it still tries to search mobs in battle phase the pointer for "CombatInProcess" is invalid.. This usually shows the following:
0 = out of Battle
1 = normal Battle
2 = Skirmish Battle
can anyone help me share pointer CombatInProcess for AOInd, thanks before
nirwantowawa is offline  
Old 02/18/2012, 09:26   #1151
 
elite*gold: 0
Join Date: Sep 2010
Posts: 63
Received Thanks: 2
Is there a new bot version cause mine doesn't work anymore... Please post some link if someone have, Thanks...
comp123 is offline  
Old 02/19/2012, 01:57   #1152
 
elite*gold: 0
Join Date: Jan 2012
Posts: 32
Received Thanks: 0
Quote:
Originally Posted by comp123 View Post
Is there a new bot version cause mine doesn't work anymore... Please post some link if someone have, Thanks...
yea the same problem
Pawelek6 is offline  
Old 02/19/2012, 03:52   #1153
 
elite*gold: 0
Join Date: Feb 2012
Posts: 1
Received Thanks: 0
how "safe" is it to enable CE to become abit speedy ? ^_^
dwrg is offline  
Old 02/20/2012, 02:15   #1154
 
elite*gold: 0
Join Date: Dec 2011
Posts: 7
Received Thanks: 5
Quote:
Originally Posted by nirwantowawa View Post
can anyone help me share pointer CombatInProcess for AOInd, thanks before
SHARE??? in your dream!!!! first i want to share it to you but when i see your avatar, i know what kind person u are.. u want to use this bot and use that edited picture to safe your own char what the hell!!!!

if you want to use something you must take the responsible yourself don't use someone else character!!!

don't be a person who no skill, no effort , no responsibility, no hope

sorry for this chat, because i really hate person who run away and make the blame to other person
Voredare is offline  
Thanks
1 User
Old 02/20/2012, 21:24   #1155
 
elite*gold: 0
Join Date: Feb 2012
Posts: 13
Received Thanks: 1
Good day.

Can somebody tell me, what should i change in code, to use it in dungeons with roof? Where zoom doesn't help. (Louyang Prison Skirmish, Detroit Underground etc)

I think i need to change camera angle.

Thank you.
deruku is offline  
Closed Thread


Similar Threads Similar Threads
ts2 autogrinder mobfinder
09/01/2012 - 12Sky2 Hacks, Bots, Cheats & Exploits - 5 Replies
hi. this program can grind automatic, video only showing mob finder for cave of darkness. teleporting and selecting mob and kill. select doing withless mouse http://www.youtube.com/watch?v=hNjKuNnnbKs



All times are GMT +2. The time now is 18:21.


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.