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 


Skate4lifee's auto typer (made in vb.net)

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
TheIndianGuy
Advanced Cheater
Reputation: 102

Joined: 14 Jan 2007
Posts: 88

PostPosted: Fri Jul 27, 2007 12:32 am    Post subject: Skate4lifee's auto typer (made in vb.net) Reply with quote

You need the .net framework otherwise this program and future programs i make will NOT run on your computer. please do give feedback.


The Extension 'rar' was deactivated by an board admin, therefore this Attachment is not displayed.


untitled.JPG
 Description:
 Filesize:  80.99 KB
 Viewed:  7547 Time(s)

untitled.JPG




Last edited by TheIndianGuy on Fri Jul 27, 2007 12:46 pm; edited 4 times in total
Back to top
View user's profile Send private message
appalsap
Moderator
Reputation: 0

Joined: 27 Apr 2006
Posts: 6753
Location: Pakistan

PostPosted: Fri Jul 27, 2007 12:39 am    Post subject: Reply with quote

you should be warned for this and have your topic locked- absolutely No source code!
Back to top
View user's profile Send private message
TheIndianGuy
Advanced Cheater
Reputation: 102

Joined: 14 Jan 2007
Posts: 88

PostPosted: Fri Jul 27, 2007 12:41 am    Post subject: Reply with quote

im sorry i didnt know i was saposed to give source code as well shall i do that right now?
Back to top
View user's profile Send private message
appalsap
Moderator
Reputation: 0

Joined: 27 Apr 2006
Posts: 6753
Location: Pakistan

PostPosted: Fri Jul 27, 2007 12:46 am    Post subject: Reply with quote

this is the GENERAL PROGRAMMING SECTION. people are here to STUDY SOURCE CODE. what are we supposed to do with a BINARY? that would go in the CRACKME section.
Back to top
View user's profile Send private message
TheIndianGuy
Advanced Cheater
Reputation: 102

Joined: 14 Jan 2007
Posts: 88

PostPosted: Fri Jul 27, 2007 12:50 am    Post subject: Reply with quote

fixed
Back to top
View user's profile Send private message
Simsgy
Grandmaster Cheater
Reputation: 0

Joined: 07 May 2007
Posts: 581
Location: My new avatar <3

PostPosted: Fri Jul 27, 2007 1:21 am    Post subject: Reply with quote

Nice work.
I liked it.

_________________

Designer, WebMaster and a Delphi programmer.
TrPlayer, my biggest Delphi project hosted on SourceForge.net
Back to top
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger
TheIndianGuy
Advanced Cheater
Reputation: 102

Joined: 14 Jan 2007
Posts: 88

PostPosted: Fri Jul 27, 2007 1:22 am    Post subject: Reply with quote

Simsgy wrote:
Nice work.
I liked it.


thank you =D thats what makes it all worth while =P

*FIXED* forgot to change the about box's Text Name im going to do that right now *FIXED*


Last edited by TheIndianGuy on Fri Jul 27, 2007 1:28 am; edited 2 times in total
Back to top
View user's profile Send private message
the_undead
Expert Cheater
Reputation: 1

Joined: 12 Nov 2006
Posts: 235
Location: Johannesburg, South Africa

PostPosted: Fri Jul 27, 2007 1:23 am    Post subject: Reply with quote

not to mention its vb
_________________
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
Symbol
I'm a spammer
Reputation: 0

Joined: 18 Apr 2007
Posts: 5094
Location: Israel.

PostPosted: Fri Jul 27, 2007 1:26 am    Post subject: Reply with quote

nice
is this seconds or milliseconds?
i cant download this attachment have been deleted >.<
and fix the caption of the AboutBox1 lol...


Last edited by Symbol on Fri Jul 27, 2007 1:28 am; edited 1 time in total
Back to top
View user's profile Send private message
TheIndianGuy
Advanced Cheater
Reputation: 102

Joined: 14 Jan 2007
Posts: 88

PostPosted: Fri Jul 27, 2007 1:27 am    Post subject: Reply with quote

its in seconds thats why i made a label named seconds, and it does exactly what its named its an auto typer you put in how many seconds in between each time you type and you put in the message you want to type. i made it for my little brother to help him sell and buy stuff on runescape (my 100th post Very Happy )

Last edited by TheIndianGuy on Fri Jul 27, 2007 1:29 am; edited 1 time in total
Back to top
View user's profile Send private message
Symbol
I'm a spammer
Reputation: 0

Joined: 18 Apr 2007
Posts: 5094
Location: Israel.

PostPosted: Fri Jul 27, 2007 1:28 am    Post subject: Reply with quote

can u make it press return say something and press return again? (enter...)

oh it types every x seconds i choose?


Last edited by Symbol on Fri Jul 27, 2007 1:31 am; edited 1 time in total
Back to top
View user's profile Send private message
TheIndianGuy
Advanced Cheater
Reputation: 102

Joined: 14 Jan 2007
Posts: 88

PostPosted: Fri Jul 27, 2007 1:30 am    Post subject: Reply with quote

oh yeah it hits enter/return automatically of course otherwise it wouldn't be very useful now would it? but i only made it so you can say 1 message at a time until you hit the stop button then you can type in a new message to say

hehe my media player isn't as big as a hit oh well at least you guys like one of my programs. =P

i was going to make up some icon and add it to the top left corner of the about box but i cant think of anything =p

Download should be working now Symbol i had to edit it so i could fix the AboutBox1 heh
Back to top
View user's profile Send private message
samuri25404
Grandmaster Cheater
Reputation: 7

Joined: 04 May 2007
Posts: 955
Location: Why do you care?

PostPosted: Fri Jul 27, 2007 1:43 pm    Post subject: Reply with quote

That doesn't seem hard at all in C#...

Code:

string a = textBox1.Text; //What to type
int b = int.Parse(textBox2.Text); //How long between
b = b * 1000;

while (1==1)
{
SendKeys.SendWait(a);
System.Thread.Threading.Sleep(b); //I believe that's how you do sleep,
//I'll have to check
}


Or, if you want a start/stop button, set a bool, and when the button is clicked:

Code:

bool Run = false;

//On button click (I don't really remember how this goes)
{
if (Run == false)
{
Run = true;
button1.Text = "Stop";
}
else
{
Run = false;
button1.Text = "Start";
}

string a = textBox1.Text; //What to type
int b = int.Parse(textBox2.Text); //How long between
b = b * 1000;

while (Run)
{
SendKeys.SendWait(a);
System.Thread.Threading.Sleep(b);
}


Though there could be some possible errors with the "While (Run)" command.

What did you program this in, btw?

Edit:

What did you have in the file menu? The about thing is really easy in C# too.

Code:

Form abt = new About(); //abt is a variable, About is the name of your
//form
abt.Show();


Edit Again:

I'm not sure if there is a problem with the

While(Run) thing, but if there is, you could cope with it by using a loop, and another text box, asking how many times to loop.

Add this to your code:

Code:

int d = int.Parse(textBox3.Text); //How many times to loop

While (d > 0)
{
//Do the stuff and add the line below:
d = d - 1;
}
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Page 1 of 1

 
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