|
| Author |
Message |
mushroomhead Newbie

Joined: 20 Jun 2005 Posts: 1
 
|
Posted: Mon Jun 20, 2005 6:57 am Post subject: In need of a basic, basic bot |
|
|
| This may sound dumb, but I really need a bot that I can program to just push two keys over and over very fast... if someone could help me find something like that or somewhere where I can make one or whatever it would be very appreciated. |
|
| Back to top |
|
 |
repeter Newbie

Joined: 13 Jan 2005 Posts: 11 Location: CO
  
|
Posted: Wed Aug 17, 2005 4:13 am Post subject: |
|
|
| This wouldn't be for some kind of DOS attack, would it? |
|
| Back to top |
|
 |
Cer Upgraded Agent

Joined: 03 Feb 2004 Posts: 3776 Location: Michigan
  votes: 4
|
Posted: Wed Aug 17, 2005 5:36 am Post subject: |
|
|
Actually there's a simpler programming language that can do that easily. I won't mention what it is until I know what you want this for.
You could actually do it in only 4 lines of code. _________________ Current Site (2008) http://www.cuvou.com/ |
|
| Back to top |
|
 |
darkmonkey The Merovingian

Joined: 18 Apr 2004 Posts: 2557 Location: London, England
     votes: 7
|
Posted: Wed Aug 17, 2005 12:28 pm Post subject: |
|
|
BLITZ BASIC! _________________ ~ Josh
[ Need bot hosting on a dedicated server? PM me. ] |
|
| Back to top |
|
 |
R40005 Newbie

Joined: 22 Aug 2005 Posts: 1
        
|
Posted: Mon Aug 22, 2005 5:24 pm Post subject: |
|
|
erm... vb is simpler
put this in form_load
| Code: | n = 1
while(n < 2)
sendkeys "key1"
sendkeys "key2"
wend |
|
|
| Back to top |
|
 |
eric256 The Keymaker

Joined: 03 May 2006 Posts: 2292 Location: Colorado
     
|
Posted: Mon Aug 22, 2005 10:52 pm Post subject: |
|
|
| repeter wrote: | | This wouldn't be for some kind of DOS attack, would it? |
You don't need a program for a DOS attack. Windows provides plenty of tools for that. One time in a CS class we used to DOS the test server. Realy pissed our teacher off, but as a CS teacher he should have been able to secure agianst this attack very easily.
Original Poster (OP): You are a bit confused. These bots are for communicateing on AIM,MSN,Jabber,Yahoo etc. _________________ Eric256
Proud previous owner and current admin of Bot-depot.com |
|
| Back to top |
|
 |
Cer Upgraded Agent

Joined: 03 Feb 2004 Posts: 3776 Location: Michigan
  votes: 4
|
Posted: Tue Aug 23, 2005 11:26 pm Post subject: |
|
|
| R40005 wrote: | erm... vb is simpler
put this in form_load
| Code: | n = 1
while(n < 2)
sendkeys "key1"
sendkeys "key2"
wend |
|
AutoIt:
| Code: | Loop:
Send, ping 127.0.0.1{ENTER}ping localhost{ENTER}
Goto, Loop |
3 lines.  _________________ Current Site (2008) http://www.cuvou.com/ |
|
| Back to top |
|
 |
Skeckulous Newbie

Joined: 31 Dec 2005 Posts: 2
    
|
Posted: Sat Dec 31, 2005 9:46 pm Post subject: |
|
|
I was also looking for something basic.
I'm a total n00b so feel free to add in a few jokes here and there.
I'm looking for something for NWN that would just occcassionally send out some text. basically it would just be using these keys:
<enter>
<type> message here</type>
<enter>
<wait 2 minutes and loop>
If possible it'd be even cooler if i could get it to respond to people.
NWN has a log file which it updates constantly so maybe that could be used to parse through for responses?
(if anyone owns NWN it lies here: C:\NeverwinterNights\NWN\logs\nwclientlog1.txt)
anyways thanks! |
|
| Back to top |
|
 |
Cer Upgraded Agent

Joined: 03 Feb 2004 Posts: 3776 Location: Michigan
  votes: 4
|
Posted: Sun Jan 01, 2006 12:00 am Post subject: |
|
|
AutoIt ~ http://www.hiddensoft.com/AutoIt/
Here's an example from the older AutoIt (the new one has a totally different syntax)
| Code: | Loop:
Send, {ENTER}
Send, message here
Send, {ENTER}
Sleep, 2
Goto, Loop |
_________________ Current Site (2008) http://www.cuvou.com/ |
|
| Back to top |
|
 |
Skeckulous Newbie

Joined: 31 Dec 2005 Posts: 2
    
|
Posted: Sun Jan 01, 2006 6:06 am Post subject: |
|
|
| sweet thanks! |
|
| Back to top |
|
 |
|