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

	<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>2017-12-28T13:44:13-04:00</updated>

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

		<entry>
		<author><name><![CDATA[barman]]></name></author>
		<updated>2017-12-28T13:44:13-04:00</updated>

		<published>2017-12-28T13:44:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106527#p106527</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106527#p106527"/>
		<title type="html"><![CDATA[adminserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106527#p106527"><![CDATA[
I've seen that the script does not store new nick registrations. Can somebody help?<div class="codebox"><p>Code: </p><pre><code>#---------------------------------------------------# AdminServ v2.0 (stable)## *## AdminServ is a channel service bot, # intended primarily to act as a # complete combination of ChanServ, # NickServ, OpServ, HelpServ, and # Global.## For questions &amp; comments, you may# visit http://adminserv.cmx-networks.net# or irc.hazenet.org on channel# #adminserv## *## Nickserv.c# # *## $Id: nickserv.c,v 2.0 2004/04/20 18:49:55 emac Exp $##---------------------------------------------------bind msg - register auth_registerbind msg - ident auth_authbind msg - auth auth_authproc auth_register {nick uhost hand arg} { global channel official global botnick admin if {$nick == $botnick} {return} if {[getting-users]} {notice $nick "Sorry, there is currently a userfile transfer going on. Try back in a couple of seconds." ; return}   set account [lindex $arg 0]   set pass [lindex $arg 1]   set email [lindex $arg 2]   if {$hand != "*"} { notice $nick "You Are already identified to account \002$hand\002." ; return }   if {[validuser $account]} { notice $nick "That Account is already registered to somone else." ; return}   if {$account == ""} { notice $nick "\002register\002 requires more parameters." ; notice $nick "/msg $botnick register &lt;account&gt; &lt;password&gt; \[email\]" ; notice $nick "Registers an account with \002$botnick\002 and adds your current hostmask. Each time you are seen by \002$botnick\002, you are automatically authed. You may do /msg $botnick auth &lt;account&gt; &lt;password&gt; only when your hostmask changes." ; return}   if {$pass == ""} { notice $nick "Please Enter Password." ; return}   if {$email == ""} { notice $nick "Please Enter a E-Mail Address." ; return}   set host [join \*!\*[join [split $uhost "~"]] ""]   adduser $account $host   chpass $account $pass   setuser $account XTRA "AUTH" "1"   setuser $account XTRA "EMAIL" "$email"   putcmdlog "&lt;&lt;$nick&gt;&gt; !$account! Registered $account ($host) with email address: $email"   notice $nick "Account \002$account\002 has been registered for you with the hostmask \002$host\002 and email address set to \002$email\002."   notice $nick "If you have any problems, please contact the staff in $official(channel)"}proc auth_auth {nick uhost hand arg} {global channel staff  global botnick   set found 0   set account [lindex $arg 0]   set pass [lindex $arg 1]   if {$hand != "*"} { notice $nick "You Are already identified to account: \002$hand\002." ; return }   if {![validuser $account]} { notice $nick "Your Account does not exist, are you sure you registered?." ; return}   if {![passwdok $account $pass]} {notice $nick "Incorrect password; please try again." ; return}   set host [join \*!\*[join [split $uhost "~"]] ""]   setuser $account HOSTS $host   notice $nick "I recognize you."   if {[matchattr $account A] == 1} {   putquick "notice $staff(channel) :$nick \[$uhost\] identified to ADMINISTRATOR account $account."   }   if {[matchattr $account N] == 1} {   putquick "notice $staff(channel) :$nick \[$uhost\] identified to NETWORK HELPER account $account."    }   if {[matchattr $account H] == 1} {   putquick "notice $staff(channel) :$nick \[$uhost\] identified to HELPER account $account."    }}putlog "AdminServ nickserv.c loaded"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9321">barman</a> — Thu Dec 28, 2017 1:44 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[barman]]></name></author>
		<updated>2017-10-28T15:05:41-04:00</updated>

		<published>2017-10-28T15:05:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106497#p106497</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106497#p106497"/>
		<title type="html"><![CDATA[adminserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106497#p106497"><![CDATA[
<blockquote class="uncited"><div>Can you post that script to here and maybe explain the issue some please.</div></blockquote><a href="http://tclarchive.org/search.php?str=adminserv&amp;cb1=t&amp;cb2=a&amp;cb3=d&amp;sub.x=0&amp;sub.y=0" class="postlink">http://tclarchive.org/search.php?str=ad ... =0&amp;sub.y=0</a><br><br>When you logout when you part the chan ok, but when you login back, it recognize you automatically and i don't want that<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9321">barman</a> — Sat Oct 28, 2017 3:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2017-10-18T18:05:45-04:00</updated>

		<published>2017-10-18T18:05:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106479#p106479</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106479#p106479"/>
		<title type="html"><![CDATA[adminserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106479#p106479"><![CDATA[
Can you post that script to here and maybe explain the issue some please.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Wed Oct 18, 2017 6:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[barman]]></name></author>
		<updated>2017-10-18T16:20:59-04:00</updated>

		<published>2017-10-18T16:20:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106478#p106478</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106478#p106478"/>
		<title type="html"><![CDATA[adminserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106478#p106478"><![CDATA[
Hello<br><br>I want to use the adminserv but there is 1 thing i want to change in the script: i want the automated recognition away.<br><br>Thx<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9321">barman</a> — Wed Oct 18, 2017 4:20 pm</p><hr />
]]></content>
	</entry>
	</feed>
