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

	<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>2015-01-20T02:25:57-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Arnold_X-P]]></name></author>
		<updated>2015-01-20T02:25:57-04:00</updated>

		<published>2015-01-20T02:25:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103435#p103435</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103435#p103435"/>
		<title type="html"><![CDATA[Re: identify.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103435#p103435"><![CDATA[
<strong class="text-strong">and I dress the tcl and readjustment some things</strong><br>it works in dalnet and supports other networks that they use nickserv <br> <div class="codebox"><p>Code: </p><pre><code>##########################################################    # Script: Auto identify           # You are free to edit #    # Version: 1.0.0                  # this script as much  #    # Author: Alien                   # as you want as long  #    # Email:  alien@irctools.org      # as you keep my name  #    # Web:    www.weaklink.ws/~alien/ # in credits.          #   # updated for Arnold_X-P  /server irc.dal.net channel #tcls chatzona channel #eggdrop.conf   #    # email  routing@outlook.com   #    ##########################################################    # This script will automatically  # Feel free to email   #    # identify your bot's nick to     # me with suggestions  #    # nickserv. It works on all       # or bugs.             #    # services versions with classic  #                      #    # command for identifying         #                      #    ##########################################################         ###    # Configuration starts here    ###         #    # Bot's nickname password         set ident_pass "your-pass-bot"   # here place its registered nickname      set botname "my-nicknameBot-registered"         # Nickname of nick identifying service    # In most cases it is NickServ         set ident_service "NickServ"     set ident_servicES "Nick"         # Command for identifying:    # 0 - /NickServ IDENTIFY password  (old anope 1.8.9)    # 1 - /NickServ IDENTIFY nick password  (chatzona e hispano)    # 2 - /NickServ IDENTIFY botname-registered password  (recommended option - dalnet, new anope 2.0 or later)         set ident_cmd "2"         #!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#    #                 Configuration ends here                 #    # You shouldn't edit anything below unless you know how.  #    #!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#         # The mighty bind         bind notc - "*This nick* is*" ident_id    bind notc - "*Este nick est* registrado*" ident_id   bind msgm - "*Este nick est* registrado*" ident_id         # Now the proc              proc ident_id { nick uhost hand text dest } {    global botnick  botname ident_pass ident_service ident_cmd ident_servicES       if {$nick == $ident_service} {     if {$ident_cmd == "0"} {       putquick "$ident_service :IDENTIFY $ident_pass" -next         putlog "ALI: Identifying to $ident_service as requested."       }   if {$ident_cmd == "1"} {    putquick "PRIVMSG $ident_servicES :IDENTIFY $botname $ident_pass" -next }    if {$ident_cmd == "2"} {      putquick "$ident_service IDENTIFY $botname $ident_pass" -next         putlog "ALI: Identifying to $ident_service as requested."       }    } }     putlog "ALI: Loaded Auto Identify TCL by Alien - updated for Arnold_X-P date 20/01/2015"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8327">Arnold_X-P</a> — Tue Jan 20, 2015 2:25 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sanzen]]></name></author>
		<updated>2014-12-26T14:05:22-04:00</updated>

		<published>2014-12-26T14:05:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103406#p103406</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103406#p103406"/>
		<title type="html"><![CDATA[Re: identify.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103406#p103406"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div>For some reason I have been having problems with simple tcl scripts for my eggdrop. I have been trying to get ?8ball and holdem to work for about 2 days and can't figure it out and I'm not sure why.  </div></blockquote><blockquote class="uncited"><div>First, be sure that your scripts are even loading.   Use the <br>binds<br>command to check.<br>In the partyline do:   <br>.help binds      <br>to read about it.  In the scripts, find the binds and compare.  With the .binds command,  if you don't find the binds that are in the scripts  then your scripts are not loading.<br><br>If you do find the binds with the .binds command - then noted the number in the Hits column.   Then go test again - try to trigger the script.<br>Then check again with the .binds command in the partyline.   The Hits counter should have incremented.  If not, then that's something to troubleshoot.</div></blockquote>hmm, that is something I never knew. Apparently I need to set google to work in the channel. I did not remember ever having to .chanset +google for this script. <br><blockquote class="uncited"><div>Check out:<br><a href="http://forum.egghelp.org/viewtopic.php?p=95379#95379" class="postlink">http://forum.egghelp.org/viewtopic.php?p=95379#95379</a><br>That shows one way to do it, with just one line of code added to eggdrop.conf.<br>It may need small edits, depending on how the network wants the id sent.</div></blockquote>I added the script you linked me to. It worked like a charm! Thank you!<br><br><blockquote class="uncited"><div>How do you know?</div></blockquote>I thought they were loading fine because I was receiving no errors when rehashing and restarting the bot.<br><br>Thank You for the help! I greatly appreciate it! <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12330">Sanzen</a> — Fri Dec 26, 2014 2:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2014-12-26T11:15:26-04:00</updated>

		<published>2014-12-26T11:15:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103403#p103403</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103403#p103403"/>
		<title type="html"><![CDATA[Re: identify.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103403#p103403"><![CDATA[
<blockquote class="uncited"><div>For some reason I have been having problems with simple tcl scripts for my eggdrop. I have been trying to get ?8ball and holdem to work for about 2 days and can't figure it out and I'm not sure why.  </div></blockquote>First, be sure that your scripts are even loading.   Use the <br>binds<br>command to check.<br>In the partyline do:   <br>.help binds      <br>to read about it.  In the scripts, find the binds and compare.  With the .binds command,  if you don't find the binds that are in the scripts  then your scripts are not loading.<br><br>If you do find the binds with the .binds command - then noted the number in the Hits column.   Then go test again - try to trigger the script.<br>Then check again with the .binds command in the partyline.   The Hits counter should have incremented.  If not, then that's something to troubleshoot.<br><br><br><blockquote class="uncited"><div>... and while I was at it, I'd finally put an auto identify script on there so my eggdrop gets op when it joins. <br>I have tried 4 scripts to no avail. </div></blockquote>Check out:<br><a href="http://forum.egghelp.org/viewtopic.php?p=95379#95379" class="postlink">http://forum.egghelp.org/viewtopic.php?p=95379#95379</a><br>That shows one way to do it, with just one line of code added to eggdrop.conf.<br>It may need small edits, depending on how the network wants the id sent.<br><blockquote class="uncited"><div>Everything loads fine </div></blockquote>How do you know?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Fri Dec 26, 2014 11:15 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sanzen]]></name></author>
		<updated>2014-12-26T00:37:21-04:00</updated>

		<published>2014-12-26T00:37:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103401#p103401</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103401#p103401"/>
		<title type="html"><![CDATA[identify.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103401#p103401"><![CDATA[
For some reason I have been having problems with simple tcl scripts for my eggdrop. I have been trying to get ?8ball and holdem to work for about 2 days and can't figure it out and I'm not sure why. I figured I'd reinstall my eggdrop and start from scratch and while I was at it, I'd finally put an auto identify script on there so my eggdrop gets op when it joins. <br>I have tried 4 scripts to no avail. <br>The latest one being <a href="http://pastebin.com/FzC0QzRe" class="postlink">http://pastebin.com/FzC0QzRe</a><br>Everything loads fine but the bot never becomes identified and I've no idea why. Can someone point me in the right direction?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12330">Sanzen</a> — Fri Dec 26, 2014 12:37 am</p><hr />
]]></content>
	</entry>
	</feed>
