Code: Select all
set get_chan_name [mysql_query "SELECT * FROM bot_channels"]
putlog "*** SETTING CHANNEL VARIABLES ***"
foreach row $get_chan_name {
set chan_name "[lindex $row 1]"
set chan_trigger "[lindex $row 3]"
set chan_greeting "[lindex $row 4]"
set chan_trigger($chan_name) "$chan_trigger"
putlog "Set $chan_name trigger to $chan_trigger"
set chan_greeting($chan_name) "$chan_greeting"
}
Code: Select all
bind pubm -|- * command:main:set
### set chan vars
set get_chan_name [mysql_query "SELECT * FROM bot_channels"]
putlog "*** SETTING CHANNEL VARIABLES ***"
foreach row $get_chan_name {
set current_chan_name "[lindex $row 1]"
set current_chan_trigger "[lindex $row 3]"
set current_chan_greeting "[lindex $row 4]"
putlog "^B^_Starting $current_chan_name vars^_^B"
global chan_trigger($current_chan_name)
global chan_greeting($current_chan_name)
set chan_trigger([string tolower $current_chan_name]) [lindex $row 3]
putlog "Set $current_chan_name ^Btrigger^B to '$current_chan_trigger'"
set chan_greeting([string tolower $current_chan_name]) [lindex $row 4]
putlog "Set $current_chan_name ^Bgreeting^B to '$current_chan_greeting'"
set get_chan_commands [mysql_query "SELECT * FROM bot_commands WHERE command_chan='$current_chan_name'"]
foreach row2 $get_chan_commands {
set [lindex $row2 1]([string tolower $current_chan_name]) "[lindex $row2 2]"
putlog "Set $current_chan_name command ^B[lindex $row2 1]^B to '[lindex $row2 2]'"
}
}
### MAIN SET FUNCTION ###
proc command:main:set {nick uhost hand chan arg} {
if {[string tolower [lindex [split $arg] 0]] == "${chan_trigger($chan)}set" && [string tolower [lindex $arg 1]] == "greeting"} {
if {[isop $nick $chan]} {
set greeting "[lrange $arg 2 end]"
putnotc $nick "Set Greeting to '$greeting'"
} else {
putnotc $nick "Error(1): You lack access to 'set greeting'"
putnotc $nick "Error(2): Unable to 'set greeting'"
}
} elseif {[string tolower [lindex [split $arg] 0]] == "${chan_trigger($chan)}set" && [string tolower [lindex $arg 1]] == "trigger"} {
if {[isop $nick $chan]} {
set new_trigger "[lrange $arg 2 end]"
set save_trigger [mysql_query "UPDATE bot_channels SET chan_trigger='$new_trigger'"]
putnotc $nick "Set channel trigger to '$new_trigger'"
} else {
putnotc $nick "Error(1): You lack access to 'set trigger'"
putnotc $nick "Error(2): Unable to set 'trigger'"
}
} elseif {[string tolower [lindex [split $arg] 0]] == "${chan_trigger($chan)}set"} {
if {[isop $nick $chan]} {
set command_input [string tolower [lindex $arg 1]]
set command_input_value "[lrange $arg 2 end]"
set result [mysql_query "SELECT command_name FROM bot_commands WHERE command_chan='$chan' && command_name='${command_input}'"]
if {[info exist result]} {
foreach row $result {
foreach element $row {
set update_command [mysql_query "UPDATE bot_commands SET command_value='${command_input_value}'"]
putnotc $nick "Set $command_input to '$command_input_value'"
}
}
} else {
set insert_command [mysql_query "INSERT INTO bot_commands (command_chan, command_name, command_value) VALUES ('$chan', '$command_input', '$command_input_value'"]
putnotc $nick "Set $command_input to $command_input_value"
}
} else {
putnotc $nick "Error(1): You lack access to 'set $command_input'"
putnotc $nick "Error(2): Unable to 'set $command_input'"
}
}
}
I don't know SQL very well, but if you would save as chan_trigger('#channel') and try to load as chan_trigger(#channel) the error would make sensetcl: evaluate (.tcl): lindex {"1" "2" "3"} 1
Tcl: 2
tcl: evaluate (.tcl): lindex {'1' '2' '3'} 1
Tcl: '2'