Priston Tale 2 Bypass nProt GG

05/09/2009 22:17 Landa#1
I've been debuging it but i can't find a way to bypass it, since pt2.exe won't start without firing the pt2start first and the pt2.exe has a block against debuggers i don't really know how to get it to work.

I am trying to bypass it to use autoit with pt2...

a little of my effort from autoit from the bot i am making:
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 :(

huh..still waiting ,-)
05/15/2009 19:47 Adroxxx#2
There are a few plugins for olly to bypass anti-debugger protection. Like HideDebugger and other.

Then try to find the line where gg is loaded and nop it or overjump it. If you start the game without the launcher, there should come a error message, search for it and the place where it were checked, if the launcher starts the game and nop / jmp it.

gl.