<?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/6793" />

	<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>2005-08-17T05:30:16-04:00</updated>

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

		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-08-17T05:30:16-04:00</updated>

		<published>2005-08-17T05:30:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=54376#p54376</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=54376#p54376"/>
		<title type="html"><![CDATA[Translate TCL to C++ Please!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=54376#p54376"><![CDATA[
it is a joke yet it provides all you need to know to start programming eggdrop modules<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Wed Aug 17, 2005 5:30 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Galadhrim]]></name></author>
		<updated>2005-08-17T04:58:11-04:00</updated>

		<published>2005-08-17T04:58:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=54373#p54373</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=54373#p54373"/>
		<title type="html"><![CDATA[Translate TCL to C++ Please!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=54373#p54373"><![CDATA[
the woobie.mod is a joke, there is a mod out called something like sheep.mod. its a bit more advanced. Ask questions here about certains things and we can help you...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2999">Galadhrim</a> — Wed Aug 17, 2005 4:58 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2005-08-14T10:26:52-04:00</updated>

		<published>2005-08-14T10:26:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=54241#p54241</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=54241#p54241"/>
		<title type="html"><![CDATA[Translate TCL to C++ Please!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=54241#p54241"><![CDATA[
I have started something similar, but it isn't as easy as it might look in the first place. So my "project rewrite your tcl scripts to C modules" is currently delayed till... well.. till I get down to business again <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy">.<br><br>There is a module called "woobie.mod" which shows you how to init a module.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Sun Aug 14, 2005 10:26 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[makam]]></name></author>
		<updated>2005-08-09T12:28:42-04:00</updated>

		<published>2005-08-09T12:28:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53955#p53955</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53955#p53955"/>
		<title type="html"><![CDATA[Translate TCL to C++ Please!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53955#p53955"><![CDATA[
Well, here u have...<br>Remember u can read the eggdrop core source code (and modules),<br>and learn from there.....<br><br><div class="codebox"><p>Code: </p><pre><code>static char *stats_channel = "#Channe1";static char *stats_url = "http://www.google.com/bsd";static cmd_t stats_pub[] = { {"!stats",   NULL, stats_trigger,    NULL}, {NULL,   NULL, NULL,       NULL}};static int stats_trigger(char *nick, char *host, char *hand, char *channel, char *text) {                    if (!egg_strcasecmp(hannel,stats_channel)) {dprintf(DP_SERVER, "PRIVMSG %s :\002Stats\002: %s stats at \00304%s\00304",channel,channel, stats_url);}return 0;}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5167">makam</a> — Tue Aug 09, 2005 12:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Galadhrim]]></name></author>
		<updated>2004-10-29T10:50:06-04:00</updated>

		<published>2004-10-29T10:50:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=42385#p42385</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=42385#p42385"/>
		<title type="html"><![CDATA[Translate TCL to C++ Please!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=42385#p42385"><![CDATA[
and btw modules are written in C not C++. C++ is for object oriented program which eggdrop isnt.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2999">Galadhrim</a> — Fri Oct 29, 2004 10:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Galadhrim]]></name></author>
		<updated>2004-03-07T14:57:33-04:00</updated>

		<published>2004-03-07T14:57:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34339#p34339</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34339#p34339"/>
		<title type="html"><![CDATA[Translate TCL to C++ Please!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34339#p34339"><![CDATA[
You cant expect people to do the work for you. I'll have to translate it yourself  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_confused.gif" width="15" height="15" alt=":-?" title="Confused"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2999">Galadhrim</a> — Sun Mar 07, 2004 2:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-02-08T16:10:48-04:00</updated>

		<published>2004-02-08T16:10:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=33346#p33346</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=33346#p33346"/>
		<title type="html"><![CDATA[Translate TCL to C++ Please!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=33346#p33346"><![CDATA[
anyone please?<p>Statistics: Posted by Guest — Sun Feb 08, 2004 4:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-02-07T21:37:30-04:00</updated>

		<published>2004-02-07T21:37:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=33321#p33321</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=33321#p33321"/>
		<title type="html"><![CDATA[Translate TCL to C++ Please!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=33321#p33321"><![CDATA[
Hello, I really wanted to learn how to code eggdrop modules using C/C++ language.  I just wanted to see how it work really..<br><br>Below is my TCL code I wrote, I wanted you to translate that Language in to C++ eggdrop modules if you can please (including header file if necessary,etc) <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> <br><br>Once you have coded that in to eggdrop module – please attachment the file.<br><br><br><div class="codebox"><p>Code: </p><pre><code># Channelset channel "#Channe1"# Trigger commandset trigger !stats# URL of pisg statsset url "http://www.google.com/bsd"proc stats_trigger {nick uhost handle chan test} {global channel urlforeach x $channel {if {[string match -nocase $chan $x]} {    putserv "PRIVMSG $chan :\002Stats\002: $chan stats at \00304$url\00304"  } }}bind pub - $trigger stats_trigger</code></pre></div><p>Statistics: Posted by Guest — Sat Feb 07, 2004 9:37 pm</p><hr />
]]></content>
	</entry>
	</feed>
