![]() |
[ask] Making an Autopot in general
Sorry for making a thread for other game here, but since I only know people from this section, please let me ask about it here, it could be useful too for starters :handsdown:
I'm trying to make an autopot for Ran Online, maybe some of you also play it and have any resources for it to begin with, please share :handsdown: . I used MHS coz CheatEngine is detected by the gameguard, is there any tool for changing its md5 file identity and wintitle like MHS ? So far I can only find hp/maxhp address, but I dunno how to read it using autoit which I'm gonna use for making the autopot. Does every game have a base address and offsets to point a location in memory so an autopot can be made ? I'll post screenshots later for further questions after maintenance is done, please help if anyone visits this thread :handsdown: thanks in advance. if I have this memread, it says 'int' in there, is it integer ? the hp value uses 'short' type which has different value from integer type, do I have to change it or what ? Code:
Func memread($adress, $type = 'dword')This is what it looks like, I searched HP value in short type and got 3 addresses, then I tried to search the pointer of that address range and got 15 results, most tutorial I found on google showed me that step should give me one or fewer result and could be used to determine the pointer, but this gave me 15 results which is confusing. [Only registered and activated users can see links. Click Here To Register...] if I choose [Find out what writes to this address] , which in PW gives HP offset directly, it crashes for this game (must be the game guard), but it gave me something with the assembler thing, is there anything useful in there ? [Only registered and activated users can see links. Click Here To Register...] |
I don't know that game, but I do know this :
Either you have static addresses, or you have structures and thus base address and offsets. Short is a signed 2 byte datatype. Also, you can protect CE from GG's eyes by changing name of kernel driver and making it undetected (there are loads of guides on internet on how to, a bit of Delphi knowladge is recommended though). Maybe if Fyyre is lurking around here, she could give you a hand with GG, she is an epic master in this type of stuff. Cheers |
thanks for the brief explanation, I guess it's structured so it should have base add and offsets, too bad it's GG'ed so can't experiment much on it with my limited knowledge :(
if anyone recognize the game and have any info on it or can give a short step by step base address/pointer searching in general for making a simple tool like autopot, please post it here :handsdown: |
Quote:
[Only registered and activated users can see links. Click Here To Register...] Example: Code:
memread($someAddress, 'USHORT') |
Quote:
(667!!) |
Haha it was kindly donated to me ^_^
No bloody idea what it's for or what to do with it though :confused: Can't be arsed to look it up :D |
I'm curious about that elite gold too, anything with gold interests everyone lol :p
btw, got cheatengine working after hex editing everything in the exe that says 'cheat' and replaced it with 'abcde' , and the debugger crashing wasn't really caused by the publisher's game guarding software, it's the client itself that can detect if a debugger was attached to it. DBVM debugger from CE is really awesome, the [find what writes to this address] is working now though my computer froze after a few minutes the last time I tried it. |
Quote:
CE is a lot more convenient than MHS with these things lol. |
Quote:
|
Quote:
Quote:
a specialized game protection software like GG or HackShield is really powerful (only when it's running :D), I once played an fps game called PointBlank that used HackShield, when I tried to dual login even from another windows account, it could even still detect that the game was already running in my PC, I was like "damn, seriously?" at that time and played normally :p , but a bypass for it was already around now. |
Quote:
Cheers |
I have thought about that but the exe file is packed and has 4 megabytes difference in size from the original.
I won't play multiple chars on this game though, keeping a lot of chars is time consuming, I only need autopotting for this game. I'll try to follow a youtube tutorial later first because it looks like the pointer is multileveled and not an easy task to find like PW which by clicking [find what writes to this address] shows us the offset directly. I'll put screenshots later, plz give a hint on figuring out the pointers/base add. :handsdown: |
You can try tracing the pointer manually. Try setting breakpoints in CE debugger. If it still crashes, change the breakpoint method in settings. If you can set breakpoints, try to read register contents, then search for the addresses in the registers. Rinse and repeat, it's not that hard once you got it figured out.
For example : mov eax, [edx+100] Set bp on this and check what edx register's value is. Now search manually for that. If you have a result, continue. Cheers |
ok thanks for the tips, I'll experiment with it
---edit--- when I clicked [find out what writes to this address], CE gave me this: mov [ecx],ax, before my computer froze and had BSOD bcoz I was using dbvm+kerneldebugger (I guess it's not stable in my pc or just a bug), anyway..what is ax ? it's not listed in the registers here is the ss Spoiler:
I also tried with MHS without using debugger and search pointers manually bcoz this game doesn't like debugger of any kind attached to it, but it's like the pointer never ends :mad: , I could put the address along with multi offsets and it could still point to the correct hp address (tried both in CE and MHS), but it never static Spoiler:
if anyone has the time to look into it, pls advise. |
AX is the lower 16 bits (2 bytes) of the EAX register. Conversely, AH is the upper 16 bits of the EAX register.
The other registers can also be accessed in this way, typically for short integer operations. They are similarly named; BX, CX, DX (lower 16 bits of EBX, ECX and EDX registers respectively). If you don't already have them, it might be worth downloading these for reference: [Only registered and activated users can see links. Click Here To Register...] [Only registered and activated users can see links. Click Here To Register...] |
| All times are GMT +2. The time now is 20:49. |
Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.