Script Name:
beer.tcl
Version: 1.beta1
Author: SpiKe^^
Script Date: 15/03/2009
Category: Not specified
Downloads: 308
File Name:
beer_v.1.beta1.zip
Short Description:
A simple channel chatter script. Included default bartender triggers. Can be used for any triggers. Variable replacements can be used in all replies. Complete on-join greet functions included.
Extended Description File
####################################################################
## beer.tcl v.1.beta1 by SpiKe^^ ## 15 Mar 09 - ##
####################################################################
# #
# beer is a simple channel chatter script. Included are default #
# bartender triggers. Can be used for Any Triggers. Variable #
# replacements can be used in all replies. Complete on-join greet #
# functions included. #
# #
# Add this line: source scripts/beer.tcl #
# to your eggdrop config and rehash to load the script. #
# #
# Please report bugs or make comments at: #
# irc: undernet: #pc-mIRC-help #
# email: spike@mytclscripts.com #
# http://www.mytclscripts.com #
# #
# Highlights #
# 1. Unlimited Public Triggers with Public Replies #
# 2. Flood Protection #
# 3. Multi-Channel #
# 4. Control Access by User Flags #
# 5. Complete On-Join Greeting Functions #
# 6. Variable Replacements in All Replies: #
# %m (me) :is replaced by the users nick #
# %d (drinker) :is replaced by the nick(s) provided #
# %b (bartender) :is replaced by the botnick #
# %c (channel) :is replaced by the channel #
# #
####################################################################
# #
# Beer Script Notes #
# #
# 1. Script can set an unlimited number of public triggers and #
# a one line public reply for each trigger. #
# #
# 2. Triggers/replies are listed in the tcl setting, one per line: #
# #
# Example: beer %b hands %d a beer. #
# #
# The first word in the line is the trigger word: beer #
# Trigger can be any one word (No Spaces in triggers). #
# Everything else is the reply: %b hands %d a beer. #
# #
# 3. Script will trigger in 3 different ways: #
# a. The trigger by itself: !beer #
# Drinker (%d) would be replaced by the users nick #
# b. Trigger with a target nick: !beer SpiKe^^ #
# Drinker would be replaced by the nick: SpiKe^^ #
# c. Trigger with multiple nicks: !beer SpiKe^^ ted bart #
# Drinker would be replaced by: SpiKe^^ ted & bart #
# #
# 4. Variable replacement codes for nicks in replies: #
# %m (me) :usually replaced by the users nick #
# %d (drinker) :usually replaced by the nick(s) provided #
# %b (bartender) :always replaced by the botnick #
# #
# 4. Variable replacement notes: #
# a. Don't use all 3 nick codes in the same reply. #
# If no target nick is provided, (me) & (drinker) would #
# both be replaced by the users nick. #
# b. If reply uses both (me) & (drinker) replacement codes, #
# and no target nick is provided... #
# %d :would be replaced by the users nick #
# %m :would be replaced by the botnick (bartender) #
# #
####################################################################