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

	<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-20T11:53:10-04:00</updated>

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

		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2004-07-20T11:53:10-04:00</updated>

		<published>2004-07-20T11:53:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38886#p38886</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38886#p38886"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38886#p38886"><![CDATA[
I doubt someone will like give you hints how to "de-Obfuscate" strikelight's scripts..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Tue Jul 20, 2004 11:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-07-20T08:06:19-04:00</updated>

		<published>2004-07-20T08:06:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38873#p38873</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38873#p38873"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38873#p38873"><![CDATA[
heres a script i made, ive updated it to work on multiple channels and i havnt tested it myself. so use at your own risk, but it should do what you want <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile">.<br><div class="codebox"><p>Code: </p><pre><code># Channels you want the script to run onset autovchan  "#channel1 #channel2"# Text you want people to get voiced on (wildcards accepted)set autovtext   { "*fserve*" "*ftp*" "*file server*" "*tdcc*" "*sysreset*" "*i-n-v-i-s-i-o-n*" "*polaris*" }# will voice on the 40'th min of every hour       bind time  -  "40 * * * *"        autovoice          # anyone with the n user flags can force an update by typing !voicebind pub  n|n !voice              autovoicebind notc  -  *                   autovnotc proc autovoice {minute hour day month year} {  global autovchan autovnick  foreach chan $autovchan {    if {[botisop $chan]} {      set autovnick($chan) ""      # if your using this in alot of channels, maybe putserv is better,       # otherwise this is the best as to not waste time from the timer.      putquick "PRIVMSG $chan :!list"      utimer 30 autovgive    }  }}proc autovnotc {nick uhost handle text dest} {  global botnick autovnick autovchan  foreach chan $autovchan {    if {[info exists autovnick($chan)]} {      if {($dest == $botnick) &amp;&amp; (![isvoice $nick $chan]) &amp;&amp; ([onchan $nick $chan]) &amp;&amp; ([botisop $chan])} {        regsub -all {\003[0-9]{0,2}(,[0-9]{0,2})?|\017|\037|\002|\026} $text "" text        foreach match $autovnick($chan) {          if {[string match -nocase $match $text]} {            foreach mnick $autovnick($chan) { if {$mnick == $nick} { unset nick } }            if {[info exists nick]} {              lappend autovnick($chan) $nick              break            }            }        }      }    }  }}proc autovgive {} {  global autovnick autovchan   foreach chan $autovchan {    if {[info exists autovnick($chan)]} {      foreach nick $autovnick($chan) {        # if and elseif could probably be merged, i know it works as is so im not gonna bother changing it.        if {![info exists list]} { lappend list $nick } elseif {[llength $list] &lt; 4} { lappend list $nick } else { putserv "MODE $chan +vvvv [join $list]" ; unset list }      }      if {[info exists nick]} { putserv "MODE $chan +[string repeat "v" [llength $list]] [join $list]" }      unset autovnick($chan)    }  }}</code></pre></div>(edit) fixed spelling<p>Statistics: Posted by Guest — Tue Jul 20, 2004 8:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-07-19T18:28:41-04:00</updated>

		<published>2004-07-19T18:28:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38850#p38850</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38850#p38850"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38850#p38850"><![CDATA[
Excellent <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Jul 19, 2004 6:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[AxS]]></name></author>
		<updated>2004-07-19T18:12:59-04:00</updated>

		<published>2004-07-19T18:12:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38847#p38847</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38847#p38847"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38847#p38847"><![CDATA[
Fair enough.  I agree on and understand this perspective.  I'll ask him if he'd like to work on some ideas I have, I guess all can benefit if he decides to take upon them.  He is probably one of the best scriptors so anything I try to do will be a joke compared to what he can do.  Anyhow... Strike? You open to workin on something together? <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2989">AxS</a> — Mon Jul 19, 2004 6:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-07-19T17:30:44-04:00</updated>

		<published>2004-07-19T17:30:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38846#p38846</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38846#p38846"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38846#p38846"><![CDATA[
K.. you're missing the point regarding a scripter's intellectual property.<br><br>So I quote from strikelight:<blockquote class="uncited"><div>Nice to see ......... respect End user agreements.... ie. the fine print: 'By downloading my scripts from this (tclscript.com) site, you agree not to modify them in any form' ... <br><br>Sort of thing that may encourage me to stop writing scripts for the public at all any more.... Already production from slennox/kungfo0/mc8 have ceased to a standstill, amongst others... if this is what you are after, keep it up, and you'll find another lost scripter... </div></blockquote>And:<blockquote class="uncited"><div>The point is to prevent people like you from editting it, stealing the source, etc.. etc.. </div></blockquote>Now, regarding what you have stated:<blockquote class="uncited"><div>People, when having knowledge of something that others may not have may choose to/or not to impart it. That is the purpose of this forum in my humble opinion, sharing knoweldge. </div></blockquote>All are happy to share knowledge with any one regarding eggdrop/modules/scripting problems &amp;c BUT, we are not here to tell any one how to undo a process that a scripter has used to protect his scripts just so they can be "hacked".<br><br>You may take this matter up with strikelight if you wish.  strikelight just may take your suggestions on board for future updates.  You'll never know unless you ask. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Jul 19, 2004 5:30 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[AxS]]></name></author>
		<updated>2004-07-19T16:22:12-04:00</updated>

		<published>2004-07-19T16:22:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38842#p38842</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38842#p38842"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38842#p38842"><![CDATA[
