View previous topic :: View next topic |
Author |
Message |
TheStealthMan How do I cheat?
Reputation: 0
Joined: 17 Sep 2009 Posts: 7
|
Posted: Tue Nov 17, 2009 1:13 am Post subject: [HELP] VB.NET pointer |
|
|
Hi.
How i can code the multi level pointer ???
and yes i know how to code simple pointer .
but how for this one ??
EDIT : ok i got a simple pointer. ac_client.exe+000E0A50 but what i do with ac_client.exe+ in vb ??
thanks
Description: |
|
Filesize: |
53.28 KB |
Viewed: |
12308 Time(s) |

|
|
|
Back to top |
|
 |
TheStealthMan How do I cheat?
Reputation: 0
Joined: 17 Sep 2009 Posts: 7
|
Posted: Wed Nov 18, 2009 4:37 am Post subject: |
|
|
up please
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25796 Location: The netherlands
|
Posted: Wed Nov 18, 2009 8:51 am Post subject: |
|
|
enumerate all modules and look for ac_client.exe , get the base address and add 000E0A50 to it.
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
TheStealthMan How do I cheat?
Reputation: 0
Joined: 17 Sep 2009 Posts: 7
|
Posted: Wed Nov 18, 2009 3:22 pm Post subject: |
|
|
Dark Byte wrote: | enumerate all modules and look for ac_client.exe , get the base address and add 000E0A50 to it. |
ok thanks.
i know how for base address.
what do you mean by " enumerate all module " ?
thank again
|
|
Back to top |
|
 |
NoMercy Master Cheater
Reputation: 1
Joined: 09 Feb 2009 Posts: 289
|
Posted: Wed Nov 18, 2009 3:49 pm Post subject: |
|
|
well in C its
Code: | enim x = { cheatnegine = 10 , baseadress = 12} |
like that, idk how its in VB
|
|
Back to top |
|
 |
iPromise Grandmaster Cheater
Reputation: -1
Joined: 27 Jun 2009 Posts: 529 Location: Canada
|
Posted: Wed Nov 18, 2009 8:47 pm Post subject: |
|
|
Yes, I know. VB is a weak language, that is why I moved to C++.
Open Calculator, switch to scientific, switch to HEX and put your address, then go to Dec. and find your number. This number is your HEX but in integers.
This is what you want to do to put the address:
Code: |
Dim Address As Long = YourIntegerForYourAddress
|
So if you want to use WriteProcessMemory, etc, just use the variable Address.
I hope I answered your question.
|
|
Back to top |
|
 |
TheStealthMan How do I cheat?
Reputation: 0
Joined: 17 Sep 2009 Posts: 7
|
Posted: Wed Nov 18, 2009 8:57 pm Post subject: |
|
|
ok thanks yes that help me alot.
but obviously im too buzzy at the moment to understand anything lol.
anyway
thank for ur help
|
|
Back to top |
|
 |
iPromise Grandmaster Cheater
Reputation: -1
Joined: 27 Jun 2009 Posts: 529 Location: Canada
|
Posted: Thu Nov 19, 2009 6:46 pm Post subject: |
|
|
What I did is first convert the hexadecimal address to integers, then use this integer and place it in my variable "Address". So whenever I want to refer to this address, I use my variable.
Well, thats what I do and it works.
|
|
Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Thu Nov 19, 2009 8:33 pm Post subject: |
|
|
iPromise wrote: | What I did is first convert the hexadecimal address to integers, then use this integer and place it in my variable "Address". So whenever I want to refer to this address, I use my variable.
Well, thats what I do and it works. |
so, you converted a number to the same number?
|
|
Back to top |
|
 |
iPromise Grandmaster Cheater
Reputation: -1
Joined: 27 Jun 2009 Posts: 529 Location: Canada
|
Posted: Thu Nov 19, 2009 10:03 pm Post subject: |
|
|
See, Visual Basic for some gay reason wont be compatable with hexadecimal addresses (like using a hexadecimal address for writeprocessmemory, etc.) , so the only solution around this is to turn the hexadecimal integer to a decimal integer.
|
|
Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Thu Nov 19, 2009 10:13 pm Post subject: |
|
|
no, i just believe you are very confused good sir.
just prefix it with &H you dope
|
|
Back to top |
|
 |
TheStealthMan How do I cheat?
Reputation: 0
Joined: 17 Sep 2009 Posts: 7
|
Posted: Thu Nov 19, 2009 11:57 pm Post subject: |
|
|
slovach is right.
that why when we use ismple pointer , the offset is always &H128 or &H364 or antthing &H***.
so thats why i dont understand your thing about hex and integer.
|
|
Back to top |
|
 |
iPromise Grandmaster Cheater
Reputation: -1
Joined: 27 Jun 2009 Posts: 529 Location: Canada
|
Posted: Fri Nov 20, 2009 3:53 pm Post subject: |
|
|
I'm talking about Visual Basic.NET
The &H prefix isn't recognized in VB.NET so you wont be able to do for example:
If you try:
It also wont be compatiable with VB.NET, just stick to my method.
In Visual Basic 6.0 it differs.
|
|
Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Fri Nov 20, 2009 4:40 pm Post subject: |
|
|
iPromise wrote: | I'm talking about Visual Basic.NET
The &H prefix isn't recognized in VB.NET so you wont be able to do for example: |
yes, it is.
0x12345678 = 305,419,896
they are the same number.
|
|
Back to top |
|
 |
iPromise Grandmaster Cheater
Reputation: -1
Joined: 27 Jun 2009 Posts: 529 Location: Canada
|
Posted: Fri Nov 20, 2009 5:04 pm Post subject: |
|
|
Go try it yourself sir, I cant explain myself better.
Also
Quote: |
EDIT : ok i got a simple pointer. ac_client.exe+000E0A50 but what i do with ac_client.exe+ in vb
|
Get the base address of ac_client.exe and then add 000E0A50 to it
|
|
Back to top |
|
 |
|