Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > AutoIt
You last visited: Yesterday at 23:59

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

Advertisement



[Help]How To Metin2 Autoİt Pointer+Ofset1+Ofset2

Discussion on [Help]How To Metin2 Autoİt Pointer+Ofset1+Ofset2 within the AutoIt forum part of the Coders Den category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Feb 2014
Posts: 152
Received Thanks: 407
[Help]How To Metin2 Autoİt Pointer+Ofset1+Ofset2

How can I cheat on them Please source code


speed Hack
point : 00C2B910
Ofset1: c
Ofset2 :686
Normal value 16256
hack value 16300
x-Qey is offline  
Old 04/05/2014, 22:22   #2
 
alpines's Avatar
 
elite*gold: 60
Join Date: Aug 2009
Posts: 2,256
Received Thanks: 815
Wut? How about asking correctly instead of violating the english language?
alpines is offline  
Thanks
2 Users
Old 04/05/2014, 22:51   #3
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,609
Received Thanks: 1,596
Quote:
Originally Posted by x-Qey View Post
How can I cheat on them Please source code


speed Hack
point : 00C2B910
Ofset1: c
Ofset2 :686
Normal value 16256
hack value 16300
Code:
#RequireAdmin
#include <Pointer.au3>

$PID = ProcessExists("Prozessname.exe");PUT THE PROCESSNAME HERE;
if $PID <> 0 then
$MemOpen = _MemoryOpen($PID)
$Base = _MemoryGetBaseAddress($MemOpen)
$Addr = $Base + 0xC2B910
$Offset[2] = [0xC, 0x686]
$Modified_Value = 16300
else
msgbox(16,"ERROR","Game not found..")
exit
endif

_Calc_Pointer()

$value = _MemoryRead($Addr,$MemOpen,"DWORD")
;MsgBox(0,"Value","Value: " & $value);
_MemoryWrite($Addr, $MemOpen, $Modified_Value, "DWORD")
Exit


Func _Calc_Pointer()
$i = 0
do
$Addr = _MemoryRead($Addr, $MemOpen) + $Offset[$i]
$i = $i + 1
until $i = UBound($Offset)
EndFunc
..
Paraly is offline  
Thanks
1 User
Old 04/06/2014, 11:41   #4
 
elite*gold: 0
Join Date: Apr 2013
Posts: 32
Received Thanks: 55
"Prozessname.exe" this example "metin2client.bin" does not accept help me ?
This is problem :
IrcRest28 is offline  
Old 04/06/2014, 11:57   #5
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,609
Received Thanks: 1,596
Try this
Code:
#RequireAdmin
#include <Pointer.au3>
SetPrivilege("SeDebugPrivilege", 1)

Global $PID, $Addr, $Base, $MemOpen

$PID = WinGetProcess("METIN2")
if $PID <> -1 then
$MemOpen = _MemoryOpen($PID)
$Base = _MemoryGetBaseAddress($MemOpen)
else
msgbox(16,"ERROR","Game not found..")
exit
endif

$Addr = $Base + 0xC2B910
Dim $Offset[2] = [0xC, 0x686]
$Modified_Value = 16300




_Calc_Pointer()

$value = _MemoryRead($Addr,$MemOpen,"DWORD")
;MsgBox(0,"Value","Value: " & $value);
_MemoryWrite($Addr, $MemOpen, $Modified_Value, "DWORD")
_MemoryClose($MemOpen)
Exit


Func _Calc_Pointer()
$i = 0
do
$Addr = _MemoryRead($Addr, $MemOpen) + $Offset[$i]
$i = $i + 1
until $i = UBound($Offset)
EndFunc
Paraly is offline  
Thanks
2 Users
Old 04/06/2014, 13:24   #6
 
elite*gold: 0
Join Date: Apr 2013
Posts: 32
Received Thanks: 55
Quote:
Originally Posted by Paraly View Post
Try this
Code:
#RequireAdmin
#include <Pointer.au3>
SetPrivilege("SeDebugPrivilege", 1)

Global $PID, $Addr, $Base, $MemOpen

$PID = WinGetProcess("METIN2")
if $PID <> -1 then
$MemOpen = _MemoryOpen($PID)
$Base = _MemoryGetBaseAddress($MemOpen)
else
msgbox(16,"ERROR","Game not found..")
exit
endif

