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

	<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>2003-04-24T05:43:39-04:00</updated>

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

		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-04-24T05:43:39-04:00</updated>

		<published>2003-04-24T05:43:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=19370#p19370</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=19370#p19370"/>
		<title type="html"><![CDATA[where to define the pass command?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=19370#p19370"><![CDATA[
First off, many people say the same thing, "Why does mIRC do this but no eggdrop".<br><br>The answer? mIRC isn't eggdrop.<br><br>Simalar to talking about oil and water. They are both liquids, but are very different.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Thu Apr 24, 2003 5:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-04-24T04:49:30-04:00</updated>

		<published>2003-04-24T04:49:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=19367#p19367</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=19367#p19367"/>
		<title type="html"><![CDATA[where to define the pass command?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=19367#p19367"><![CDATA[
ähm.<br>thats my chat server.<br>it uses the Eshare(devine) Expressions chat software.<br>and this software has a depreciated irc server with it.<br><br>i dunno why it functions with mirc and do not function with eggdrop.<br><br>so u see no possibility? can i decode the messages in the packets? maybe that could help.....<p>Statistics: Posted by Guest — Thu Apr 24, 2003 4:49 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-04-24T04:43:44-04:00</updated>

		<published>2003-04-24T04:43:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=19366#p19366</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=19366#p19366"/>
		<title type="html"><![CDATA[where to define the pass command?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=19366#p19366"><![CDATA[
This simply sounds like the network you are on is not RFC complient, for which there is no cure, other than to ask the network to fix there servers (that is assuming they are not meant to be that way).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Thu Apr 24, 2003 4:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-04-23T12:11:01-04:00</updated>

		<published>2003-04-23T12:11:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=19354#p19354</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=19354#p19354"/>
		<title type="html"><![CDATA[where to define the pass command?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=19354#p19354"><![CDATA[
okay. i will try it. (so far i dunno where to put the script in the config.... but i'll try.)<br><br>what else can it be, i traced it. when i log in with mirc there comes some cryptic packets and then theres the first ping command.<br><br>with eggdrop it doesnt came to the ping command. the connection is broken bevore.<p>Statistics: Posted by Guest — Wed Apr 23, 2003 12:11 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-04-23T07:46:23-04:00</updated>

		<published>2003-04-23T07:46:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=19347#p19347</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=19347#p19347"/>
		<title type="html"><![CDATA[where to define the pass command?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=19347#p19347"><![CDATA[
Take a gander at RFC 1459 (The copy I am looking at is <a href="http://www.cis.ohio-state.edu/cgi-bin/rfc/rfc1459.html" class="postlink">HERE</a>)<br><br>Subsection 4.1.1 gives information on sending the pass command. It doesn't state packet order, so it only requires that PASS command be used before connection (which you stated it did).<br><br>The replies ERR_NEEDMOREPARAMS (461) and ERR_ALREADYREGISTERED (462) are returned. As such, it may be wise to capture these in a script, so that you can test this theory.<br><div class="codebox"><p>Code: </p><pre><code>set currss -1bind raw - 461 capt:461proc capt:461 {from key arg} {  if {!$::currss == } { putlog "Not enough args used in PASS command" }}bind raw - 462 capt:462proc capt:462 {from key arg} {  if {!$::currss} { putlog "Allready registered when sending PASS command" }}bind evnt - "%-server" capt:evntproc capt:evnt {t} {  switch -- $t {    {connect-server} { set $::currss 0 }    {init-server} { set $::currss 1 }    {disconnect-server} { set $::currss -1 }  }}</code></pre></div>This should give errors, only when the PASS commands fails, though I can't be sure.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Wed Apr 23, 2003 7:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-04-23T07:00:12-04:00</updated>

		<published>2003-04-23T07:00:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=19346#p19346</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=19346#p19346"/>
		<title type="html"><![CDATA[where to define the pass command?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=19346#p19346"><![CDATA[
okay.<br><br>i traced the network packets.<br>the eggdrop sends the pass command. but it sends it in the same packent as the nick command.<br>the Emule does it in extra packets and wait 4 server reply.<br><br>i dunno much about the irc protokoll, but the host doesnt let me in.<br><br>what else can i do?<p>Statistics: Posted by Guest — Wed Apr 23, 2003 7:00 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-04-20T09:15:02-04:00</updated>

		<published>2003-04-20T09:15:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=19284#p19284</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=19284#p19284"/>
		<title type="html"><![CDATA[where to define the pass command?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=19284#p19284"><![CDATA[
Defaine it along with the servers.<br><div class="codebox"><p>Code: </p><pre><code>set servers {irc.this.com:6667:passwordirc.that.com:6669:drowssap}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Sun Apr 20, 2003 9:15 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-04-17T16:37:56-04:00</updated>

		<published>2003-04-17T16:37:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=19186#p19186</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=19186#p19186"/>
		<title type="html"><![CDATA[where to define the pass command?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=19186#p19186"><![CDATA[
hi,<br><br>where can i define the pass command in eggdrop.<br><br> when i login at an irc server, there comes directly after the connect the "PASS &lt;key&gt;" bevore the "NICK ....." command comes.<br>so where can i define the pass?????<br><br><br>Thanks in advice<br>cmn<p>Statistics: Posted by Guest — Thu Apr 17, 2003 4:37 pm</p><hr />
]]></content>
	</entry>
	</feed>
