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

	<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-05-30T10:25:53-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Weirdo]]></name></author>
		<updated>2003-05-30T10:25:53-04:00</updated>

		<published>2003-05-30T10:25:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20941#p20941</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20941#p20941"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20941#p20941"><![CDATA[
Yup, that worked. Cant believe it was such a simple error. but it is now triggering Putlog 3a, which is what wasnt happening. <br><blockquote class="uncited"><div>[15:25:25] &lt;Natsuki-Chan&gt; [15:25] 1<br>[15:25:25] &lt;Natsuki-Chan&gt; [15:25] 2<br>[15:25:25] &lt;Natsuki-Chan&gt; [15:25] 3a<br>[15:25:25] &lt;Natsuki-Chan&gt; [15:25] -NOTICE- Weirdo!Seb@213.106.125.41 ACCESS [#catgirls] LIST</div></blockquote>Getting past the checks nicely <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=1195">Weirdo</a> — Fri May 30, 2003 10:25 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Papillon]]></name></author>
		<updated>2003-05-26T11:15:39-04:00</updated>

		<published>2003-05-26T11:15:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20701#p20701</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20701#p20701"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20701#p20701"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>if {[string match -nocase $text $nserv(warning)] == 1} {</code></pre></div>this line is wrong, first of I bet you want it to react when the text match, not when it doesn't, right now it hops to the else command when it doesn't match. Also you need to change the position of $text and $nserv(warning) ... make the line like this:<div class="codebox"><p>Code: </p><pre><code>if {![string match -nocase $nserv(warning) $text]} {</code></pre></div>and give it another try<br><br>Just a small side-notice <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br>When binding raw NOTICE, $text won't just include the text of the notice, it will first hold the destination for the notice... in this case the botnick <br>so infact the reply will look like this:<br>from= "X!<a href="mailto:service@someservicebots.host">service@someservicebots.host</a>" key="NOTICE" text="botnick :the text sent to the bot"<br>* this was just a small notice to anyone else wondering about the raw NOTICE bind <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=852">Papillon</a> — Mon May 26, 2003 11:15 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Weirdo]]></name></author>
		<updated>2003-05-26T06:45:27-04:00</updated>

		<published>2003-05-26T06:45:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20684#p20684</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20684#p20684"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20684#p20684"><![CDATA[
Well, i thought i would come back, after fiddling with the script this morning. I added some major logging to the script, to test the logic<br><div class="codebox"><p>Code: </p><pre><code>set cserv(services) "Services.Aniverse.Com"set nserv(warning) "*This nickname is owned*"proc nserv:notc {from keyword text} { global cserv nserv if {[string equal -nocase $from $cserv(services)] != 1} { return 0 } putlog "1"if {[info exists nserv(check)]} { if {($nserv(check) + 45) &gt; [unixtime]} { return 0 }}putlog "2"if {[string match -nocase $text $nserv(warning)] == 1} { putlog "3a"return 0} else { putlog "3b"putserv "Privmsg $nserv(nick) :Identify $nserv(pass)" putcmdlog "Nickserv Auto-Trigger Completed" putserv "Privmsg $cserv(nick) :Op $::runchan"} putlog "4"set nserv(check) [unixtime]utimer 15 [list catch [list unset nserv(check)]] putlog "5" return 0 } </code></pre></div>To Trigger on &lt;Natsuki-Chan&gt; [11:40] -NOTICE- This nickname is owned by someone else<br><br>And on that trigger ONLY, run the script<br><br>But...<br><blockquote class="uncited"><div>[11:40:28] &lt;Natsuki-Chan&gt; [11:40] Regained nickname 'Natsuki-Chan'.<br>[11:40:28] &lt;Natsuki-Chan&gt; [11:40] 1<br>[11:40:28] &lt;Natsuki-Chan&gt; [11:40] 2<br>[11:40:28] &lt;Natsuki-Chan&gt; [11:40] 3b<br>[11:40:28] &lt;Natsuki-Chan&gt; [11:40] Nickserv Auto-Trigger Completed<br>[11:40:28] &lt;Natsuki-Chan&gt; [11:40] 4<br>[11:40:28] &lt;Natsuki-Chan&gt; [11:40] 5<br>[11:40:28] &lt;Natsuki-Chan&gt; [11:40] -NOTICE- This nickname is owned by someone else<br>[11:40:28] &lt;Natsuki-Chan&gt; [11:40] 1<br>[11:40:28] &lt;Natsuki-Chan&gt; [11:40] -NOTICE- If this is your nickname, type /msg NickServ IDENTIFY &lt;password&gt;</div></blockquote>does trigger on the message...<br><br>but also ...<br><blockquote class="uncited"><div>[11:44:08] &lt;Natsuki-Chan&gt; [11:44] 1<br>[11:44:08] &lt;Natsuki-Chan&gt; [11:44] 2<br>[11:44:08] &lt;Natsuki-Chan&gt; [11:44] 3b<br>[11:44:08] &lt;Natsuki-Chan&gt; [11:44] Nickserv Auto-Trigger Completed<br>[11:44:08] &lt;Natsuki-Chan&gt; [11:44] 4<br>[11:44:08] &lt;Natsuki-Chan&gt; [11:44] 5<br>[11:44:08] &lt;Natsuki-Chan&gt; [11:44] -NOTICE- Weirdo!<a href="mailto:Seb@public2-ward1-6-cust41.oldh.broadband.ntl.com">Seb@public2-ward1-6-cust41.oldh.broadband.ntl.com</a> ACCESS [#catgirls] LIST  </div></blockquote>Now for some reason, even using the String Match, and String Equal, it just doesnt check it right. Is there any other way i can check one thing against another, cause right now, am out of ideas<br><br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1195">Weirdo</a> — Mon May 26, 2003 6:45 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Weirdo]]></name></author>
		<updated>2003-05-18T11:17:20-04:00</updated>

		<published>2003-05-18T11:17:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20360#p20360</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20360#p20360"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20360#p20360"><![CDATA[
set nserv(warning) "*nickname is owned*"<br><br>Thats what the warning variable is. What other logic could i add? I checked who the notice is from, services, i checking what the warning has to be, and i am checking for flood protection<br><br>What else could be added?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1195">Weirdo</a> — Sun May 18, 2003 11:17 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-05-18T06:26:43-04:00</updated>

		<published>2003-05-18T06:26:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20353#p20353</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20353#p20353"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20353#p20353"><![CDATA[
I did say it wasn't complete.<br><br>It needs more logic adding, to make sure it only responds to the commands you want.<br><div class="codebox"><p>Code: </p><pre><code>if {[string equal -nocase $text $nserv(warning)] != 1} {</code></pre></div>You need to make sure the $nserv(warning) variable is set to the correct value.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Sun May 18, 2003 6:26 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Weirdo]]></name></author>
		<updated>2003-05-18T03:31:41-04:00</updated>

		<published>2003-05-18T03:31:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20352#p20352</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20352#p20352"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20352#p20352"><![CDATA[
and in further playing, i discovered it was my logic that was screwing it up <br><div class="codebox"><p>Code: </p><pre><code>if {[string equal -nocase $text $nserv(warning)] != 0} { return 0} else { putserv "Privmsg $nserv(nick) :Identify $nserv(pass)" putcmdlog "Nickserv Auto-Trigger Completed" putserv "Privmsg $cserv(nick) :Op $::runchan"} </code></pre></div>dangit, thought that would have fixed it, but alas, it didnt<br><blockquote class="uncited"><div>[08:32:18] &lt;Natsuki-Chan&gt; [08:32] -NOTICE- Weirdo!<a href="mailto:Seb@public2-ward1-6-cust41.oldh.broadband.ntl.com">Seb@public2-ward1-6-cust41.oldh.broadband.ntl.com</a> ACCESS [#catgirls] LIST  <br>[08:32:18] &lt;Natsuki-Chan&gt; [08:32] -NOTICE- You have already identified<br>[08:32:19] &lt;Natsuki-Chan&gt; [08:32] -NOTICE- You are already opped on [#catgirls]</div></blockquote>dangit<br><br>Sorry for double post, cant delete it seems<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1195">Weirdo</a> — Sun May 18, 2003 3:31 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Weirdo]]></name></author>
		<updated>2003-05-18T03:16:47-04:00</updated>

		<published>2003-05-18T03:16:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20351#p20351</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20351#p20351"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20351#p20351"><![CDATA[
hi, problem cropped up. Took me a while to notice it. <br><br>Now, thanks to the flood protection you build ppslim, it isnt causing too much problems, but the script IS responding to all Services notices, and is trying to complete a trigger on them all<br><br>Checked it this morning after reading some log files<br><blockquote class="uncited"><div>[08:13:47] &lt;Natsuki-Chan&gt; [08:13] Nickserv Auto-Trigger Completed<br>[08:13:47] &lt;Natsuki-Chan&gt; [08:13] -NOTICE- Cyber_Akuma!<a href="mailto:Tendo847@12-248-42-33.client.attbi.com">Tendo847@12-248-42-33.client.attbi.com</a> ACCESS [#catgirls] ADD princessv 8</div></blockquote><br>Any idea why the first if statement isnt being validated right?<br><div class="codebox"><p>Code: </p><pre><code>if {[string equal -nocase $text $nserv(warning)]} { putserv "Privmsg $cserv(nick) :Op $::runchan" } else { putserv "Privmsg $nserv(nick) :Identify $nserv(pass)" putcmdlog "Nickserv Auto-Trigger Completed" } </code></pre></div>Did some testing, and got the bot ignored on services again, came up with this<br><div class="codebox"><p>Code: </p><pre><code>if {[string equal -nocase $text $nserv(warning)] != 1} { putlog "Test"return 1} else { putserv "Privmsg $nserv(nick) :Identify $nserv(pass)" putcmdlog "Nickserv Auto-Trigger Completed" putserv "Privmsg $cserv(nick) :Op $::runchan"} </code></pre></div>Problem that i created now, is that i cant see the notices in the dcc chat, that are from services, they all come out as<br><blockquote class="uncited"><div>[08:27:40] &lt;Natsuki-Chan&gt; Msg to nickserv: help<br>[08:27:41] &lt;Natsuki-Chan&gt; [08:27] Test<br>[08:27:42] &lt;Natsuki-Chan&gt; [08:27] Test</div></blockquote>And it seems it still doesnt work, any ideas?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1195">Weirdo</a> — Sun May 18, 2003 3:16 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-05-12T05:45:41-04:00</updated>

		<published>2003-05-12T05:45:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20097#p20097</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20097#p20097"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20097#p20097"><![CDATA[
Too be honest.<br><br>I don't know!<br><br>I am guessing your bot is called natsuki-chan?<br><br>If so, then your bot should call the notice bind, as the putlogs sugest the information is complete enough to do so.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Mon May 12, 2003 5:45 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Weirdo]]></name></author>
		<updated>2003-05-12T05:36:50-04:00</updated>

		<published>2003-05-12T05:36:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20095#p20095</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20095#p20095"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20095#p20095"><![CDATA[
And it looks like it works. Triggers on EVERY notice, but only responds to the specific services one. <br><br>Now the basic functionality is down, and i have seen where i screwed up, can use this to expand the script into auto-ghosting.<br><br>Something i have actually noticed is that the majority of the nickserv scripts, if not all, rely on a "notc" bind to detect the messages from services. Only one i have encountered doesnt do this, and this relies on identifying to services every 5/10 minutes, and running various checks to make sure it hasnt done so immediately before. <br><br>Did the "notc" bind use to work for server notices? Perhaps in an earlier version?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1195">Weirdo</a> — Mon May 12, 2003 5:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-05-12T05:02:01-04:00</updated>

		<published>2003-05-12T05:02:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20094#p20094</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20094#p20094"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20094#p20094"><![CDATA[
OK - Answering questions in random order (like I do best).<br><br>1: The OP command is there, because you ahd it there. Please refer to previous statments in the post.<br><br>2: The array element will be dlated upon unset. That is the whole idea of the unset command.<br><br>3: It is my fault you get the error<div class="codebox"><p>Code: </p><pre><code>if {[info exists $nserv(check)]} { return 0 }</code></pre></div>Should be<div class="codebox"><p>Code: </p><pre><code>if {[info exists nserv(check)]} { return 0 }</code></pre></div>Note the $<br><br>The unset command takes a variable name, and not it's value.<br><br>4: Yes, you are very correct, the catch statment does catch errors, and is precicly what we are trying to catch.<br><div class="codebox"><p>Code: </p><pre><code>% set a "hello to all"hello to all% set ahello to all% unset a% set acan't read "a": no such variable% unset acan't unset "a": no such variable</code></pre></div>Notice how it errors when a doesn't exist, but you try and unset it.<br><br>You can drop the catch part, as an error should never occur (once the variable is set, there is no way to trigger the timer again, thus, no way to double unset (which causes the error)).<br><br><strong class="text-strong"><span style="text-decoration:underline"><em class="text-italics">5:</em></span></strong><br>I would however, sugest the following change to the script, to make it a little more less issue prone.<br><br>Replace the flood protection IF with this.<div class="codebox"><p>Code: </p><pre><code>if {[info exists nserv(check)]} {  if {($nserv(check) + 60) &gt; [unixtime]} { return 0 }}</code></pre></div>Then change the set line to<div class="codebox"><p>Code: </p><pre><code>set nserv(check) [unixtime]</code></pre></div>Another script could possibly delete the timer to unset the variable. If this happens, you script will forever remain in flood protection mode. This change will allow it to continue if after 60 seconds, it hasn't unset itself.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Mon May 12, 2003 5:02 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Weirdo]]></name></author>
		<updated>2003-05-11T20:01:55-04:00</updated>

		<published>2003-05-11T20:01:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20077#p20077</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20077#p20077"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20077#p20077"><![CDATA[
One or two queries<br><br>First, the Catch in the utimer statement. I thought that was for getting errors?<br><br>Second, the script fails to trigger, i inserted a putlog to make sure the bind was triggering, it was, but was returning 0<br><br>Changed the Warning variable to the full message nickserv gives, and i got the Array warning for the check variable<br><blockquote class="uncited"><div>[00:54:44] &lt;Natsuki-Chan&gt; [00:54] Connected to irc-1.aniverse.com<br>[00:54:44] &lt;Natsuki-Chan&gt; [00:54] Trigger Successful<br>[00:54:44] &lt;Natsuki-Chan&gt; [00:54] Tcl error [nserv:reboot]: can't read "nserv(check)": no such element in array<br>[00:54:44] &lt;Natsuki-Chan&gt; [00:54] -NOTICE- *** Looking up your hostname...<br>[00:54:45] &lt;Natsuki-Chan&gt; [00:54] Trigger Successful<br>[00:54:45] &lt;Natsuki-Chan&gt; [00:54] Tcl error [nserv:reboot]: can't read "nserv(check)": no such element in array<br>[00:54:45] &lt;Natsuki-Chan&gt; [00:54] -NOTICE- *** Checking Ident<br>[00:54:45] &lt;Natsuki-Chan&gt; [00:54] Trigger Successful<br>[00:54:45] &lt;Natsuki-Chan&gt; [00:54] Tcl error [nserv:reboot]: can't read "nserv(check)": no such element in array</div></blockquote>the Problem of it triggering on every notice, including those given when the  bot is connecting to a server is confusing me a little. The array warning is give on this line <br><div class="codebox"><p>Code: </p><pre><code>  if {[info exists $nserv(check)] == 1} {return 0}</code></pre></div>what confuses me is that i thought that "info exists" only looks for it. If that variable is unset, wouldnt its array entry remain? Perhaps a change of variable is needed?<br><br>Thirdly, the op command in the other if statement, not sure what thats was for?<br><br>Thanks for the patience again ppslim, these threads that i make tend to go on for quite a bit. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> thank you for the help<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1195">Weirdo</a> — Sun May 11, 2003 8:01 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-05-11T14:49:20-04:00</updated>

		<published>2003-05-11T14:49:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20069#p20069</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20069#p20069"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20069#p20069"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>proc nserv:reboot {from keyword text} {   global cserv nserv   if {[string equal -nocase $from "services.aniverse.com"]} { return 0 }  if {[info exists $nserv(check)] == 1} {return 0}   if {[string equal -nocase $text $nserv(warning)]} {    putserv "Privmsg $cserv(nick) :Op $::runchan"  } else {    putserv "Privmsg $nserv(nick) :Identify $nserv(pass)"     putcmdlog "Nickserv Rebooted, Re-identified"   }  set nserv(check) "1"   utimer 20 [list catch [list unset nserv(check)]]      return 0 }</code></pre></div>Try that.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Sun May 11, 2003 2:49 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Weirdo]]></name></author>
		<updated>2003-05-11T12:58:58-04:00</updated>

		<published>2003-05-11T12:58:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20062#p20062</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20062#p20062"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20062#p20062"><![CDATA[
<blockquote class="uncited"><div>[16:03:22] -Services.Aniverse.Com- This nickname is owned by someone else<br>-<br>[16:03:22] -Services.Aniverse.Com- If this is your nickname, type /msg NickServ IDENTIFY &lt;password&gt;<br>-<br>[16:03:22] -Services.Aniverse.Com- If you do not IDENTIFY within 60 seconds, you nickname will be changed</div></blockquote>this is what aniverse gives you when you change nick to a registered one<br><br>I programmed the script to use the first notice, rather than the 2nd, to identify<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1195">Weirdo</a> — Sun May 11, 2003 12:58 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-05-11T07:42:44-04:00</updated>

		<published>2003-05-11T07:42:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20048#p20048</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20048#p20048"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20048#p20048"><![CDATA[
And what is the one to ask you to identify?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Sun May 11, 2003 7:42 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Weirdo]]></name></author>
		<updated>2003-05-11T02:39:27-04:00</updated>

		<published>2003-05-11T02:39:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20031#p20031</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20031#p20031"/>
		<title type="html"><![CDATA[Help with Server Notice binds]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20031#p20031"><![CDATA[
<blockquote class="uncited"><div>[21:17] -NOTICE- Weirdo!<a href="mailto:Seb@public2-ward1-6-cust41.oldh.broadband.ntl.com">Seb@public2-ward1-6-cust41.oldh.broadband.ntl.com</a> ACCESS [#catgirls] LIST  <br>[21:18] Notice From &gt; Services.Aniverse.Com<br>[21:18] Notice Keywork &gt; NOTICE<br>[21:18] notice Text &gt; natsuki-chan :You have already identified</div></blockquote>the first one uses the From variable, second, keyword, third text<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1195">Weirdo</a> — Sun May 11, 2003 2:39 am</p><hr />
]]></content>
	</entry>
	</feed>
