Skrypt:phpbb2egg

Z IrcWiki.

# found on egghelp.org a posting by ShavdApe about a phpbb2egg script
# to post live into a channel when a post on a board is made
# add the line source/phpbb2egg.tcl into your .conf and rehash the bot
 
# you can change the port here, but pls think about to change it to
# the same port on functions_phpbb2egg.php:
listen 17341 script phpbb2eggaccept
 
proc phpbb2eggaccept {idx} {
	control $idx phpbb2eggincoming
}
 
proc phpbb2eggincoming {idx line} {
	putlog "#PhpBB2Egg# Received: >$line<"
	set line [string trim $line]
	if {$line != "" } {
		set chan [lindex [split $line] 0]
		set line [join [lrange [split $line] 1 end]]
		foreach line [split $line ";"] {
			puthelp "PRIVMSG [chandname2name $chan] :$line"
		}
	}
	killdcc $idx
}
putlog "phpbb2egg.tcl Loaded..."
Personal tools