Script Name:
greetcommand.tcl
Version: 1.0
Author: pandaweb/pandroid
Script Date: 12/10/2010
Category: Greet Scripts
Downloads: 134
File Name:
greetcommand.zip
Short Description:
Send raw IRC commands when a specified user enters the channel (PRIVMSG, MODE, NOTICE, ETC...).
Extended Description File
######################################################
# greetcommand.tcl by pandaweb/pandroid #
######################################################
# Changelog: #
# 1.0: Initial Release #
######################################################
# This script is a mashup of several other scripts #
#####
# what greetcommand.tcl does is send raw IRC commands
# when a specified user enters the channel.
#####
#####
# To enable greetcommand.tcl, in the partyline enter:
## .chanset #CHANNEL +greetcommand
# To disable greetcommand.tcl
## .chanset #CHANNEL -greetcommand
#####
#####
# Here are several examples of what you can do with greetcommand.tcl.
# These will be entered in the partyline.
# Capital words are to be replaced.
#####
# to send a pm to user who just entered
## .+grtcmd NICK privmsg NICK :MESSAGE
# example
## .+grtcmd REDLED420 privmsg REDLED420 :IVE BEEN LOOKING FOR YOU!
#
# to send a pm to a user when another user enters the channel
## .+grtcmd NICK1 privmsg NICK2 :MESSAGE
# example
## .+grtcmd TANK00 privmsg LAFANDA08 :HEY LAFANDA, TANK00 IS ONLINE.
#
# to op a user who just entered (unsecure)
## .+grtcmd NICK mode #CHANNEL +o NICK
# example
## .+grtcmd OPHOP mode #MYCHCHCHANNEL +o OPHOP
#####
#####
# To remove a greet
## .-grtcmd NICK
#
# To list greets
## .grtcmdlist
#
# For greetcommand help
## .grtcmdhelp
#####