Code: Select all
# TCL Script for Eggdrops to re-established channel-linking between different IRC networks
# Copyright ppslim@www.egghelp.org/forum <= U da MAN!
proc chk:restart {} {
global uptime
if {[expr $uptime + 60] > [unixtime]} {
dcc:linkchan 0 0 {#YourChannel YourNetworkName YourNetworkServer IP YourNetworkPort}
}
}
chk:restart
proc need:netsplit {args} {
chk:restart
}
bind EVNT - "init-server" need:netsplit
Code: Select all
proc parse_irc {serv text} {
global current_server
set current_server $serv
set parts [split $text]
set source [lindex $parts 0]
if {[string index $source 0] != ":"} {
set source ""
set cmd $source
set args [lrange $parts 1 end]
} else {
set source [string range $source 1 end]
set cmd [lindex $parts 1]
set args [lrange $parts 2 end]
}
switch -exact -- $cmd {
"privmsg" { ... }
"join" { ... }
"part" { ... }
"quit" { ... }
"ping" { ... }
}
Even though you won't be using the gui, mirc does not provide a way to disable its windows as far as I know. You could check and see if there is a wine option that suppresses the gui... that's actually highly possible. It would be something likeZeusbwr wrote:so when you say the windows emulator, but they wont allow GUI, (and im sure this sounds stupid lol) but would it matter about the GUI if i wasent used? cuz im not ganna be trying to use the GUI heh, Or maybe something to... supress the GUI.. rofl... im just tryin to think of options here lol