<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/15486" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2009-10-13T03:59:26-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/15486</id>

		<entry>
		<author><name><![CDATA[Fire-Fox]]></name></author>
		<updated>2009-10-13T03:59:26-04:00</updated>

		<published>2009-10-13T03:59:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=90490#p90490</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=90490#p90490"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=90490#p90490"><![CDATA[
I have a working BETA release. to phpBB3 and it works very well. NO need for .tcl script to be loaded in yout bot conf file. <br><br>i'll dick it out when i get home from school <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>[EDIT] the script will also, have the option, to inputs topic IDS, in ACP panel so it won't post in that section, there will be alot of options when it's all done. <br><br>stay tuned <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8230">Fire-Fox</a> — Tue Oct 13, 2009 3:59 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Fire-Fox]]></name></author>
		<updated>2009-06-16T09:18:38-04:00</updated>

		<published>2009-06-16T09:18:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89206#p89206</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89206#p89206"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89206#p89206"><![CDATA[
I found this on phpBB's forum, and it works very well...<br><br><div class="codebox"><p>Code: </p><pre><code>################################################################### MOD Title: Eggdrop Announce## MOD Author: WyriHaximus &lt; webmaster@wyrihaximus.net &gt; (Cees-Jan Kiewiet) http://www.wyrihaximus.net/## MOD Description: This MOD wil announce new topics and reply's in your IRC channel.## MOD Version: 1.0.0#### Installation Level: Easy## Installation Time: 1 Minute## Files To Edit: 1## includes/functions_post.php## Included Files: 1## includes/eggdrop.class.php## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2################################################################ For security purposes, please check: http://www.phpbb.com/mods/## for the latest version of this MOD. Although MODs are checked## before being allowed in the MODs Database there is no guarantee## that there are no security problems within the MOD. No support## will be given for MODs not found within the MODs Database which## can be found at http://www.phpbb.com/mods/################################################################ Author Notes:#### This mod was created as a request here: http://www.phpbb.com/phpBB/viewtopic.php?t=339597####################################################################### MOD History:#### 08-11-2005 - Version 1.0## - This version never came out##################################################################### Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD###################################################################-----[ COPY ]------------------------------------------#copy eggdrop.class.php to includes/eggdrop.class.php##-----[ OPEN ]------------------------------------------#includes/functions_post.php##-----[ FIND ]------------------------------------------#$sql = ($mode != 'editpost') ? "INSERT INTO " . POSTS_TEXT_TABLE . " (post_id, post_subject, bbcode_uid, post_text) VALUES ($post_id, '$post_subject', '$bbcode_uid', '$post_message')" : "UPDATE " . POSTS_TEXT_TABLE . " SET post_text = '$post_message', bbcode_uid = '$bbcode_uid', post_subject = '$post_subject' WHERE post_id = $post_id";if (!$db-&gt;sql_query($sql)){message_die(GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql);}##-----[ AFTER, ADD ]------------------------------------------#if($mode=='newtopic' || $mode=='reply'){$url = 'http://' . $board_config['server_name'] . (($board_config['server_port']==80) ? '' : ':' . $board_config['server_port']) . $board_config['script_path']. 'viewtopic.' . $phpEx . '?' .POST_POST_URL . '=' . $post_id . '#' . $post_id;if(function_exists('replace_for_mod_rewrite')){$url = replace_for_mod_rewrite($url);}include($phpbb_root_path . 'includes/eggdrop.class.' . $phpEx);$tmp = new eggdrop_class;$tmp-&gt;send_msg($board_config['eggdrop_server'],$board_config['eggdrop_port'],$board_config['eggdrop_username'],$board_config['eggdrop_password'],$board_config['eggdrop_channel'],str_replace(array('{POSTER}','{SUBJECT}','{LINK}'),array($userdata['username'],$post_subject,$url),$board_config['eggdrop_message' . (($mode=='newtopic') ? '' : '2')]));unset($tmp);}##-----[ SQL ]------------------------------------------#INSERT INTO `phpbb_config` ( `config_name` , `config_value` )VALUES ('eggdrop_server', ''), ('eggdrop_port', ''),('eggdrop_username', ''), ('eggdrop_password', ''), ('eggdrop_channel', ''), ('eggdrop_message', ''),('eggdrop_message2', '');##-----[ OPEN ]------------------------------------------#admin/admin_board.php##-----[ FIND ]------------------------------------------#"L_SMTP_PASSWORD" =&gt; $lang['SMTP_password'],"L_SMTP_PASSWORD_EXPLAIN" =&gt; $lang['SMTP_password_explain'],"L_SUBMIT" =&gt; $lang['Submit'],"L_RESET" =&gt; $lang['Reset'],##-----[ AFTER, ADD ]------------------------------------------#"L_EGGDROP" =&gt; $lang['Eggdrop'],"L_EGGDROP_SERVER" =&gt; $lang['Eggdrop_server'],"L_EGGDROP_PORT" =&gt; $lang['Eggdrop_port'],"L_EGGDROP_USERNAME" =&gt; $lang['Eggdrop_username'],"L_EGGDROP_PASSWORD" =&gt; $lang['Eggdrop_password'],"L_EGGDROP_CHANNEL" =&gt; $lang['Eggdrop_channel'],"L_EGGDROP_MESSAGE" =&gt; $lang['Eggdrop_message'],"L_EGGDROP_MESSAGE2" =&gt; $lang['Eggdrop_message2'],"EGGDROP_SERVER" =&gt; $new['eggdrop_server'],"EGGDROP_PORT" =&gt; $new['eggdrop_port'],"EGGDROP_USERNAME" =&gt; $new['eggdrop_username'],"EGGDROP_PASSWORD" =&gt; $new['eggdrop_password'],"EGGDROP_CHANNEL" =&gt; $new['eggdrop_channel'],"EGGDROP_MESSAGE" =&gt; $new['eggdrop_message'],"EGGDROP_MESSAGE2" =&gt; $new['eggdrop_message2'],##-----[ OPEN ]------------------------------------------#templates/subSilver/admin/board_config_body.tpl##-----[ FIND ]------------------------------------------#&lt;tr&gt;&lt;td class="row1"&gt;{L_SMTP_SERVER}&lt;/td&gt;&lt;td class="row2"&gt;&lt;input class="post" type="text" name="smtp_host" value="{SMTP_HOST}" size="25" maxlength="50" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="row1"&gt;{L_SMTP_USERNAME}&lt;br /&gt;&lt;span class="gensmall"&gt;{L_SMTP_USERNAME_EXPLAIN}&lt;/span&gt;&lt;/td&gt;&lt;td class="row2"&gt;&lt;input class="post" type="text" name="smtp_username" value="{SMTP_USERNAME}" size="25" maxlength="255" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="row1"&gt;{L_SMTP_PASSWORD}&lt;br /&gt;&lt;span class="gensmall"&gt;{L_SMTP_PASSWORD_EXPLAIN}&lt;/span&gt;&lt;/td&gt;&lt;td class="row2"&gt;&lt;input class="post" type="password" name="smtp_password" value="{SMTP_PASSWORD}" size="25" maxlength="255" /&gt;&lt;/td&gt;&lt;/tr&gt;##-----[ AFTER, ADD ]------------------------------------------#&lt;tr&gt;&lt;th class="thHead" colspan="2"&gt;{L_EGGDROP}&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="row1"&gt;{L_EGGDROP_SERVER}&lt;/td&gt;&lt;td class="row2"&gt;&lt;input class="post" type="text" name="eggdrop_server" value="{EGGDROP_SERVER}" size="25" maxlength="255" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="row1"&gt;{L_EGGDROP_PORT}&lt;/td&gt;&lt;td class="row2"&gt;&lt;input class="post" type="text" name="eggdrop_port" value="{EGGDROP_PORT}" size="25" maxlength="255" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="row1"&gt;{L_EGGDROP_USERNAME}&lt;/td&gt;&lt;td class="row2"&gt;&lt;input class="post" type="text" name="eggdrop_username" value="{EGGDROP_USERNAME}" size="25" maxlength="255" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="row1"&gt;{L_EGGDROP_PASSWORD}&lt;/td&gt;&lt;td class="row2"&gt;&lt;input class="post" type="text" name="eggdrop_password" value="{EGGDROP_PASSWORD}" size="25" maxlength="255" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="row1"&gt;{L_EGGDROP_CHANNEL}&lt;/td&gt;&lt;td class="row2"&gt;&lt;input class="post" type="text" name="eggdrop_channel" value="{EGGDROP_CHANNEL}" size="25" maxlength="255" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="row1"&gt;{L_EGGDROP_MESSAGE}&lt;/td&gt;&lt;td class="row2"&gt;&lt;input class="post" type="text" name="eggdrop_message" value="{EGGDROP_MESSAGE}" size="25" maxlength="255" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="row1"&gt;{L_EGGDROP_MESSAGE2}&lt;/td&gt;&lt;td class="row2"&gt;&lt;input class="post" type="text" name="eggdrop_message2" value="{EGGDROP_MESSAGE2}" size="25" maxlength="255" /&gt;&lt;/td&gt;&lt;/tr&gt;##-----[ OPEN ]------------------------------------------#languages/lang_english/lang_admin.php##-----[ FIND ]------------------------------------------#//// That's all Folks!// -------------------------------------------------##-----[ BEFORE, ADD ]------------------------------------------#//// Eggdrop Announce MOD (by WyriHaximus)//$lang['Eggdrop'] = "Eggdrop Announce";$lang['Eggdrop_server'] = "Eggdrop Bot Server Name";$lang['Eggdrop_port'] = "Eggdrop Bot Server Port";$lang['Eggdrop_username'] = "Eggdrop Username";$lang['Eggdrop_password'] = "Eggdrop Password for the Username";$lang['Eggdrop_channel'] = "Channel";$lang['Eggdrop_message'] = "Message on new topic (user {LINK} for the link, {SUBJECT} for the post subject and {POSTER} for the poster)";$lang['Eggdrop_message2'] = "Message on reply (user {LINK} for the link, {SUBJECT} for the post subject and {POSTER} for the poster)";##-----[ SAVE/CLOSE ALL FILES ]------------------------------------------## EoM</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8230">Fire-Fox</a> — Tue Jun 16, 2009 9:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Puck]]></name></author>
		<updated>2008-03-08T09:09:52-04:00</updated>

		<published>2008-03-08T09:09:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81539#p81539</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81539#p81539"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81539#p81539"><![CDATA[
