| View previous topic :: View next topic |
| Author |
Message |
TheIndianGuy Advanced Cheater
Reputation: 102
Joined: 14 Jan 2007 Posts: 88
|
Posted: Fri Jul 27, 2007 12:32 am Post subject: Skate4lifee's auto typer (made in vb.net) |
|
|
You need the .net framework otherwise this program and future programs i make will NOT run on your computer. please do give feedback.
| Description: |
|
| Filesize: |
80.99 KB |
| Viewed: |
7547 Time(s) |

|
Last edited by TheIndianGuy on Fri Jul 27, 2007 12:46 pm; edited 4 times in total |
|
| Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Fri Jul 27, 2007 12:39 am Post subject: |
|
|
| you should be warned for this and have your topic locked- absolutely No source code!
|
|
| Back to top |
|
 |
TheIndianGuy Advanced Cheater
Reputation: 102
Joined: 14 Jan 2007 Posts: 88
|
Posted: Fri Jul 27, 2007 12:41 am Post subject: |
|
|
| im sorry i didnt know i was saposed to give source code as well shall i do that right now?
|
|
| Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Fri Jul 27, 2007 12:46 am Post subject: |
|
|
| 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 |
|
 |
TheIndianGuy Advanced Cheater
Reputation: 102
Joined: 14 Jan 2007 Posts: 88
|
Posted: Fri Jul 27, 2007 12:50 am Post subject: |
|
|
| fixed
|
|
| Back to top |
|
 |
Simsgy Grandmaster Cheater
Reputation: 0
Joined: 07 May 2007 Posts: 581 Location: My new avatar <3
|
Posted: Fri Jul 27, 2007 1:21 am Post subject: |
|
|
Nice work.
I liked it.
_________________
|
|
| Back to top |
|
 |
TheIndianGuy Advanced Cheater
Reputation: 102
Joined: 14 Jan 2007 Posts: 88
|
Posted: Fri Jul 27, 2007 1:22 am Post subject: |
|
|
| 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 |
|
 |
the_undead Expert Cheater
Reputation: 1
Joined: 12 Nov 2006 Posts: 235 Location: Johannesburg, South Africa
|
Posted: Fri Jul 27, 2007 1:23 am Post subject: |
|
|
not to mention its vb
_________________
|
|
| Back to top |
|
 |
Symbol I'm a spammer
Reputation: 0
Joined: 18 Apr 2007 Posts: 5094 Location: Israel.
|
Posted: Fri Jul 27, 2007 1:26 am Post subject: |
|
|
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 |
|
 |
TheIndianGuy Advanced Cheater
Reputation: 102
Joined: 14 Jan 2007 Posts: 88
|
Posted: Fri Jul 27, 2007 1:27 am Post subject: |
|
|
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 )
Last edited by TheIndianGuy on Fri Jul 27, 2007 1:29 am; edited 1 time in total |
|
| Back to top |
|
 |
Symbol I'm a spammer
Reputation: 0
Joined: 18 Apr 2007 Posts: 5094 Location: Israel.
|
Posted: Fri Jul 27, 2007 1:28 am Post subject: |
|
|
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 |
|
 |
TheIndianGuy Advanced Cheater
Reputation: 102
Joined: 14 Jan 2007 Posts: 88
|
Posted: Fri Jul 27, 2007 1:30 am Post subject: |
|
|
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 |
|
 |
samuri25404 Grandmaster Cheater
Reputation: 7
Joined: 04 May 2007 Posts: 955 Location: Why do you care?
|
Posted: Fri Jul 27, 2007 1:43 pm Post subject: |
|
|
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 |
|
 |
|