the code =[07:21] Tcl error [addme_addname]: can't read "addme_server(#gorillascripting)": no such variable
[07:21] Tcl error [addme_server]: can't read "addme_server(#gorillascripting)": no such variable
Code: Select all
###############################################
#
# Add Me ! - v 1.00
#
# Short A Propos :
#
# Organize pickup games in an IRC channel
# With commands like !addme and !removeme, players can enrole themselves into a player list,
# and when the player list is full, the bot notices everyone to join a given server
# More details & manual : see readme.txt
#
# tested on Eggdrop 1.6.4 and TCL 8.0.5
# Tcl 8.3 : NOT WORKING (regexp & regsub b0rked, what the hell)
#
# Contact stuff :
# Ozh, ozh@planetquake, #SARL on irc.quakenet.org
# The bot is probably working on #ctfpickup.fr and #pickup.fr on Quakenet,
# if you want to have a look
###############################################
################# customize ###################
# Channels where the bot manages topics
# For example :
# set addme_channels "#lame"
# set addme_channels "#lame #lamer #lamest"
set addme_channels "#gorillascripting"
# Web page where the channels rules are explained
set addme_rules "http://FrenchFragFactory.net/pickup.shtml"
# Number of players wanted for a game, set for each channel
# Specify for each channel mentionned above !
# For example : set addme_nombre (#lame) 4 if you need 4 players to start a game
set addme_nombre(#ctfpickup.fr) 10
set addme_nombre(#pickup.fr) 8
# If you want to modify bot's messages, read through the script
# and modify yourself :) Each message is commented for you to know
plz help ! thx !