Thank you very much (:<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9764">Puck</a> — Sat Mar 08, 2008 9:09 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Mogour]]></name></author>
		<updated>2008-03-08T08:29:06-04:00</updated>

		<published>2008-03-08T08:29:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81537#p81537</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81537#p81537"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81537#p81537"><![CDATA[
<blockquote class="uncited"><div>Hi everyone.<br><br>I`d Like too know where you found this script, and if there is a documentation about it, cause i looked at the script, but sincerly i dont know how too use it, and where too install it.<br><br>Thank you for you help in advance.<br><br>Puck</div></blockquote><a href="http://www.phpbb.com/community/viewtopic.php?t=181363" class="postlink">http://www.phpbb.com/community/viewtopic.php?t=181363</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9701">Mogour</a> — Sat Mar 08, 2008 8:29 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Puck]]></name></author>
		<updated>2008-03-08T08:08:17-04:00</updated>

		<published>2008-03-08T08:08:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81536#p81536</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81536#p81536"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81536#p81536"><![CDATA[
Hi everyone.<br><br>I`d Like too know where you found this script, and if there is a documentation about it, cause i looked at the script, but sincerly i dont know how too use it, and where too install it.<br><br>Thank you for you help in advance.<br><br>Puck<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9764">Puck</a> — Sat Mar 08, 2008 8:08 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[DragnLord]]></name></author>
		<updated>2008-03-08T02:49:48-04:00</updated>

		<published>2008-03-08T02:49:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81529#p81529</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81529#p81529"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81529#p81529"><![CDATA[
looking at just the code, it's mighty convoluted<br>this is going to be very difficult for an outsider to help  fix without having better information<br>structure of $args is needed; general format, field separators, things of that nature <br>(example: "pass  #chan  first output line ; second output line ; more stuff")<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4461">DragnLord</a> — Sat Mar 08, 2008 2:49 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[starpossen]]></name></author>
		<updated>2008-03-08T02:40:56-04:00</updated>

		<published>2008-03-08T02:40:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81528#p81528</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81528#p81528"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81528#p81528"><![CDATA[
Just an idea, after looking at the .php code, I found this:<div class="codebox"><p>Code: </p><pre><code>$bb2egg['ids'] = "1 2 3 4 5"; // forums to display posts from</code></pre></div> Although I see you // (slashed) it out, wouldn't it be possible to use that line<br>and thereby excluding certain forums?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7219">starpossen</a> — Sat Mar 08, 2008 2:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CyberWar]]></name></author>
		<updated>2008-03-07T20:56:00-04:00</updated>

		<published>2008-03-07T20:56:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81521#p81521</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81521#p81521"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81521#p81521"><![CDATA[
I want only to remove this line<br><br>« @ForumBot » Hello Test blaaaa <br><br>But i dont know how i can remove it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9685">CyberWar</a> — Fri Mar 07, 2008 8:56 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[DragnLord]]></name></author>
		<updated>2008-03-06T19:31:38-04:00</updated>

		<published>2008-03-06T19:31:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81500#p81500</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81500#p81500"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81500#p81500"><![CDATA[
need more information on $inc(message) after being split<br><br>how many lines? <br>does the number of lines change with content?<br>what lines stay the same?<br><br>it's possible to control your output using lrange, but more information is needed (or you'll have to figure it out for yourself)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4461">DragnLord</a> — Thu Mar 06, 2008 7:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CyberWar]]></name></author>
		<updated>2008-03-06T16:29:38-04:00</updated>

		<published>2008-03-06T16:29:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81492#p81492</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81492#p81492"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81492#p81492"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>listen 7777 script phpbb2eggaccept pubset check(pass) "MyPass"proc phpbb2eggaccept {idx} {control $idx phpbbincoming}proc phpbbincoming {idx args} {global checkset args [join $args]set inc(pass) [lindex [split $args] 0]set inc(chan) [lindex [split $args] 1]set inc(message) [join [lrange [split $args] 2 end]] if { $inc(message) != ""} {  killdcc $idx } if {[string match [md5 $check(pass)] $inc(pass)]} {  set line [split $inc(message) ";"]   foreach line $line {    putserv "PRIVMSG $inc(chan) :\00304$line"   } } else { return 0 }}putlog "\00312phpbb2egg.tcl beta 0.0.2"</code></pre></div>and here is the PHP File<br><a href="http://pastebin.com/m410584f9" class="postlink">http://pastebin.com/m410584f9</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9685">CyberWar</a> — Thu Mar 06, 2008 4:29 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tueb]]></name></author>
		<updated>2008-03-06T14:52:39-04:00</updated>

		<published>2008-03-06T14:52:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81488#p81488</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81488#p81488"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81488#p81488"><![CDATA[
Hi,<br><br>using an rss-reader would do the trick.<br><br>tueb<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9349">tueb</a> — Thu Mar 06, 2008 2:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[DragnLord]]></name></author>
		<updated>2008-03-06T13:33:29-04:00</updated>

		<published>2008-03-06T13:33:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81485#p81485</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81485#p81485"/>
		<title type="html"><![CDATA[Re: PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81485#p81485"><![CDATA[
<blockquote class="uncited"><div>Hello guys<br><br>I have now my PHPbb TCL Script. Now i have a Problem, when someone post a thread he post also on the channel thats ok. But we have internal staff forums. And when someone post the bot write also our message:<br><br>e.g.<br>1.<br>« @ForumBot »  New topic!  on our board: <br>« @ForumBot »  CyberWar  about the subject StaffChat : <br><strong class="text-strong">« @ForumBot » Hello Test blaaaa </strong><br>« @ForumBot » Link: <a href="http://www.bla.bla/forum/viewtopic.php?t=194" class="postlink">www.bla.bla/forum/viewtopic.php?t=194</a>\ <br><br>I dont know where i can change....the script must write only this<br><br>2.<br>« @ForumBot »  New topic!  on our board: <br>« @ForumBot »  Nick: TestNick<br>« @ForumBot » Link: <a href="http://www.bla.bla/forum/viewtopic.php?t=194" class="postlink">www.bla.bla/forum/viewtopic.php?t=194</a>\ <br><br>I want this in the Point Two</div></blockquote>If you want support for the script, you have to either contact the script's author (at least make the attempt to do so) or post the script here (using 'Code' tags). <br>No one can help you with a script they do no see.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4461">DragnLord</a> — Thu Mar 06, 2008 1:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[lazy idiot]]></name></author>
		<updated>2008-03-06T13:12:36-04:00</updated>

		<published>2008-03-06T13:12:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81482#p81482</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81482#p81482"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81482#p81482"><![CDATA[
Hello!<br>I also have a script. We should become friends! <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><br>PS: You didn't say what script you're using.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9507">lazy idiot</a> — Thu Mar 06, 2008 1:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CyberWar]]></name></author>
		<updated>2008-03-06T11:51:44-04:00</updated>

		<published>2008-03-06T11:51:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81481#p81481</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81481#p81481"/>
		<title type="html"><![CDATA[PHPBB]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81481#p81481"><![CDATA[
Hello guys<br><br>I have now my PHPbb TCL Script. Now i have a Problem, when someone post a thread he post also on the channel thats ok. But we have internal staff forums. And when someone post the bot write also our message:<br><br>e.g.<br>1.<br>« @ForumBot »  New topic!  on our board: <br>« @ForumBot »  CyberWar  about the subject StaffChat : <br><strong class="text-strong">« @ForumBot » Hello Test blaaaa </strong><br>« @ForumBot » Link: <a href="http://www.bla.bla/forum/viewtopic.php?t=194" class="postlink">www.bla.bla/forum/viewtopic.php?t=194</a>\ <br><br>I dont know where i can change....the script must write only this<br><br>2.<br>« @ForumBot »  New topic!  on our board: <br>« @ForumBot »  Nick: TestNick<br>« @ForumBot » Link: <a href="http://www.bla.bla/forum/viewtopic.php?t=194" class="postlink">www.bla.bla/forum/viewtopic.php?t=194</a>\ <br><br>I want this in the Point Two<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9685">CyberWar</a> — Thu Mar 06, 2008 11:51 am</p><hr />
]]></content>
	</entry>
	</feed>
