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 


Making a variable scanner in VB
Goto page 1, 2  Next
 
Post new topic   This topic is locked: you cannot edit posts or make replies.    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
MaximuS
I post too much
Reputation: 3

Joined: 05 Apr 2007
Posts: 3212
Location: ......

PostPosted: Sat Mar 15, 2008 3:57 pm    Post subject: Making a variable scanner in VB Reply with quote

well i made one in C# and wondering how to do it in Visual Basic
Back to top
View user's profile Send private message MSN Messenger
Pseudo Xero
I post too much
Reputation: 0

Joined: 16 Feb 2007
Posts: 2607

PostPosted: Sat Mar 15, 2008 4:07 pm    Post subject: Re: Making a variable scanner in VB Reply with quote

genson0 wrote:
well i made one in C# and wondering how to do it in Visual Basic

If you actually wrote it yourself in C# you would know how to do it in VB.

_________________
haxory' wrote:
can't VB do anything??
windows is programmed using VB right? correct me if im wrong.

so all things in windows you have like the start menu is a windows form too.
Back to top
View user's profile Send private message
MaximuS
I post too much
Reputation: 3

Joined: 05 Apr 2007
Posts: 3212
Location: ......

PostPosted: Sat Mar 15, 2008 4:15 pm    Post subject: Reply with quote

well C# and VB are completely diffrent
Back to top
View user's profile Send private message MSN Messenger
Blader
I post too much
Reputation: 2

Joined: 19 Jan 2007
Posts: 2049

PostPosted: Sat Mar 15, 2008 4:58 pm    Post subject: Reply with quote

Well what method did you use in C#?
_________________
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Sat Mar 15, 2008 5:11 pm    Post subject: Reply with quote

genson0 wrote:
well C# and VB are completely diffrent


It's just minor syntax differences pretty much, they are both practically identical outside of that.
Back to top
View user's profile Send private message
Pseudo Xero
I post too much
Reputation: 0

Joined: 16 Feb 2007
Posts: 2607

PostPosted: Sat Mar 15, 2008 5:59 pm    Post subject: Reply with quote

genson0 wrote:
well C# and VB are completely diffrent

No, they aren't.

_________________
haxory' wrote:
can't VB do anything??
windows is programmed using VB right? correct me if im wrong.

so all things in windows you have like the start menu is a windows form too.
Back to top
View user's profile Send private message
MaximuS
I post too much
Reputation: 3

Joined: 05 Apr 2007
Posts: 3212
Location: ......

PostPosted: Sat Mar 15, 2008 6:06 pm    Post subject: Reply with quote

prove it then
Back to top
View user's profile Send private message MSN Messenger
Pepsiguy
I post too much
Reputation: 0

Joined: 16 Aug 2007
Posts: 2016

PostPosted: Sat Mar 15, 2008 6:25 pm    Post subject: Reply with quote

ok shtu up genson we want to do this in vb6, and this is what Blader said to me:

didn't really make a variable scanner, all I did was read from a text file, split each line, and use the get variable function to see which were real


Can you tell us how?

_________________
Back to top
View user's profile Send private message
Pseudo Xero
I post too much
Reputation: 0

Joined: 16 Feb 2007
Posts: 2607

PostPosted: Sat Mar 15, 2008 6:38 pm    Post subject: Reply with quote

pepsiguy_2 wrote:
ok shtu up genson we want to do this in vb6, and this is what Blader said to me:

didn't really make a variable scanner, all I did was read from a text file, split each line, and use the get variable function to see which were real


Can you tell us how?

It's an incredibly simple brute-forcing method.
You just have a simple text file like this:
Code:
health
gold
money

You read each line, and use GetVariable to see if the line is a valid variable.

_________________
haxory' wrote:
can't VB do anything??
windows is programmed using VB right? correct me if im wrong.

so all things in windows you have like the start menu is a windows form too.
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Sat Mar 15, 2008 6:42 pm    Post subject: Reply with quote

genson0 wrote:
prove it then


http://labs.developerfusion.co.uk/convert/csharp-to-vb.aspx

C# and VB.net (keyword here) are so similar, they can be converted between each other easily.

VB6 isn't exactly worlds away from VB.net either... for the most part.
Back to top
View user's profile Send private message
Pepsiguy
I post too much
Reputation: 0

Joined: 16 Aug 2007
Posts: 2016

PostPosted: Sat Mar 15, 2008 6:47 pm    Post subject: Reply with quote

Xenophobe wrote:
pepsiguy_2 wrote:
ok shtu up genson we want to do this in vb6, and this is what Blader said to me:

didn't really make a variable scanner, all I did was read from a text file, split each line, and use the get variable function to see which were real


Can you tell us how?

It's an incredibly simple brute-forcing method.
You just have a simple text file like this:
Code:
health
gold
money

You read each line, and use GetVariable to see if the line is a valid variable.


Well thats the problem, i know how to do get variable but i dont get how to know how to see if each line is valid

_________________
Back to top
View user's profile Send private message
Pseudo Xero
I post too much
Reputation: 0

Joined: 16 Feb 2007
Posts: 2607

PostPosted: Sat Mar 15, 2008 6:50 pm    Post subject: Reply with quote

pepsiguy_2 wrote:
Xenophobe wrote:
pepsiguy_2 wrote:
ok shtu up genson we want to do this in vb6, and this is what Blader said to me:

didn't really make a variable scanner, all I did was read from a text file, split each line, and use the get variable function to see which were real


Can you tell us how?

It's an incredibly simple brute-forcing method.
You just have a simple text file like this:
Code:
health
gold
money

You read each line, and use GetVariable to see if the line is a valid variable.


Well thats the problem, i know how to do get variable but i dont get how to know how to see if each line is valid

Read each line using a loop, and inside the loop use GetVariable to see if the returned line is valid.

_________________
haxory' wrote:
can't VB do anything??
windows is programmed using VB right? correct me if im wrong.

so all things in windows you have like the start menu is a windows form too.
Back to top
View user's profile Send private message
Pepsiguy
I post too much
Reputation: 0

Joined: 16 Aug 2007
Posts: 2016

PostPosted: Sat Mar 15, 2008 7:11 pm    Post subject: Reply with quote

gimme the code im a beginner jeez
_________________
Back to top
View user's profile Send private message
Pepsiguy
I post too much
Reputation: 0

Joined: 16 Aug 2007
Posts: 2016

PostPosted: Sat Mar 15, 2008 7:11 pm    Post subject: Reply with quote

gimme the code im a beginner jeez
_________________
Back to top
View user's profile Send private message
MaximuS
I post too much
Reputation: 3

Joined: 05 Apr 2007
Posts: 3212
Location: ......

PostPosted: Sat Mar 15, 2008 7:43 pm    Post subject: Reply with quote

D>D>Double Post

we need the code xene
Back to top
View user's profile Send private message MSN Messenger
Display posts from previous:   
Post new topic   This topic is locked: you cannot edit posts or make replies.    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