Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


[HELP] VB.NET pointer
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
TheStealthMan
How do I cheat?
Reputation: 0

Joined: 17 Sep 2009
Posts: 7

PostPosted: Tue Nov 17, 2009 1:13 am    Post subject: [HELP] VB.NET pointer Reply with quote

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



95quqh.jpg
 Description:
 Filesize:  53.28 KB
 Viewed:  12314 Time(s)

95quqh.jpg


Back to top
View user's profile Send private message
TheStealthMan
How do I cheat?
Reputation: 0

Joined: 17 Sep 2009
Posts: 7

PostPosted: Wed Nov 18, 2009 4:37 am    Post subject: Reply with quote

up please
Back to top
View user's profile Send private message
Dark Byte
Site Admin
Reputation: 470

Joined: 09 May 2003
Posts: 25796
Location: The netherlands

PostPosted: Wed Nov 18, 2009 8:51 am    Post subject: Reply with quote

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
View user's profile Send private message MSN Messenger
TheStealthMan
How do I cheat?
Reputation: 0

Joined: 17 Sep 2009
Posts: 7

PostPosted: Wed Nov 18, 2009 3:22 pm    Post subject: Reply with quote

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
View user's profile Send private message
NoMercy
Master Cheater
Reputation: 1

Joined: 09 Feb 2009
Posts: 289

PostPosted: Wed Nov 18, 2009 3:49 pm    Post subject: Reply with quote

well in C its

Code:
enim x = { cheatnegine = 10 , baseadress = 12}


like that, idk how its in VB
Back to top
View user's profile Send private message
iPromise
Grandmaster Cheater
Reputation: -1

Joined: 27 Jun 2009
Posts: 529
Location: Canada

PostPosted: Wed Nov 18, 2009 8:47 pm    Post subject: Reply with quote

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
View user's profile Send private message MSN Messenger
TheStealthMan
How do I cheat?
Reputation: 0

Joined: 17 Sep 2009
Posts: 7

PostPosted: Wed Nov 18, 2009 8:57 pm    Post subject: Reply with quote

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
View user's profile Send private message
iPromise
Grandmaster Cheater
Reputation: -1

Joined: 27 Jun 2009
Posts: 529
Location: Canada

PostPosted: Thu Nov 19, 2009 6:46 pm    Post subject: Reply with quote

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
View user's profile Send private message MSN Messenger
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Thu Nov 19, 2009 8:33 pm    Post subject: Reply with quote

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
View user's profile Send private message
iPromise
Grandmaster Cheater
Reputation: -1

Joined: 27 Jun 2009
Posts: 529
Location: Canada

PostPosted: Thu Nov 19, 2009 10:03 pm    Post subject: Reply with quote

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
View user's profile Send private message MSN Messenger
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Thu Nov 19, 2009 10:13 pm    Post subject: Reply with quote

no, i just believe you are very confused good sir.

just prefix it with &H you dope
Back to top
View user's profile Send private message
TheStealthMan
How do I cheat?
Reputation: 0

Joined: 17 Sep 2009
Posts: 7

PostPosted: Thu Nov 19, 2009 11:57 pm    Post subject: Reply with quote

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
View user's profile Send private message
iPromise
Grandmaster Cheater
Reputation: -1

Joined: 27 Jun 2009
Posts: 529
Location: Canada

PostPosted: Fri Nov 20, 2009 3:53 pm    Post subject: Reply with quote

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:

Code:

&H123456


If you try:

Code:

Hex(123456)


It also wont be compatiable with VB.NET, just stick to my method.

In Visual Basic 6.0 it differs.
Back to top
View user's profile Send private message MSN Messenger
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Fri Nov 20, 2009 4:40 pm    Post subject: Reply with quote

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
View user's profile Send private message
iPromise
Grandmaster Cheater
Reputation: -1

Joined: 27 Jun 2009
Posts: 529
Location: Canada

PostPosted: Fri Nov 20, 2009 5:04 pm    Post subject: Reply with quote

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 Smile
Back to top
View user's profile Send private message MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites