INTRODUCTION
	Okay here I go trying to teach someone else to use my code... bummer 
eh? JesusBot is not really a bot anymore.  It used to be a perl based irc 
bot, but it has since come into disrepair and isn't being updated anymore.  
That is why I thought I should port it to TCL/Eggdrop.  It is pretty much 
text matching using Eggdrop's scripting API.  There is no need for the 
server/irc code because Eggdrop takes care of that for me.  The *.quotes 
and *.triggered files are almost the exact same as what came with the perl 
JesusBot.  I owe the developers of perl JesusBot for saving me a lot of 
time.  The string masks are slightly different from the originals but only 
slightly.  I hope you enjoy.

INSTALLATION
1. Untar the archive this came in... oh good you are done that
2. Edit jesusbot*.tcl
3. Add a "source path/to/jesusbot*.tcl" to your config file
4. .rehash the bot
5. Enjoy

TEXT MATCHING
	So you want to know how you can add your own quotes or triggers?  
Lets start with quotes.  To add a quote just append it to the end of the 
*.quotes file.  Make sure the quote is all on one line (turn off word 
wrap).  Triggers are a little trickier but not much.  Lets use this 

example:
   this?sucks::The world may suck, it pale in comparison to the great heavan that awaits you

Note this is all on ONE line.  The text before the :: is what the bot looks 
for when something is said.  The '?' is used to match a space it only matches
any single character. So "<dude> this sucks" will trigger the bot to say what 
follows after the ::, but "<dude> this cannot suck more" will not match 
with our example.  If you know a little TCL consider reading 
"man n string" or same with the online TCL man pages at www.scriptics.com.
If you want to know more don't be afraid to see me on #eggdrop@undernet.

FOLLOW UP
	If you find any bugs or feature ideas please email them to me at 
skyppey@techmonkeys.org or you can get a hold of me on #eggdrop@undernet.  
If you have any trouble getting this script to work come to 
#eggdrop@undernet I won't answer any help requests through email.  

-Drew  