$Addr = $Base + 0xC2B910
Dim $Offset[2] = [0xC, 0x686]
$Modified_Value = 16300




_Calc_Pointer()

$value = _MemoryRead($Addr,$MemOpen,"DWORD")
;MsgBox(0,"Value","Value: " & $value);
_MemoryWrite($Addr, $MemOpen, $Modified_Value, "DWORD")
_MemoryClose($MemOpen)
Exit


Func _Calc_Pointer()
$i = 0
do
$Addr = _MemoryRead($Addr, $MemOpen) + $Offset[$i]
$i = $i + 1
until $i = UBound($Offset)
EndFunc
Game does not work hack for this When opened the game shuts memory
IrcRest28 is offline  
Old 04/06/2014, 14:37   #7
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,609
Received Thanks: 1,596
Quote:
Originally Posted by IrcRest28 View Post
Game does not work hack for this When opened the game shuts memory
What? Maybe you should try to use special characters..

does it work for you x-Qey?
Paraly is offline  
Thanks
1 User
Old 04/06/2014, 14:57   #8
 
elite*gold: 0
Join Date: Feb 2014
Posts: 152
Received Thanks: 407
Quote:
Originally Posted by Paraly View Post
What? Maybe you should try to use special characters..

does it work for you x-Qey?
?????

x-Qey is offline  
Old 04/06/2014, 15:11   #9
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,609
Received Thanks: 1,596
you don't have to change anything in the code, it will pick the ProcessID by windowtitle and the title of Metin 2 should be "METIN2" so everything is right just copy paste the code and run it

PHP Code:
#RequireAdmin
#include <Pointer.au3>
SetPrivilege("SeDebugPrivilege"1)

Global 
$PID$Addr$Base$MemOpen

$PID 
WinGetProcess("METIN2")
if 
$PID <> -1 then
$MemOpen 
_MemoryOpen($PID)
$Base _MemoryGetBaseAddress($MemOpen)
else
msgbox(16,"ERROR","Game not found..")
exit
endif

$Addr $Base 0xC2B910
Dim $Offset
[2] = [0xC0x686]
$Modified_Value 16300




_Calc_Pointer
()

$value _MemoryRead($Addr,$MemOpen,"DWORD")
;
MsgBox(0,"Value","Value: " $value);
_MemoryWrite($Addr$MemOpen$Modified_Value"DWORD")
_MemoryClose($MemOpen)
Exit


Func _Calc_Pointer()
$i 0
do
$Addr _MemoryRead($Addr$MemOpen) + $Offset[$i]
$i $i 1
until $i 
UBound($Offset)
EndFunc 
if it still does not work use this..

PHP Code:
#RequireAdmin
#include <Pointer.au3>
SetPrivilege("SeDebugPrivilege"1)

Global 
$PID$Addr$Base$MemOpen

$PID 
ProcessExists("febris.bin")
if 
$PID <> 0 then
$MemOpen 
_MemoryOpen($PID)
$Base _MemoryGetBaseAddress($MemOpen)
else
msgbox(16,"ERROR","Game not found..")
exit
endif

$Addr $Base 0xC2B910
Dim $Offset
[2] = [0xC0x686]
$Modified_Value 16300




_Calc_Pointer
()

$value _MemoryRead($Addr,$MemOpen,"DWORD")
;
MsgBox(0,"Value","Value: " $value);
_MemoryWrite($Addr$MemOpen$Modified_Value"DWORD")
Exit


Func _Calc_Pointer()
$i 0
do
$Addr _MemoryRead($Addr$MemOpen) + $Offset[$i]
$i $i 1
until $i 
UBound($Offset)
EndFunc 
Paraly is offline  
Thanks
1 User
Reply


Similar Threads Similar Threads
[Release/Offer] Daylight (Auto-Sync + Auto-Pointer) - Multihack
04/12/2013 - Guild Wars 2 Trading - 1 Replies
#Edit auf Wunsch vom netten Moderator.. ;)
Frage: Wie findet man zB UG Pointer?Speed pointer?
03/30/2010 - Kal Online - 2 Replies
kann mir einer sagen wie man UG/Speed pointer finden kann usw^^´ß#



All times are GMT +1. The time now is 00:00.


Powered by vBulletin®
Copyright ©2000 - 2026, 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 ©2026 elitepvpers All Rights Reserved.