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

	<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>2004-07-18T02:40:07-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-07-18T02:40:07-04:00</updated>

		<published>2004-07-18T02:40:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38748#p38748</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38748#p38748"/>
		<title type="html"><![CDATA[Prob. with invite script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38748#p38748"><![CDATA[
big thx for your help it works now<p>Statistics: Posted by Guest — Sun Jul 18, 2004 2:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[greenbear]]></name></author>
		<updated>2004-07-17T13:16:07-04:00</updated>

		<published>2004-07-17T13:16:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38719#p38719</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38719#p38719"/>
		<title type="html"><![CDATA[Prob. with invite script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38719#p38719"><![CDATA[
It doesn't recognize you as a user, update your hostmask (you dont seem to have one added) and also give yourself the +X flag that is needed.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=24">greenbear</a> — Sat Jul 17, 2004 1:16 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-07-17T13:11:06-04:00</updated>

		<published>2004-07-17T13:11:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38718#p38718</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38718#p38718"/>
		<title type="html"><![CDATA[Prob. with invite script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38718#p38718"><![CDATA[
i use CHAN INVITE V1.1 BY DREAMTEAM/PERPLEX<br><br>but if i invite me then is:<br><br>[18:57:02] &lt;@^**&gt; Not Inviting ****|!************ (He is not a Idler Member.).<br><br>here is my script<br><div class="codebox"><p>Code: </p><pre><code># CHAN INVITE V1.1 BY DREAMTEAM/PERPLEX## this is maybe one of the best invite scripts ever.# tell me which other invite script supports blowcrypt WITHOUT# another script? this one also supports warnmsg/kick/kickban# if a user invites himself more than one time.# fully configurable, total secure.## commands:## msg: # !invite &lt;userpass&gt;## config:# set this to your invite chanset ICHAN "#***"# which flag is needed to get invitedset IFLAG "X"# set your group name hereset invgroup "Idler"# set to 1 for blowcrypt, 0 for plainset invblow 0# enter your blowcrypt key belowset invblowkey($ICHAN) "Nutte"# nick tracking# 0 = disabled# 1 = warn msgs only# 2 = 1 + kicking# 3 = 2 + banset invnt 1# what reason should the ban haveset invcom "PERPLEX.CHAN.iNViTE"###########################################################################set invver "V1.1"bind msg - !invite msg:invbind pub - +OK invencryptedincominghandlerproc msg:inv {nick uhost hand arg} {global ICHAN IFLAG invblow invgroup invnt invkb invcom botnickset passw [lindex $arg end]# Startingif {$arg == ""} {return 0}# Check for valid userif { [validuser $hand] == 0 } {if {$invblow == 0} {putserv "PRIVMSG $ICHAN :Not Inviting \002$nick!$uhost\002 (He is not a $invgroup Member.)."putserv "NOTICE $nick :You are not authorized to use this command."} else {invputblow "PRIVMSG $ICHAN :Not Inviting \002$nick!$uhost\002 (He is not a $invgroup Member.)."putserv "NOTICE $nick :You are not authorized to use this command."}return 0# Check for valid password} elseif { [passwdok $hand $passw] == 0 } {if {$invblow == 0} {putserv "PRIVMSG $ICHAN : Not Inviting \002$hand\002 ($nick!$uhost) cause of wrong password."putserv "NOTICE $nick :This password is wrong."} else {invputblow "PRIVMSG $ICHAN : Not Inviting \002$hand\002 ($nick!$uhost) cause of wrong password."putserv "NOTICE $nick :This password is wrong."}return 0# Check for valid hostmask} elseif { [finduser $uhost] eq "$hand" } {if {$invblow == 0} {putserv "PRIVMSG $ICHAN : Not Inviting \002$hand\002 ($nick!$uhost) cause of wrong hostmask."putserv "NOTICE $nick :Your current hostmask is not added. Contact an @."} else {invputblow "PRIVMSG $ICHAN : Not Inviting \002$hand\002 ($nick!$uhost) cause of wrong hostmask."putserv "NOTICE $nick :Your current hostmask is not added. Contact an @."}return 0# Check for valid flag} elseif { [matchattr $hand $IFLAG] == 0 } {if {$invblow == 0} {putserv "PRIVMSG $ICHAN : Not Inviting \002$hand\002 ($nick!$uhost) cause of missing flag."putserv "NOTICE $nick :You have not the right Flag. Contact an @."} else {invputblow "PRIVMSG $ICHAN : Not Inviting \002$hand\002 ($nick!$uhost) cause of missing flag."putserv "NOTICE $nick :You have not the right Flag. Contact an @."}return 0# Check if the user isn't already there} elseif { [handonchan $hand $ICHAN] == 1} {if {$invnt != 0} {    set onick [hand2nick $hand $ICHAN]    if {$invnt == 2} {putquick "KICK $ICHAN $onick"    }     if {$invnt == 3} {set host "*![getchanhost $onick $ICHAN]"chattr $hand -Xnewchanban $ICHAN $host $botnick $invcomputquick "KICK $ICHAN $onick"    }}        if {$invblow == 0} {                        putserv "PRIVMSG $ICHAN : Not Inviting \002$hand\002 ($nick!$uhost) cause he is already here."                        putserv "NOTICE $nick :You already are on the chan."        } else {                        invputblow "PRIVMSG $ICHAN : Not Inviting \002$hand\002 ($nick!$uhost) cause he is already here."                        putserv "NOTICE $nick :You already are on the chan."}return 0# Invite user if all OK} else {if {$invblow == 0} {putserv "PRIVMSG $ICHAN : Inviting \002$hand\002 ($nick!$uhost)."putserv "INVITE $nick $ICHAN"} else {invputblow "PRIVMSG $ICHAN : Inviting \002$hand\002 ($nick!$uhost)."putserv "INVITE $nick $ICHAN"}}}# blowfish part beginningproc invputblow {text {option ""}} {global invblowkeyif {$option==""} {if {[lindex $text 0]=="PRIVMSG" &amp;&amp; [info exists invblowkey([string tolower [lindex $text 1]])]} {putserv "PRIVMSG [lindex $text 1] :+OK [encrypt $invblowkey([string tolower [lindex $text 1]]) [string trimleft [join [lrange $text 2 end]] :]]"} else {putserv $text}} else {  if {[lindex $text 0]=="PRIVMSG" &amp;&amp; [info exists invblowkey([string tolower [lindex $text 1]])]} {putserv "PRIVMSG [lindex $text 1] :+OK [encrypt $invblowkey([string tolower [lindex $text 1]]) [string trimleft [join [lrange $text 2 end]] :]]" $option} else {putserv $text $option}}}proc invencryptedincominghandler {nick host hand chan arg} {global invblowkeyif {![info exists invblowkey([string tolower $chan])]} {return}set tmp [decrypt $invblowkey([string tolower $chan]) $arg]foreach item [binds pub] {if {[lindex $item 2]=="+OK"} {continue}if {[lindex $item 1]!="-|-"} {if {![matchattr $hand [lindex $item 1] $chan]} {continue}}if {[lindex $item 2]==[lindex $tmp 0]} {[lindex $item 4] $nick $host $hand $chan [lrange $tmp 1 end]} }}putlog "CHAN INVITE $invver BY THE TEAM-PERPLEX DREAMTEAM LOADED."</code></pre></div>Flags are:<br><br>HANDLE    PASS NOTES FLAGS           LAST<br>User|    yes      1 ahjmnoptx       18:54 (partyline)<br>   #***              -               never<br>  HOSTS: -telnet!*@*<br><br><br>HANDLE    PASS NOTES FLAGS           LAST<br>Bot       no       0 hpx             never (nowhere)<br><br>Whats wrong, plz help me<p>Statistics: Posted by Guest — Sat Jul 17, 2004 1:11 pm</p><hr />
]]></content>
	</entry>
	</feed>