Oh jeez  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_confused.gif" width="15" height="15" alt=":-?" title="Confused"> Alchera, please if you can't or won't help its no good posting that here.  I am trying to get something productive done, and patronizing comments or tones are unnecessary.  <br><br>People, when having knowledge of something that others may not have may choose to/or not to impart it.  That is the purpose of this forum in my humble opinion, sharing knoweldge.<br><br>If i can't find information here I will look other places, but please we're all here to learn from those willing to teach.<br><br>Thanx for your time...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2989">AxS</a> — Mon Jul 19, 2004 4:22 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-07-19T15:45:41-04:00</updated>

		<published>2004-07-19T15:45:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38839#p38839</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38839#p38839"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38839#p38839"><![CDATA[
If we were to impart this information (which I for one will not) it renders the original intention of the respective author(s) to protect their intellectual work useless.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Jul 19, 2004 3:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[AxS]]></name></author>
		<updated>2004-07-19T15:14:35-04:00</updated>

		<published>2004-07-19T15:14:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38838#p38838</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38838#p38838"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38838#p38838"><![CDATA[
I respect and appreciate his work, and visit his site regularily and signed up on his forums.<br><br>With the script in question, fsmon.tcl - his updates are not frequent and though he made updates, if you look at the revision history you will notice<br>(12/14/03)/v1.4.0 <br>(11/24/02)/v1.3.1<br><br>that the time between revisions are long and far between, needless to say that I would not want to bother him for my personal requests on different tweaks and so on.<br><br>That aside, if anyone knows how to decode obfuscation (regardless of what script), then I am very interested to learn.<br><br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2989">AxS</a> — Mon Jul 19, 2004 3:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[greenbear]]></name></author>
		<updated>2004-07-19T15:02:05-04:00</updated>

		<published>2004-07-19T15:02:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38837#p38837</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38837#p38837"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38837#p38837"><![CDATA[
/me chuckles<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=24">greenbear</a> — Mon Jul 19, 2004 3:02 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-07-19T14:59:42-04:00</updated>

		<published>2004-07-19T14:59:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38836#p38836</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38836#p38836"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38836#p38836"><![CDATA[
strikelight maintains all of his scripts.  I suggest you regularly visit his website for new releases/updates. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Jul 19, 2004 2:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[AxS]]></name></author>
		<updated>2004-07-19T14:39:10-04:00</updated>

		<published>2004-07-19T14:39:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38835#p38835</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38835#p38835"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38835#p38835"><![CDATA[
Ahh <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> very interesting Ceasar.  I wasn't aware that such methods could be employed in tcl, however they worked a charm.  Hehehe.  Anyway, more importantly do you guys know how to <strong class="text-strong">de-Obfuscate</strong> a script so that it can be manipulated.  I tend to slightly modify scripts for my own use because the original script writers most likely don't want to bothered for minor changes here n there.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2989">AxS</a> — Mon Jul 19, 2004 2:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2004-07-19T14:04:08-04:00</updated>

		<published>2004-07-19T14:04:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38830#p38830</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38830#p38830"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38830#p38830"><![CDATA[
Shure, see the <a href="http://mini.net/tcl/728" class="postlink">obfuscation in TCL</a> page. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>He used it to prevent non-experienced users to take a sneak peek on his scripts. Preaty usefull. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_mrgreen.gif" width="15" height="15" alt=":mrgreen:" title="Mr. Green"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Mon Jul 19, 2004 2:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-07-19T13:57:53-04:00</updated>

		<published>2004-07-19T13:57:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38829#p38829</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38829#p38829"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38829#p38829"><![CDATA[
<blockquote class="uncited"><div>I am very curious as to what all the code is</div></blockquote>The code is that way so it cannot be "stolen".  Think of "obfuscated" as encrypted which is not actually correct btw, but might help to get it in context.  It is not a "new" TCL, the coding is still the same old TCL we all love. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Jul 19, 2004 1:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[AxS]]></name></author>
		<updated>2004-07-19T11:33:10-04:00</updated>

		<published>2004-07-19T11:33:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38821#p38821</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38821#p38821"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38821#p38821"><![CDATA[
I changed that website to a different name just to see if it does actually refer to a site.  I don't think it does.  However I am very curious as to what all the code is, because its nothing like what TCL I've seen before.  Where can I learn about that kind of scripting?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2989">AxS</a> — Mon Jul 19, 2004 11:33 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[AxS]]></name></author>
		<updated>2004-07-19T11:09:35-04:00</updated>

		<published>2004-07-19T11:09:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=38818#p38818</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=38818#p38818"/>
		<title type="html"><![CDATA[how do i get my bot to !list voice?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=38818#p38818"><![CDATA[
but there's a line in there (last line) which refers to a site...<br><br>[/quote]eval [eval <a href="http://www.tclscript.com" class="postlink">www.tclscript.com</a> -66 {XJY\ KXRTSNYTWj\[JWXk\<blockquote class="uncited"><div><br>not sure if its refering to a proc or an actual site, I have a feeling though that you are right, and that it indeed is referring to a proc</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2989">AxS</a> — Mon Jul 19, 2004 11:09 am</p><hr />
]]></content>
	</entry>
	</feed>
