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

	<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>2011-04-03T13:03:28-04:00</updated>

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

		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2011-04-03T13:03:28-04:00</updated>

		<published>2011-04-03T13:03:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=96590#p96590</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=96590#p96590"/>
		<title type="html"><![CDATA[Re: SETIDENT Issue]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=96590#p96590"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>  puthelp "PRIVMSG $nickserv $identcmd $identpass"  putserv "SETIDENT NewIdent" </code></pre></div>See the problem...??<br><br>It's priority... To eggdrop here is the rule:<br><br>1) Any and all put-quick messages in the queue, send them all before any other.<br>2) Any and all put-serv messages in the queue, send them all after all put-quick messages are exhausted, but before any put-helps.<br>3) Lastly, any put-help messages in the queue, send them finally. After all put-quick and put-serv messages are exhausted.<br><br><br>So your problem, is when you ident, you are using puthelp. This message wont be sent right away. Next you putserv your ident set. This will actually be done before it has idented now. This won't be possible. So instead, try this... where those 2 lines above are.<div class="codebox"><p>Code: </p><pre><code>  putserv "PRIVMSG $nickserv $identcmd $identpass"  putserv "SETIDENT NewIdent" </code></pre></div>Now they are within the same queue priority and will happen in the predicted order they are in now.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Sun Apr 03, 2011 1:03 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[DragonRyder]]></name></author>
		<updated>2011-04-03T12:57:10-04:00</updated>

		<published>2011-04-03T12:57:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=96589#p96589</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=96589#p96589"/>
		<title type="html"><![CDATA[SETIDENT Issue]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=96589#p96589"><![CDATA[
Found a script by Xenogear. It has been changed some since I found it.<br>here is the code:<br><div class="codebox"><p>Code: </p><pre><code>#Put Your Server Identify Commandset identcmd "identify"#Put Your Bot Nick  Password"set identpass "SOMETHING"#Put Your NickServ Services Nickset nickserv "NickServ"# Change this to what nickserv says on connectionbind notc - "*This nickname is registered and protected*" identify:notc#It's Okay  Right Now ... Never Change It If U Are Beginner In Tcl Scriptsproc identify:notc { nick uhost handle text dest } {  global botnick nickserv identcmd identpass  if { $nick == $nickserv } {  puthelp "PRIVMSG $nickserv $identcmd $identpass"  putserv "SETIDENT NewIdent"  putlog "Identifying : $nickserv (as $botnick)" }}putlog "Nick Identify Script Has Been Loaded make by Blue ... Repaired By Xenogear"</code></pre></div>this part of the code is not working:<br><div class="codebox"><p>Code: </p><pre><code>putserv "SETIDENT NewIdent"</code></pre></div>Am I doing something wrong here? I Looked through the forums, and found the SETIDENT in 2 post and mine matches what is in the archives from back in 2001. I understand code does change some over time and this is 2011 (tens years since the archive messages i found)<br><br>Can anyone help me figure out what I am doing wrong? Running an UnrealIRCd Network with Anope Services (latest stable of both).<br><br>In mIRC for the fun of it i ran a timer that made me change my own ident using the /SETIDENT command and doing a whois to see it had changed, and it had. but for some reason it is not working from within the TCL script.<br><br>ps i even tried putquick and puthelp, nothing has worked so far.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9485">DragonRyder</a> — Sun Apr 03, 2011 12:57 pm</p><hr />
]]></content>
	</entry>
	</feed>
