hexchat/plugins/tcl
Berke Viktor 567270d5a7 Remove hardcoding as much as possible 2012-10-02 18:15:49 +02:00
..
Makefile.am fixed plugins using correct libdir 2012-07-14 02:22:24 -05:00
README add xchat r1489 2011-02-24 04:14:30 +01:00
printevents.h Update XChat to r1521 2012-07-27 11:47:49 +02:00
tcl-xp.vcxproj Remove hardcoding as much as possible 2012-10-02 18:15:49 +02:00
tcl-xp.vcxproj.filters Add XP (WDK) solution as a fallback option 2012-10-02 16:00:13 +02:00
tcl.def More solution fixes and add language interfaces 2012-06-10 12:49:17 +02:00
tcl.vcxproj Remove hardcoding as much as possible 2012-10-02 18:15:49 +02:00
tcl.vcxproj.filters More solution fixes and add language interfaces 2012-06-10 12:49:17 +02:00
tclplugin.c Update XChat to r1521 2012-07-27 11:47:49 +02:00
tclplugin.h Update XChat to r1521 2012-07-27 11:47:49 +02:00

README

Please read this document before asking questions.

(1) WHAT IS THE TCL PLUGIN?

    The XChat Tcl Plugin adds the complete Tcl scripting language to the
    XChat 1.9.x and 2.x IRC client.  The design philosophy behind the tcl
    plugin was to give all the power of the C API. yet completely shield
    the user from all the complexities of it.  It is lightly modeled after
    after Xircon; an old windows TCL enabled client with a little bit of
    eggdrop functionality to it.

    Features:
     * Uses the popular TCL scripting language.
     * Familiar to eggdrop bot owners.
     * Adds many new XChat specific commands to the Tcl language for 
       handling of events, user commands, timers, etc. 
     * It's actually documented! (Hey, what a concept!) 
     * Works with XChat 1.9.x and 2.x. 
     * Open source (GPL) 

    The supplied documentation for Tcl Plugin commands can be 
    found in doc/tclplugin.html
    
    For a comprehensive list of IRC server tokens, see
    doc/tokens.txt


(2) HOW TO GET TCL PLUGIN

    You can always find the latest version of the Tcl Plugin at:

       http://www.scriptkitties.com/tclplugin

   You must also have Tcl 8.3 or higher installed on your system.

     Tcl can be obtained from:

       http://sourceforge.net/projects/tcl
       http://tcl.activestate.com (pre-compiled binaries)

     Tcl Man Pages

       http://tcl.activestate.com/man/

     Tcl Tutorials:

       http://hegel.ittc.ukans.edu/topics/tcltk/tutorial-noplugin/
       http://jan.netcomp.monash.edu.au/ProgrammingUnix/tcl/tcl_tut.html
       http://users.belgacom.net/bruno.champagne/tcl.html


(3) QUICK STARTUP

    SEE 'INSTALL'