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

	<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-09-07T14:40:24-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-09-07T14:40:24-04:00</updated>

		<published>2003-09-07T14:40:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26705#p26705</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26705#p26705"/>
		<title type="html"><![CDATA[Auth Help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26705#p26705"><![CDATA[
a auth msg command won't do any good. you have to make the auth command have a meaning.<br><br>for example if a user auth himself then the bot will give him the +o flag which will let him use the public commands.<br><br>I can suggest using cmd_chan.tcl with cmd_ath.tcl<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Sep 07, 2003 2:40 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Dedan]]></name></author>
		<updated>2003-09-07T13:28:25-04:00</updated>

		<published>2003-09-07T13:28:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26699#p26699</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26699#p26699"/>
		<title type="html"><![CDATA[Auth Help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26699#p26699"><![CDATA[
Why not use the user flags in the binds?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3472">Dedan</a> — Sun Sep 07, 2003 1:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-09-07T13:26:13-04:00</updated>

		<published>2003-09-07T13:26:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26698#p26698</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26698#p26698"/>
		<title type="html"><![CDATA[auth]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26698#p26698"><![CDATA[
no i got one for nickserv  etc     its so only ppl  that  auth threw my bot can use my public commands   in the tcl i made<p>Statistics: Posted by Guest — Sun Sep 07, 2003 1:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Dedan]]></name></author>
		<updated>2003-09-07T13:21:02-04:00</updated>

		<published>2003-09-07T13:21:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26697#p26697</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26697#p26697"/>
		<title type="html"><![CDATA[Auth Help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26697#p26697"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>#######################################################################                 Nickserv identification Script                     ######################################################################## ident.v1.2.tcl## Script will check to see if NICKSERV is online and identify.# #                      - Commands - #  DCC - .ident (start ident procedure)  .getops (get OPs)#  MSG - .ident (start ident procedure)  .getops (get OPs)# It is good to add NickServ as a user to stop ignores.# In DCC, TYPE:#   .+user NickServ *!service@dal.net#   .chattr NickServ +of-p#   .chpass NickServ VOID12345# load this script in the scripts directory (eggdrop/scripts) # Then go into the eggdrop directory and edit your .conf (at the bottom)# by adding this line: # source scripts/ident.v1.2.tcl  # Then in dcc type: .rehash and .ident# This is NOT case sensitiveset NickServ "NickServ"# Set the bots nickname here.set i_nick "put bots nick here"# Set channels the bot has OPs on. (use "" for all channels)# Multiple channels seperated by spaces.set i_chans ""# Set the bots ident password here.set i_pass "put botnicks ident password here"# Set the amount of time in minutes to check if nickserv is online.set i_timer 5# Set the amount of time in seconds before bot changes # to primary nick "after" the ghost command was used.set i_gost_timer 60#######################################################################                          Main Script                               ######################################################################## init-serverbind evnt -|- init-server find:Nservproc find:Nserv {type} {  putserv "ISON Nickserv"}# raw Nickserv is on-linebind raw -|- 303 Nserv:isonlineproc Nserv:isonline {from keyword text} {  global botnick NickServ i_nick i_pass i_gost_timer i_timer  if {[string match -nocase "*$NickServ*" "$text"]} {    if {[isbotnick $i_nick]} {      putserv "PRIVMSG NickServ@services.dal.net :IDENTIFY $i_pass"      # putserv "NICKSERV IDENTIFY $i_pass"      return 0    } else {      putserv "PRIVMSG NickServ@services.dal.net :GHOST $i_nick $i_pass"      # putserv "NICKSERV GHOST $i_nick $i_pass"      utimer $i_gost_timer {putserv "NICK $i_nick"}      return 0    }  } else {       timer $i_timer find:Nserv  }}bind notc -|- "*owned by someone else*" identify:rbotproc identify:rbot {nick uhost handle text dest} {   global botnick NickServ i_nick i_pass  if {[string match -nocase "*$NickServ*" "$nick"]} {    if {[isbotnick $i_nick]} {      putserv "PRIVMSG NickServ@services.dal.net :IDENTIFY $i_pass"      # putserv "NICKSERV IDENTIFY $i_pass"    }  }}# Successful Identbind notc -|- "*Password accepted*" ident:successproc ident:success {nick uhost handle text dest} {  global botnick NickServ i_chans  if {[string match -nocase "*$NickServ*" "$nick"]} {    if {$i_chans == ""} {      set chans [channels]    } else {       set chans $i_chans    }    foreach chan $chans {      if {[botonchan $chan]} {        if {![botisop $chan]} {          putserv "PRIVMSG CHANSERV@services.dal.net :OP $chan $botnick"          # putserv "CHANSERV OP $chan $botnick"        }      }    }  }}# DCC Commands  Ident &amp; getopsbind dcc o ident dcc:identproc dcc:ident {handle idx text} {  global botnick i_nick i_pass i_gost_timer  putlog "Started Ident Procedure at the request of $handle"  if {[isbotnick $i_nick]} {    putserv "PRIVMSG NickServ@services.dal.net :IDENTIFY $i_pass"    # putserv "NICKSERV IDENTIFY $i_pass"    return 0  } else {    putserv "PRIVMSG NickServ@services.dal.net :GHOST $i_nick $i_pass"    # putserv "NICKSERV GHOST $i_nick $i_pass"    utimer $i_gost_timer {putserv "NICK $i_nick"}    return 0  }}bind dcc o getops dcc:getopsproc dcc:getops {handle idx text} {  global botnick i_chans  putlog "Started getOPs Procedure at the request of $handle"  if {$i_chans == ""} {    set chans [channels]  } else {     set chans $i_chans  }  foreach chan $chans {    if {[botonchan $chan]} {      if {![botisop $chan]} {        putserv "PRIVMSG CHANSERV@services.dal.net :OP $chan $botnick"        # putserv "CHANSERV OP $chan $botnick"      }    }  }}# MSG Commands  Ident &amp; getopsbind msg o ".ident" msg:identproc msg:ident {nick uhost handle text} {  global botnick i_nick i_pass i_gost_timer  puthelp "PRIVMSG $nick :Starting Ident Procedure."  putlog "Started Ident Procedure at the request of $handle"  if {[isbotnick $i_nick]} {    putserv "PRIVMSG NickServ@services.dal.net :IDENTIFY $i_pass"    # putserv "NICKSERV IDENTIFY $i_pass"    return 0  } else {    putserv "PRIVMSG NickServ@services.dal.net :GHOST $i_nick $i_pass"    # putserv "NICKSERV GHOST $i_nick $i_pass"    utimer $i_gost_timer {putserv "NICK $i_nick"}    return 0  }}bind msg o ".getops" msg:getopsproc msg:getops {nick uhost handle text} {  global botnick i_chans  puthelp "PRIVMSG $nick :Starting getOPs Procedure."  putlog "Started getOPs Procedure at the request of $handle"  if {$i_chans == ""} {    set chans [channels]  } else {     set chans $i_chans  }  foreach chan $chans {    if {[botonchan $chan]} {      if {![botisop $chan]} {        putserv "PRIVMSG CHANSERV@services.dal.net :OP $chan $botnick"        # putserv "CHANSERV OP $chan $botnick"      }    }  }}putlog "Loaded NickServ Identification Script v1.2 by Dedan :^)"##################################################################################################### EOF ##################################</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3472">Dedan</a> — Sun Sep 07, 2003 1:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-09-07T13:05:18-04:00</updated>

		<published>2003-09-07T13:05:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26695#p26695</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26695#p26695"/>
		<title type="html"><![CDATA[auth]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26695#p26695"><![CDATA[
no im not on dalnet only my own server  irc.deanworks.ca  but i can hop on dalnet    what is your nick may i ask ?????   and any chance ya can email me a tcl script for auth  to add into my commands<p>Statistics: Posted by Guest — Sun Sep 07, 2003 1:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Dedan]]></name></author>
		<updated>2003-09-07T12:56:36-04:00</updated>

		<published>2003-09-07T12:56:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26694#p26694</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26694#p26694"/>
		<title type="html"><![CDATA[Auth Help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26694#p26694"><![CDATA[
There are some .tcl scripts on this website.<br><br>Use the search feature in the tcl scripts page.<br><br>If you are on Dalnet, i have just finished testing<br>a script like the one you want.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cool.gif" width="15" height="15" alt="8)" title="Cool"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3472">Dedan</a> — Sun Sep 07, 2003 12:56 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-09-07T12:51:51-04:00</updated>

		<published>2003-09-07T12:51:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26693#p26693</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26693#p26693"/>
		<title type="html"><![CDATA[Auth Help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26693#p26693"><![CDATA[
hi all ive been trying to fined a way to add /msg bot auth  pass   and add it into my tcl i made for chan commands  is ther a simple small way to do this ???? <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_surprised.gif" width="15" height="15" alt=":o" title="Surprised">  im kinda new at this but im learning<br><br> if anyone can help  would be really nice  thanks<p>Statistics: Posted by Guest — Sun Sep 07, 2003 12:51 pm</p><hr />
]]></content>
	</entry>
	</feed>
