Another problem might be because it isn't compatible with MSN 6.2? Cause I tried that and it still doesn't work.
It has nothing to do with which version of MSN you have, it uses its own way of connecting to the MSN service. You could still have MSN 5.0 all the way through 6.2 and it wouldn't make a difference.
Try running this test script and see what it returns:
That will show you all the files that Perl sees are in that directory. You could also do this to delete those files:
Code:
opendir (DIR, "./bots");<br />foreach $file (sort(grep(!/^\./, readdir(DIR)))) {<br /> # Change this to the name of your bot's file<br /> next if $file eq 'mybot@msn.com.txt';<br /><br /> unlink ("./bots/$file"); # delete other files<br />}<br />closedir (DIR);
K did that, but It still doesnt run and I noticed this error message...
Code:
Can't locate Win32/GUI.pm in @INC (@INC contains: ./lib C:/Perl/lib C:Perl/site/lib .) at ./commands/dos.pl line 32.<br />BEGIN failed--compilation aborted at ./commands/dos.pl line 32<br />Compilation failed in require at ./subroutines/load_commands.pl line 39<br />:: Indexing Commands... Press any key to continue . . .
I hope I didn't typo on anything... It wouldn't let me copy and paste.
That means you need to install Win32:::GUI, if you know how to use PPM, you can get it that way. _________________ Check out Botworld! A dev resource for things bot.
Downloads, articles, news, fourm and more.
http://botworld.marzopolis.com
Or if you're not on a Windows computer, OR you really don't care for the !dos command (it turns the Show-DOS-Window on/off), just delete commands/dos.pl _________________ Current Site (2008) http://www.cuvou.com/
You need the "MSN-" in front (it's a security measure. For example, AIM and IRC have similar usernames, somebody could be a botmaster on AIM and then an IRC user with the same name could be the master too.) _________________ Current Site (2008) http://www.cuvou.com/
First of all, I would like to thank you for the great job done. I was looking for an efficient bot able to speak with IRC and MSN protocols at the same time and yours do that to the perfection.
My main concern is language. As I am French and my users are likely to be french as well I tried to use the Eliza bot a full AIML sets have been created handling french language. But I don't seem to be able to make the Eliza bot handle anything, it just doesn't answer to any command even with the default AIML files.
Is there anything I should do to enable Eliza brain apart placing Eliza in the brain section of the config file?
Eliza isn't AIML. Alice is AIML. Juggernaut doesn't support AIML.... if you know how to write Eliza scripts (view the source of Chatbot/Eliza.pm down under the __DATA__), you can write your own script and modify brains/eliza_load.pl to load that script.
The ChaosML or Juggernaut brains allow you to give it reply sets similar to AIML, but not quite AIML. You may want to use that instead. _________________ Current Site (2008) http://www.cuvou.com/
The ChaosML or Juggernaut brains allow you to give it reply sets similar to AIML, but not quite AIML. You may want to use that instead. [right][snapback]47745[/snapback][/right]
This implies i modifie the headers of the replies files or your juggernaut brain doesn't check them just the tags?
The ChaosML or Juggernaut brains allow you to give it reply sets similar to AIML, but not quite AIML. You may want to use that instead. [right][snapback]47745[/snapback][/right]
This implies i modifie the headers of the replies files or your juggernaut brain doesn't check them just the tags? [right][snapback]47748[/snapback][/right]
The "Juggernaut" brain is more plain text than the ChaosML brain. The ChaosML one was meant to be similar to AIML so that a lot of (basic) AIML replies would still work. _________________ Current Site (2008) http://www.cuvou.com/