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

	<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-08-16T09:16:17-04:00</updated>

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

		<entry>
		<author><name><![CDATA[feroz]]></name></author>
		<updated>2004-08-16T09:16:17-04:00</updated>

		<published>2004-08-16T09:16:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=39838#p39838</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=39838#p39838"/>
		<title type="html"><![CDATA[russian roulette]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=39838#p39838"><![CDATA[
MacDaddy  <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=5289">feroz</a> — Mon Aug 16, 2004 9:16 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-08-16T08:28:24-04:00</updated>

		<published>2004-08-16T08:28:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=39837#p39837</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=39837#p39837"/>
		<title type="html"><![CDATA[spin script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=39837#p39837"><![CDATA[
i was playing aroun with you spin script and i got it to work with 3 kicks and 3 safe with some help from a friend  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing"> <br><div class="codebox"><p>Code: </p><pre><code>set spin_chan "#" set s_protect_seconds 7 set spin_chan [string tolower $spin_chan] set s_master_mode 1 set smode 1 set sgmode 1 bind pub - !spin pub:spin proc pub:spin {nick uhost handle channel text} {   global botnick spin_chan s_master_mode smode sgmode s_protect_seconds    if {$s_master_mode == 0} {return 0}   set chan [string tolower $channel]   if {$chan != $spin_chan} {return 0}   if {[botisop $chan]== 0} {     putserv "PRIVMSG $chan :I'm not OPed here so I can not Spin"     return 0   }   if {$smode == "0"} {return 0}   set smode "0"   utimer $s_protect_seconds spin:floodpro   putserv "PRIVMSG $chan :$nick  takes a chance...good luck"   switch -- [expr [rand 6] + 1] {     "1" {       putserv "PRIVMSG $chan :you are a winner"      }     "2" {       putserv "PRIVMSG $chan :now thats has to hurt"       putserv "KICK $chan $nick :now did that hurt?"     }     "3" {       putserv "PRIVMSG $chan :you are a winner"     }     "4" {       putserv "PRIVMSG $chan :did you hear something?, because i dident :-)"       putserv "KICK $chan $nick :will you ever learn?"     }     "5" {       putserv "PRIVMSG $chan :you are the weakest link good bye"       putserv "KICK $chan $nick :lol you fell for that old trick"     }     "6" {       putserv "PRIVMSG $chan :Wow a winner have another go :-)"     }   } } proc spin:floodpro {} {   global smode   set smode "1" } # Master shut-off switch, available to ANY OP in Channel bind pub -|- !spin_on enable:spin bind pub -|- !spin_off disable:spin proc enable:spin {nick uhost handle channel text} {  global spin_chan s_master_mode   if {([string tolower $channel] == $spin_chan) &amp;&amp; ([isop $nick $spin_chan] == 1)} {     set s_master_mode 1    puthelp "PRIVMSG $spin_chan :The Spin game has been unlocked, Type: !spin to play"   }   return 0 } proc disable:spin {nick uhost handle channel text} {   global spin_chan s_master_mode   if {[string tolower $channel] != $spin_chan} {return 0}   if {[isop $nick $spin_chan]} {     set s_master_mode "0"     puthelp "PRIVMSG $spin_chan :The Spin game has been locked in OFF mode"   }   return 0 } </code></pre></div><p>Statistics: Posted by Guest — Mon Aug 16, 2004 8:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Dedan]]></name></author>
		<updated>2003-08-14T16:33:23-04:00</updated>

		<published>2003-08-14T16:33:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24955#p24955</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24955#p24955"/>
		<title type="html"><![CDATA[russian roulette]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24955#p24955"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>#######################################################################                             SPIN                                   ## spin.v1.3.tcl                                                      ########################################################################                                                                    ##  - OP commands -      !s on      will enable spin                  ##                       !s off     will disable spin                 ##                                                                    ##  - commands -         !spin      spins wheel                       ##                                                                    ## Channel you want to run the !Spin game on.  1 room ONLY# ex. set spin_chan "#egg_game_players"set spin_chan ""# Set the minimum number of seconds between spins# ex. set s_protect_seconds 7set s_protect_seconds 7#######################################################################            There Are No User Settings Below this Point             ##                                                                    ##    Don't edit anything below unless you know what you are doing    #######################################################################set spin_chan [string tolower $spin_chan]set s_master_mode 1set smode 1set sgmode 1set $sbbreason "Because you just recieved a 10 minute ban!"#######################################################################                          Main Script                               #######################################################################bind pub - !spin my:spin proc my:spin {nick uhost handle channel text} {  global botnick spin_chan s_master_mode smode sgmode s_protect_seconds sbbreason  if {[$s_master_mode == "0"]} {return 0}  set chan [string tolower $channel]  if {![$chan == $spin_chan]} {return 0}  if {![botisop $chan]} {    putserv "PRIVMSG $chan :I'm not OPed here so I can not Spin"    return 0  }  if {[$smode == "0"]} {return 0}  set smode "0"  utimer $s_protect_seconds spin:floodpro  putserv "PRIVMSG $chan :$nick  spins the wheel ... Round and round it goes ... Where it will point nobody knows ..."   putserv "PRIVMSG $chan :Tick Tick ... Tick Tick ... What will the wheel pick?"   switch -- [expr [rand 6] + 1] {     "1" {      putserv "PRIVMSG $chan :The wheel spins until the last Tick, and with that"        putserv "KICK $chan $nick :You get a free kick!"     }     "2" {      putserv "PRIVMSG $chan :The wheel will land on the one that gets a ban"      putserv "MODE $chan +b *!*@[lindex [split $uhost @] 1]"     }     "3" {      putserv "PRIVMSG $chan :You have a little time on your hands"      set mask "*!*@[lindex [split $uhost @] 1]"       newchanban $chan $mask $::botnick $sbbreason 10    }     "4" {      putserv "PRIVMSG $chan :You are on your way to the top, because you were just made a OP"      putserv "MODE $chan +o $nick"     }     "5" {      putserv "PRIVMSG $chan :I hope you were not on top, because you just lost your OPs"       putserv "MODE $chan -o $nick"    }     "6" {      putserv "PRIVMSG $chan :If it's hard for us to know what you typed, it is what you fear - you just lost your voice in here"       putserv "MODE $chan -v $nick"    }   } } proc spin:floodpro {} {  global smode  set smode "1"}#######################################################################                     Master shut-off Switch                         ######################################################################## Master shut-off switch, available to ANY OP in Channelbind pub -|- "!s on" enable:spinbind pub -|- "!s off" disable:spinproc enable:spin {nick uhost handle channel} {  global spin_chan s_master_mode  if {![string tolower $channel == $spin_chan]} {return 0}  if {[isop $nick $spin_chan]} {    set s_master_mode "1"    puthelp "PRIVMSG $spin_chan :The Spin game has been unlocked, Type: !spin to play"  }  return 0}proc disable:spin {nick uhost handle channel} {  global spin_chan s_master_mode  if {![string tolower $channel == $spin_chan]} {return 0}  if {[isop $nick $spin_chan]} {    set s_master_mode "0"    puthelp "PRIVMSG $spin_chan :The Spin game has been locked in OFF mode"  }  return 0}##################################################################################################### EOF ##################################</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3472">Dedan</a> — Thu Aug 14, 2003 4:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-08-14T14:43:41-04:00</updated>

		<published>2003-08-14T14:43:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24941#p24941</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24941#p24941"/>
		<title type="html"><![CDATA[russian roulette]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24941#p24941"><![CDATA[
Duno what exactly you did there, is working fine at me. Is exactly the last code changed by Dedan.<br>Also, as I've sugested previously, please do change from:<div class="codebox"><p>Code: </p><pre><code>putserv "MSG $chan :$nick  spins the wheel ... Round and round it goes ... Where it will point nobody knows ..."   putserv "MSG $chan :Tick Tick ... Tick Tick ... Who will the wheel pick?" </code></pre></div>to:<div class="codebox"><p>Code: </p><pre><code>putserv "PRIVMSG $chan :$nick  spins the wheel ... Round and round it goes ... Where it will point nobody knows ..." putserv "PRIVMSG $chan :Tick Tick ... Tick Tick ... Who will the wheel pick?"</code></pre></div>in order to work corectly. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><br><br>Btw, what's with the my(chan)? I don't see it in the code.. is an unfinished fdeature or something? <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> Also, there is no need to call globaly botnick, cos is called globaly from $::botnick.. and the my* thing can dissapear to + set chan [string tolower $channel] <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"> and replacing from:<div class="codebox"><p>Code: </p><pre><code>proc my:spin {nick uhost handle channel text} { </code></pre></div>to:<div class="codebox"><p>Code: </p><pre><code>proc my:spin {nick uhost handle chan text} { </code></pre></div>if you are to lazy to replace in the entire code from $chan to $channel <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Thu Aug 14, 2003 2:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Kaarel]]></name></author>
		<updated>2003-08-14T14:39:04-04:00</updated>

		<published>2003-08-14T14:39:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24939#p24939</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24939#p24939"/>
		<title type="html"><![CDATA[russian roulette]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24939#p24939"><![CDATA[
I dont know, my request, can anybody upload somewhere the working script of that russian roulette (in .tcl format) and give here a adress<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3078">Kaarel</a> — Thu Aug 14, 2003 2:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2003-08-14T13:57:54-04:00</updated>

		<published>2003-08-14T13:57:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24934#p24934</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24934#p24934"/>
		<title type="html"><![CDATA[russian roulette]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24934#p24934"><![CDATA[
<blockquote class="uncited"><div>I copy+paste that into notepad, save it, restarted the bot, but till <br><br>&lt;Botman&gt; [19:37] Tcl error [my:spin]: invalid command name "? "</div></blockquote>Even though notepad is the worst text editor ever it has several encodings to choose from iirc. Did you by any chance save it as something else than ANSI/pure text/whatever they call it?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Thu Aug 14, 2003 1:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Kaarel]]></name></author>
		<updated>2003-08-14T12:38:52-04:00</updated>

		<published>2003-08-14T12:38:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24917#p24917</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24917#p24917"/>
		<title type="html"><![CDATA[russian roulette]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24917#p24917"><![CDATA[
I copy+paste that into notepad, save it, restarted the bot, but till <br><br><br>&lt;Botman&gt; [19:37] Tcl error [my:spin]: invalid command name "? "<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3078">Kaarel</a> — Thu Aug 14, 2003 12:38 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Dedan]]></name></author>
		<updated>2003-08-14T12:07:16-04:00</updated>

		<published>2003-08-14T12:07:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24916#p24916</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24916#p24916"/>
		<title type="html"><![CDATA[russian roulette]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24916#p24916"><![CDATA[
try this then:<br><div class="codebox"><p>Code: </p><pre><code>set my(chan) ""bind pub - !spin my:spin proc my:spin {nick uhost handle channel text} {  global botnick my  set chan [string tolower $channel]  putserv "MSG $chan :$nick  spins the wheel ... Round and round it goes ... Where it will point nobody knows ..."   putserv "MSG $chan :Tick Tick ... Tick Tick ... Who will the wheel pick?"   switch -- [expr [rand 7] + 1] {     "1" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         putserv "PRIVMSG $chan :The wheel spins until the last Tick, and with that"          putserv "KICK $chan $nick :You get a free kick!"       }     }     "2" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         putserv "PRIVMSG $chan :The wheel will land on the one that gets a ban"        putserv "MODE $chan +b *!*@[lindex [split $uhost @] 1]"       }     }     "3" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {        putserv "PRIVMSG $chan :You have a little time on your hands"        set mask "*!*@[lindex [split $uhost @] 1]"         newchanban $chan $mask $::botnick "Because you just recieved a 10 minute ban!" 10       }     }     "4" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         putserv "PRIVMSG $chan :You are on your way to the top, because you were just made a OP"        putserv "MODE $chan +o $nick"       }     }     "5" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         putserv "PRIVMSG $chan :I hope you were not on top, because you just lost your OPs"         putserv "MODE $chan -o $nick"       }     }     "6" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         putserv "PRIVMSG $chan :It is what you fear - you just lost your voice in here"         putserv "MODE $chan -v $nick"       }     }     "7" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         putserv "PRIVMSG $chan :If it's hard to know what you type, you are in luck, a -v bites"         putserv "MODE $chan +v $nick"       }     }   } } </code></pre></div>paste it this time into a file so you<br>don't lose a "{" like last time<br><br>btw, does that newchanban look right?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3472">Dedan</a> — Thu Aug 14, 2003 12:07 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Kaarel]]></name></author>
		<updated>2003-08-14T11:13:36-04:00</updated>

		<published>2003-08-14T11:13:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24915#p24915</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24915#p24915"/>
		<title type="html"><![CDATA[Re: Quote of the day]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24915#p24915"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div>I dont use text editor</div></blockquote>Then how did you manage to run the script? Did you source it directly from the forum?</div></blockquote><br>I copy the text into wordbad and saved as russia.tcl, then edit my eggdrop.conf and restarted the bot.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3078">Kaarel</a> — Thu Aug 14, 2003 11:13 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2003-08-14T10:50:50-04:00</updated>

		<published>2003-08-14T10:50:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24914#p24914</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24914#p24914"/>
		<title type="html"><![CDATA[Quote of the day]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24914#p24914"><![CDATA[
<blockquote class="uncited"><div>I dont use text editor</div></blockquote>Then how did you manage to run the script? Did you source it directly from the forum?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Thu Aug 14, 2003 10:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Kaarel]]></name></author>
		<updated>2003-08-14T08:58:41-04:00</updated>

		<published>2003-08-14T08:58:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24907#p24907</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24907#p24907"/>
		<title type="html"><![CDATA[russian roulette]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24907#p24907"><![CDATA[
Ofloo can you post here that code what you use<br>spock: I dont use text editor<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3078">Kaarel</a> — Thu Aug 14, 2003 8:58 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spock]]></name></author>
		<updated>2003-08-14T08:40:29-04:00</updated>

		<published>2003-08-14T08:40:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24905#p24905</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24905#p24905"/>
		<title type="html"><![CDATA[russian roulette]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24905#p24905"><![CDATA[
this is the third time you have problem with "?" in scripts which dont contain "?".<br><br>maybe your text editor is [censored] it up, in any case, the code provided here isn't at fault.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2369">spock</a> — Thu Aug 14, 2003 8:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Kaarel]]></name></author>
		<updated>2003-08-14T08:14:58-04:00</updated>

		<published>2003-08-14T08:14:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24904#p24904</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24904#p24904"/>
		<title type="html"><![CDATA[russian roulette]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24904#p24904"><![CDATA[
I used that code what I post one post up.<br><br>And when I write !spin<br><br><br><br>&lt;Botman&gt; [15:13] Tcl error [my:spin]: invalid command name "? "<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3078">Kaarel</a> — Thu Aug 14, 2003 8:14 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2003-08-14T06:55:28-04:00</updated>

		<published>2003-08-14T06:55:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24901#p24901</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24901#p24901"/>
		<title type="html"><![CDATA[russian roulette]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24901#p24901"><![CDATA[
i realy tryed to !spin like 50 times or so been banned gotten snickers voice -voice and .. but no error .. ? could you specifiy ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Thu Aug 14, 2003 6:55 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Kaarel]]></name></author>
		<updated>2003-08-14T06:28:51-04:00</updated>

		<published>2003-08-14T06:28:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24900#p24900</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24900#p24900"/>
		<title type="html"><![CDATA[russian roulette]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24900#p24900"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind pub - !spin my:spin proc my:spin {nick host handle chan text} {  putserv "PRIVMSG $chan :$nick  spins the wheel ... Round and round it goes ... Where it will point nobody knows ..."   putserv "PRIVMSG $chan :Where it will point nobody knows .... Tick Tick Tick ... Tick Tick ... Tick"   switch -- [expr [rand 7] + 1] {     "1" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         putserv "PRIVMSG $chan :And $nick gets a free kick out of here ... *snicker*"          putserv "KICK $chan $nick :Your free kick!"       }     }     "2" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         putserv "MODE $chan +b *!*@[lindex [split $host @] 1]"       }     }     "3" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         set mask "*!*@[lindex [split $host @] 1]"         newchanban $chan $mask $::botnick "Here is your prise.. 10 mintes ban!" 10       }     }     "4" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         putserv "PRIVMSG $chan :And $nick gets op in here.."         putserv "MODE $chan +o $nick"       }     }     "5" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         putserv "PRIVMSG $chan :One deop comming up! hehe"         putserv "MODE $chan -o $nick"       }     }     "6" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         putserv "PRIVMSG $chan :One -voice comming up!"         putserv "MODE $chan -v $nick"       }     }     "7" {       if {![botisop $chan]} {         putserv "PRIVMSG $chan :I'm not oped here so I can't give you your prise.."       } else {         putserv "PRIVMSG $chan :One +voice comming up!"         putserv "MODE $chan +v $nick"       }     }   } } </code></pre></div><br><br>Thats the code<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3078">Kaarel</a> — Thu Aug 14, 2003 6:28 am</p><hr />
]]></content>
	</entry>
	</feed>
