| View previous topic :: View next topic |
| Author |
Message |
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 |
|
 |
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 |
|
 |
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 |
|
 |
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 |
|
 |
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 |
|
 |
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 |
|
 |
|