Priston Tale 2 AutoIT bot bypass GG ?

04/29/2009 06:04 namedrisk#1
Hi,

i am doing a bot for PT2 using AutoIT and i would like to know if anyone could help me out on how to get the autoit to work in pt bypassing the GG...

What the bot has functional at this momment is that it will auto target monsters and check the name, and health.

Engage the attack, you can setup personalized skill for the fight, and it will pickup once it dies.

It does use potions based on a percent setup by you i.e 20%, 50% and it will use health potions or mana.

If someone could teach or show me how to bypass the GG i would be pleased to release my code to everyone.
04/29/2009 07:28 Adroxxx#2
Sorry dude but it's not possible to bypass gg only with autoit.
What you need is a debugger, like ollydbg. And you need a lot of skill.
04/29/2009 19:13 powerfear#3
Wrong it is possible to bypass GG with AutoIT in fact, but as Androxxx said you need a debugger like OllyDBG with it you need to find the adress on the game client that load the GameGuard near that adress you should see a "je (adress)" just change it to "jmp (adress)" you can make a AutoIT script to make that adress change. To find the adress you need some skill with debugger tough you could always try to ask somoene to teach you how to find it or to make it for you...

And my-self im making a bot in AutoIt for another game could you PM me your script i want to check out how you made it.
04/29/2009 19:30 Adroxxx#4
Quote:
Originally Posted by Adroxxx View Post
Sorry dude but it's not possible to bypass gg only with autoit.
What you need is a debugger, like ollydbg. And you need a lot of skill.
kkthxbye.
next time read my post plx.
04/30/2009 02:16 namedrisk#5
thanks for the information i got olly and i will see if i can find it :) i will post back any information i got regarding it...
04/30/2009 07:02 Adroxxx#6
And btw. it's not all times so simple. GG is different to bypass in each game. In a few games you must only patch the jumps, in other games you have to do a lot of work more.
04/30/2009 08:43 Landa#7
im interested in bypassing HackShield too.. i have skills with cheatengine and autoit... i would help to bypass it.. it would really be funny to hack priston tale2. if someone has something to do for me, that would help to bypass hackshield..let it me know
05/09/2009 00:39 namedrisk#8
I've been debuging it but i can't find the je :(

a little of my effort from autoit:
Code:
    $MobHP = PixelSearch(735,35,916,36,0xFFA42D,60)
	If Not @error Then ;If pixel has been found to $coord
		If $MobHP[0] > 734 And $MobHP[0] < 755 Then
			$Percent = '100%'
			ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
		ElseIf $MobHP[0] > 754 And $MobHP[0] < 775 Then
			$Percent = '80%'
			ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
		ElseIf $MobHP[0] > 774 And $MobHP[0] < 795 Then
			$Percent = '60%'
			ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
		ElseIf $MobHP[0] > 794 And $MobHP[0] < 815 Then
			$Percent = '50%'
			ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
		ElseIf $MobHP[0] > 814 And $MobHP[0] < 835 Then
			$Percent = '40%'
			ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
		ElseIf $MobHP[0] > 834 And $MobHP[0] < 855 Then
			$Percent = '30%'
			ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
		ElseIf $MobHP[0] > 854 And $MobHP[0] < 875 Then
			$Percent = '20%'
			ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
		ElseIf $MobHP[0] > 874 And $MobHP[0] < 895 Then
			$Percent = '10%'
			ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
		ElseIf $MobHP[0] > 894 And $MobHP[0] < 914 Then
			$Percent = '1%'
			ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
		Else
		    ToolTip("Target is dead!",0,0)
			$pickup = '1'
		EndIf
		InitAttack()
    EndIf
if anyone around could teach me how to bypass the gameguard i would love to share my code first hand...

right now i am developing it using screenshots since i cannot test it online :(