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

	<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>2008-08-25T16:09:01-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Nor7on]]></name></author>
		<updated>2008-08-25T16:09:01-04:00</updated>

		<published>2008-08-25T16:09:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84836#p84836</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84836#p84836"/>
		<title type="html"><![CDATA[Requesting 2 Scripts !admins and !rules]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84836#p84836"><![CDATA[
When u add an admin. the new admin it must put: /msg botnick pass &lt;password&gt;<br><br>!admins | show admins<br>!deladmin | del admins<br>!addadmin | add admin<br>!admin &lt;channel&gt; &lt;on/off&gt; | switch on/off admins help.<br><br>tested and work.<br><div class="codebox"><p>Code: </p><pre><code>#################################################################################### ## ##  CheckMasters ##  Version 1.0 ##  by xiv ## ##  This script will display the handles of the bot owners &amp; channel masters. ##  It will also check who are on at the moment. ## ##  For security reasons, I added a flood protection ## # do you want the bot to make a differance between owners &amp; masters? set display_owners 0 # set here the trigger for flood set masters_flood 1:20 bind pub - !admins pub_masters bind pub m|m !deladmin proc_deluser bind pub m|m !addadmin proc_adduser bind pub m|m !admin admin:switchsetudef flag helpadmin# -- don't edit below unless you know what you are doing -- proc pub_masters {nick uhost hand channel args} { global helpadmin   if {![channel get $channel helpadmin]} { return }    if {[masters_detectflood]} {       putcmdlog "&lt;$nick@$channel&gt; !$hand! masters (flood... not answering!)"       putserv "NOTICE $nick :don't flood the bots"       return 0    }    # Initializing variables    global botnick display_owners    set count_owners 0    set count_owners_on 0    set count_masters 0    set count_masters_on 0    set owners ""    set owners_on ""    set masters ""    set masters_on ""    # finding all owners in userlist if 'display_owners' setting is set to 1    if { $display_owners } {       foreach user [userlist] {          if [matchattr $user n $channel] {             set owners [string trim "$owners, $user" ", "]             incr count_owners 1          }       }       if {[string length $owners] &gt; 0} {          putchan $channel "$count_owners owner(s) of the bots: $owners."       }    }    # finding all masters in userlist    foreach user [userlist] {       if [matchattr $user |T $channel] {          if { (![matchattr $user n]) || ($display_owners == 0) } {             set masters [string trim "$masters, $user" ", "]             incr count_masters 1          }       }    }    if {[string length $masters] &gt; 0} {       putchan $channel "$count_masters admins  on $channel: $masters."    } else {       putchan $channel "In this moment don't have admins on $channel."    }    # displaying owners that are on if 'display_owners' setting is set to 1    if { $display_owners } {       foreach owner_on [chanlist $channel n] {          set owners_on [string trim "$owners_on, $owner_on" ", "]          incr count_owners_on 1       }       if {[string length $owners_on] &gt; 0} {          putchan $channel "Wohoo, $count_owners_on owner(s) of the bots currently on: $owners_on."       }    }    # displaying masters that are on    foreach master_on [chanlist $channel |T] {       if { (![matchattr $master_on n]) || ($display_owners == 0) } {          set masters_on [string trim "$masters_on, $master_on" ", "]          incr count_masters_on 1       }    }    if {[string length $masters_on] &gt; 0} {       putchan $channel "$count_masters_on Admins currently ON: $masters_on."    } else {       putchan $channel "don't have admins online now."    } } # Avoids flooding proc masters_detectflood { } {         global masters_flood         global masters_floodtrigger         set thr [lindex [split $masters_flood ":"] 0]         set lapse [lindex [split $masters_flood ":"] 1]         if {$thr == "" || $thr == 0} { return 0 }         if {![info exist masters_floodtrigger]} {                 # First time called                 set masters_floodtrigger [list [unixtime] 1]                 return 0         }         if {[expr [lindex $masters_floodtrigger 0] + $lapse] &lt;= [unixtime]} {                 # Trigger time has passed, reset counter                 set masters_floodtrigger [list [unixtime] 1]                 return 0         }         set lasttime [lindex $masters_floodtrigger 0]         set times [lindex $masters_floodtrigger 1]         if {$times &gt;= $thr} {                 # Flood!                 return 1         }         set masters_floodtrigger [list $lasttime [expr $times + 1]]         return 0 } proc proc_adduser { nick uhost hand chan text } { global helpadmin   if {![channel get $chan helpadmin]} { return } set newnick [lindex $text 0]  set addusernick [nick2hand $newnick]   if {[validuser $addusernick]} {    putserv "PRIVMSG $chan :\002$newnick\002 Is Already an ADMIN Database As \002$addusernick\002"   } else  {    unset addusernick    set addusermask [maskhost $newnick![getchanhost $newnick $chan]]    adduser $newnick $addusermask    set addusernick [nick2hand $newnick]   chattr $addusernick |+T $chan    putlog "\002$nick\002 Added \002$addusernick\($newnick - $addusernick\)\002 To ADMIN Database"    putserv "PRIVMSG $chan :\002$text\002 Added To ADMIN Database As \002$addusernick\002"    unset addusermask    unset newnick   unset addusernick   } } proc proc_deluser { nick uhost hand chan text } { global helpadmin   if {![channel get $chan helpadmin]} { return }   set delusernick [lindex $text 0]  if {[validuser $delusernick]} {     deluser $delusernick     putserv "PRIVMSG $chan :\002$text \($delusernick\)\002 Has Been Removed From ADMIN Database"     putlog "$nick Removed $delusernick From user Database"   } else { putserv "PRIVMSG $chan :\002$text\002 Not Found In ADMIN Database, Use !whois &lt;nickname&gt;" } } proc admin:switch {nickname hostname channel handle text} { set cmd [lindex [split $text] 1]set adminchan [lindex [split $text] 0]switch -exact $cmd { "on" {channel set $adminchan +helpadminputhelp "NOTICE $nickname :Admins Channel is now ON in $adminchan"} "off" {channel set $adminchan -helpadminputhelp "NOTICE $nickname :Admins Channel is now OFF in $adminchan"}}}putlog "--- CheckMasters 1.0 by xiv loaded ---"</code></pre></div>Cya.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8762">Nor7on</a> — Mon Aug 25, 2008 4:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Fraud]]></name></author>
		<updated>2008-08-25T07:51:29-04:00</updated>

		<published>2008-08-25T07:51:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84829#p84829</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84829#p84829"/>
		<title type="html"><![CDATA[Requesting 2 Scripts !admins and !rules]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84829#p84829"><![CDATA[
Well seems it works now. but i still have errors.<br><br>- When i add somebody that is not listed in the chan the script adds at all. <br>- i cannot add myself.<br>- maybe u can rewrite it this way that it can be activated for specific chans?<br>  Like &lt;!admin #channel on&gt; and then the rest of the Triggersystem.<br><br>I know lots i want but maybe it is possible that barcelona helps mallorca.<br><br>Venga. Muchas Gracias por tu ayuda.<br>Saludos jonlar<br><br>edit: i use i t on quakenet and i tried the trigger again but the added fictiv user is not added too. Its just written in the Partyline but not added<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9931">Fraud</a> — Mon Aug 25, 2008 7:51 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nor7on]]></name></author>
		<updated>2008-08-25T01:36:28-04:00</updated>

		<published>2008-08-25T01:36:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84828#p84828</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84828#p84828"/>
		<title type="html"><![CDATA[Requesting 2 Scripts !admins and !rules]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84828#p84828"><![CDATA[
code edited.<br><br>tested code and it work now.<br><br> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8762">Nor7on</a> — Mon Aug 25, 2008 1:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Fraud]]></name></author>
		<updated>2008-08-25T01:19:52-04:00</updated>

		<published>2008-08-25T01:19:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84827#p84827</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84827#p84827"/>
		<title type="html"><![CDATA[Requesting 2 Scripts !admins and !rules]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84827#p84827"><![CDATA[
Nice Work. Thanks but the !addadmin &lt;nick&gt; is not working<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9931">Fraud</a> — Mon Aug 25, 2008 1:19 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nor7on]]></name></author>
		<updated>2008-08-25T01:42:33-04:00</updated>

		<published>2008-08-24T21:03:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84825#p84825</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84825#p84825"/>
		<title type="html"><![CDATA[Requesting 2 Scripts !admins and !rules]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84825#p84825"><![CDATA[
try it, no tested.<br><br>!admins - displays admins on channel. <br>!deladmin - delete admins (u need have +m or +n)<br>!addadmin - add admins. (u need have +m or +n)<br><div class="codebox"><p>Code: </p><pre><code>#################################################################################### ## ##  CheckMasters ##  Version 1.0 ##  by xiv ## ##  This script will display the handles of the bot owners &amp; channel masters. ##  It will also check who are on at the moment. ## ##  For security reasons, I added a flood protection ## # do you want the bot to make a differance between owners &amp; masters? set display_owners 0 # set here the trigger for flood set masters_flood 1:20 bind pub - !admins pub_masters bind pub m|m !deladmin proc_deluser bind pub m|m !addadmin proc_adduser # -- don't edit below unless you know what you are doing -- proc pub_masters {nick uhost hand channel args} {    # detect flood    if {[masters_detectflood]} {       putcmdlog "&lt;$nick@$channel&gt; !$hand! masters (flood... not answering!)"       putserv "NOTICE $nick :don't flood the bots"       return 0    }    # Initializing variables    global botnick display_owners    set count_owners 0    set count_owners_on 0    set count_masters 0    set count_masters_on 0    set owners ""    set owners_on ""    set masters ""    set masters_on ""    # finding all owners in userlist if 'display_owners' setting is set to 1    if { $display_owners } {       foreach user [userlist] {          if [matchattr $user n $channel] {             set owners [string trim "$owners, $user" ", "]             incr count_owners 1          }       }       if {[string length $owners] &gt; 0} {          putchan $channel "$count_owners owner(s) of the bots: $owners."       }    }    # finding all masters in userlist    foreach user [userlist] {       if [matchattr $user |R $channel] {          if { (![matchattr $user n]) || ($display_owners == 0) } {             set masters [string trim "$masters, $user" ", "]             incr count_masters 1          }       }    }    if {[string length $masters] &gt; 0} {       putchan $channel "$count_masters Admin(s) defined for $channel: $masters."    } else {       putchan $channel "There are currently no Admin's defined for $channel."    }    # displaying owners that are on if 'display_owners' setting is set to 1    if { $display_owners } {       foreach owner_on [chanlist $channel n] {          set owners_on [string trim "$owners_on, $owner_on" ", "]          incr count_owners_on 1       }       if {[string length $owners_on] &gt; 0} {          putchan $channel "Wohoo, $count_owners_on owner(s) of the bots currently on: $owners_on."       }    }    # displaying masters that are on    foreach master_on [chanlist $channel |R] {       if { (![matchattr $master_on n]) || ($display_owners == 0) } {          set masters_on [string trim "$masters_on, $master_on" ", "]          incr count_masters_on 1       }    }    if {[string length $masters_on] &gt; 0} {       putchan $channel "$count_masters_on Admin(s) currently on: $masters_on."    } else {       putchan $channel "There are currently no Admin on $channel."    } } # Avoids flooding proc masters_detectflood { } {         global masters_flood         global masters_floodtrigger         set thr [lindex [split $masters_flood ":"] 0]         set lapse [lindex [split $masters_flood ":"] 1]         if {$thr == "" || $thr == 0} { return 0 }         if {![info exist masters_floodtrigger]} {                 # First time called                 set masters_floodtrigger [list [unixtime] 1]                 return 0         }         if {[expr [lindex $masters_floodtrigger 0] + $lapse] &lt;= [unixtime]} {                 # Trigger time has passed, reset counter                 set masters_floodtrigger [list [unixtime] 1]                 return 0         }         set lasttime [lindex $masters_floodtrigger 0]         set times [lindex $masters_floodtrigger 1]         if {$times &gt;= $thr} {                 # Flood!                 return 1         }         set masters_floodtrigger [list $lasttime [expr $times + 1]]         return 0 } proc proc_adduser { nick uhost hand chan text } { set newnick [lindex $text 0]  set addusernick [nick2hand $newnick]   if {[validuser $addusernick]} {    putserv "PRIVMSG $chan :\002$newnick\002 Is Already an ADMIN Database As \002$addusernick\002"   } else  {    unset addusernick    set addusermask [maskhost $newnick![getchanhost $newnick $chan]]    adduser $newnick $addusermask    set addusernick [nick2hand $newnick]   chattr $addusernick |+R $chan    putlog "\002$nick\002 Added \002$addusernick\($newnick - $addusernick\)\002 To ADMIN Database"    putserv "PRIVMSG $chan :\002$text\002 Added To ADMIN Database As \002$addusernick\002"    unset addusermask    unset newnick   unset addusernick   } } proc proc_deluser { nick uhost hand chan text } {   set delusernick [lindex $text 0]  if {[validuser $delusernick]} {     deluser $delusernick     putserv "PRIVMSG $chan :\002$text \($delusernick\)\002 Has Been Removed From ADMIN Database"     putlog "$nick Removed $delusernick From user Database"   } else { putserv "PRIVMSG $chan :\002$text\002 Not Found In ADMIN Database, Use !whois &lt;nickname&gt;" } } putlog "--- CheckMasters 1.0 by xiv loaded ---"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8762">Nor7on</a> — Sun Aug 24, 2008 9:03 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Fraud]]></name></author>
		<updated>2008-08-24T19:52:18-04:00</updated>

		<published>2008-08-24T19:52:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84824#p84824</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84824#p84824"/>
		<title type="html"><![CDATA[Requesting 2 Scripts !admins and !rules]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84824#p84824"><![CDATA[
But this is a complete Script with Channel security and more. <br><br>Hmm does nobody understands me ?<br><br>I just need a script where i have triggers with !admin add/del and if somebody types !admins he gehts a notice with some names i was adding before. thats it.<br><br>the one of Nor7on is good but i am looking for a trigger system integratetd<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9931">Fraud</a> — Sun Aug 24, 2008 7:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[eXtremer]]></name></author>
		<updated>2008-08-24T12:14:56-04:00</updated>

		<published>2008-08-24T12:14:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84821#p84821</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84821#p84821"/>
		<title type="html"><![CDATA[Requesting 2 Scripts !admins and !rules]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84821#p84821"><![CDATA[
<blockquote class="uncited"><div>First of all, thank u for this. But is it possible to add a spamcheck and cant it be used it this way<br><br>!add admin &lt;name&gt;<br>!del admin &lt;name&gt;<br><br>thanks a lot</div></blockquote>Use LoL Toolz, by leonini, search here: <a href="http://egghelp.org/tcl.htm" class="postlink">http://egghelp.org/tcl.htm</a><br><br>It has the !addmaster (+m) !addowner (+n) and other commands.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9905">eXtremer</a> — Sun Aug 24, 2008 12:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Fraud]]></name></author>
		<updated>2008-08-24T08:15:34-04:00</updated>

		<published>2008-08-24T08:15:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84817#p84817</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84817#p84817"/>
		<title type="html"><![CDATA[Requesting 2 Scripts !admins and !rules]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84817#p84817"><![CDATA[
First of all, thank u for this. But is it possible to add a spamcheck and cant it be used it this way<br><br>!add admin &lt;name&gt;<br>!del admin &lt;name&gt;<br><br>thanks a lot<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9931">Fraud</a> — Sun Aug 24, 2008 8:15 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nor7on]]></name></author>
		<updated>2008-08-23T13:33:58-04:00</updated>

		<published>2008-08-23T13:33:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84799#p84799</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84799#p84799"/>
		<title type="html"><![CDATA[Requesting 2 Scripts !admins and !rules]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84799#p84799"><![CDATA[
First code.<br><div class="codebox"><p>Code: </p><pre><code># You can ask help: # 1. by emailing me # 2. I'm on Dalnet in #VladTepes # 3. Wanderer| is on UnderNET in #TCL # thanks a lot to Wanderer| and ShadowLord!</code></pre></div>Second.<br><div class="codebox"><p>Code: </p><pre><code>#### triggerset waffles(cmd) "!admin"# Admins listset waffles(list) "nick1 nick2 nick3 ... nick8"###bind pub - $waffles(cmd) pub:needadminproc pub:needadmin { nick host hand chan arg } {  global waffles  set counter 0  foreach ad [split $waffles(list)] {     if {[onchan $ad $chan]} {         putquick "PRIVMSG $ad :\037$nick\017 need help of an admin."         incr counter     }  }  if {$counter == 0} {     putquick "PRIVMSG $chan :sorry $nick, No such Admin Online."  } else {     putquick "PRIVMSG $chan :$nick, your resquest has been send to admins. (admins: $waffles(list)."  }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8762">Nor7on</a> — Sat Aug 23, 2008 1:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Fraud]]></name></author>
		<updated>2008-08-23T11:57:48-04:00</updated>

		<published>2008-08-23T11:57:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84798#p84798</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84798#p84798"/>
		<title type="html"><![CDATA[Requesting 2 Scripts !admins and !rules]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84798#p84798"><![CDATA[
Is it possible to extend this script with a spamprotect and -check?<br><br>If somebody uses !rules and somebody different want to use the trigger too, he gets a notice with:" Please wait. Next !rules Request possible in X seconds"?<br><div class="codebox"><p>Code: </p><pre><code># rules1.0.tcl inspired by `Dracu|a`# rewritten from tell1.1.tcl (Lassi Lahtinen lahtinen.lassi@nic.fi) by Wanderer|# final debug by ShadowLord # email me @: jjmacgregor@kscable.com# version 1.0 a simple and to the point TCL :)# You can ask help: # 1. by emailing me# 2. I'm on Dalnet in #VladTepes# 3. Wanderer| is on UnderNET in #TCL# thanks a lot to Wanderer| and ShadowLord!# you can start to use rules1.0.tcl after you change "line1" and "line2" (btw # you can add lines "line 3" "line 4" etc it's not restricted) to your # channel's rules and write public command !rules or !rules &lt;nick&gt; on your chan!# commands: !rules pastes the rules on open channel !rules &lt;nick&gt; will /notice a # individual person the channel rules.set chanrules {"line 1""line 2"}bind pub o !rules pub:tproc pub:t {nick uhost hand chan text} {global chanrulesset rulenick [lindex [split $text " "] 0]if {$text != "" &amp;&amp; [onchan $rulenick $chan]} {puthelp "NOTICE $rulenick :these are the rules of our channel. Pay attention!"foreach line $chanrules { puthelp "NOTICE $rulenick :$line" }return 0}foreach line $chanrules {puthelp "PRIVMSG $chan :$line" }}</code></pre></div><br>The second is just using the bots Userlist. i would like to add the user to a list of Supporters<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9931">Fraud</a> — Sat Aug 23, 2008 11:57 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[eXtremer]]></name></author>
		<updated>2008-08-23T10:48:56-04:00</updated>

		<published>2008-08-23T10:48:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84795#p84795</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84795#p84795"/>
		<title type="html"><![CDATA[Re: Requesting 2 Scripts !admins and !rules]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84795#p84795"><![CDATA[
<blockquote class="uncited"><div>Hello to the Board.<br><br>i ask everybody to help me. My Channel is looking for 2 Scripts.<br>1. is a rules script where we can add some Text in a text File that will be posted by writing something like ?rules (maybe some spamcheck and the text as notice or Private)<br><br>2. is a, hmmm how to explain it, a script where we can add users and this will be printed in the chan as Helper or admins.<br>so what i mean is, somebody types !admins and he get a list of People (s)he can contact. maybe its possible to use a trigger system to add Admins, Helpers and so on.<br><br>Thanks to all of you for the view and maybe Help <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><br>Have a nice Day.</div></blockquote>1. !advert =&gt; <a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=1308" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... ad&amp;id=1308</a><br><br>2. !userlist =&gt; <a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=1160" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... ad&amp;id=1160</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9905">eXtremer</a> — Sat Aug 23, 2008 10:48 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Fraud]]></name></author>
		<updated>2008-08-23T07:27:37-04:00</updated>

		<published>2008-08-23T07:27:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84791#p84791</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84791#p84791"/>
		<title type="html"><![CDATA[Requesting 2 Scripts !admins and !rules]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84791#p84791"><![CDATA[
Hello to the Board.<br><br>i ask everybody to help me. My Channel is looking for 2 Scripts.<br>1. is a rules script where we can add some Text in a text File that will be posted by writing something like ?rules (maybe some spamcheck and the text as notice or Private)<br><br>2. is a, hmmm how to explain it, a script where we can add users and this will be printed in the chan as Helper or admins.<br>so what i mean is, somebody types !admins and he get a list of People (s)he can contact. maybe its possible to use a trigger system to add Admins, Helpers and so on.<br><br>Thanks to all of you for the view and maybe Help <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><br>Have a nice Day.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9931">Fraud</a> — Sat Aug 23, 2008 7:27 am</p><hr />
]]></content>
	</entry>
	</feed>
