|
| Author |
Message |
digeridoo Member

Joined: 14 Apr 2004 Posts: 143
   
|
Posted: Wed Apr 14, 2004 6:57 pm Post subject: |
|
|
Could someone please help me with getting a bot online?
I downloaded a few bots before, and have done exactly what they say, correcting information etc. The when I run the bot pl file, one of 3 things happen, either:
1. An MS-DOS window comes up and has a few words at the top, but nothing seems to be happenning.
2. The pl file gets opened in notepad.
3. The file begins to open in MS-DOS, but crashes it.
I know that I have basically no knowledge of bots as yet, but can someone please solve my problem and just help me get the bot online
Thanks for your help |
|
| Back to top |
|
 |
Calum Not Yet a God

Joined: 21 Feb 2004 Posts: 373 Location: england
   
|
Posted: Wed Apr 14, 2004 7:07 pm Post subject: |
|
|
| post what it says |
|
| Back to top |
|
 |
digeridoo Member

Joined: 14 Apr 2004 Posts: 143
   
|
Posted: Wed Apr 14, 2004 7:17 pm Post subject: |
|
|
| whats that supposed to mean? |
|
| Back to top |
|
 |
JoeX Agent

Joined: 02 Jan 2004 Posts: 2153
 
|
Posted: Wed Apr 14, 2004 7:30 pm Post subject: |
|
|
type perl bot.pl _________________ Heroes NBC |
|
| Back to top |
|
 |
digeridoo Member

Joined: 14 Apr 2004 Posts: 143
   
|
Posted: Wed Apr 14, 2004 7:31 pm Post subject: |
|
|
| type it where exactly? |
|
| Back to top |
|
 |
night Not Yet a God

Joined: 06 Jan 2004 Posts: 498
    
|
Posted: Wed Apr 14, 2004 7:36 pm Post subject: |
|
|
| in the command promt, if yew dont type perl then it will run it in the default browsing program... |
|
| Back to top |
|
 |
digeridoo Member

Joined: 14 Apr 2004 Posts: 143
   
|
Posted: Wed Apr 14, 2004 7:46 pm Post subject: |
|
|
I double clicked on bot.pl, it opened a DOS window and I got his error message:
'Possible unintended interpolation of @hotmail in string at C:\perl\bin\bot.pl line 14'
Line 14 is where i am supposed to write in the handle (thats the bots email right?) Well anyway, Ive put the bots email in there and it just says that  |
|
| Back to top |
|
 |
digeridoo Member

Joined: 14 Apr 2004 Posts: 143
   
|
Posted: Thu Apr 15, 2004 12:40 pm Post subject: |
|
|
I no you guys havent replied to this topic for awhile, but I have tried everything to do with the line 14, and nothing happens. I still get the same error message. What does interpolation mean anyway?
'Possible unintended interpolation of @hotmail.com in string at bot.pl line 14' |
|
| Back to top |
|
 |
Siebe God Like

Joined: 06 Jan 2004 Posts: 562 Location: Netherlands
    
|
Posted: Thu Apr 15, 2004 12:43 pm Post subject: |
|
|
Did you use double quotes? The @ in Perl indicates an array, so it thinks that hotmail(.com) is an array, which of course isn't the case. Use single quotes, so:
WRONG:
| Code: | | $something = "some@mail.com"; |
CORRECT:
| Code: | | $something = 'some@mail.com'; |
|
|
| Back to top |
|
 |
digeridoo Member

Joined: 14 Apr 2004 Posts: 143
   
|
Posted: Thu Apr 15, 2004 1:23 pm Post subject: |
|
|
| Ive done that and thanks, *lazy* it worked! But now I run command.com get to where Ihave to type perl bot.pl and it crashes the DOS window :unsure: |
|
| Back to top |
|
 |
JoeX Agent

Joined: 02 Jan 2004 Posts: 2153
 
|
Posted: Thu Apr 15, 2004 1:50 pm Post subject: |
|
|
QUOTE(digeridoo @ Apr 14 2004, 11:31 AM) type it where exactly? | in command prompt, when *lazy* typed the dir first _________________ Heroes NBC |