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

	<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>2015-02-23T10:20:05-04:00</updated>

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

		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2015-02-23T09:18:17-04:00</updated>

		<published>2015-02-23T09:18:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103536#p103536</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103536#p103536"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103536#p103536"><![CDATA[
That part worked, I left it as it was:)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Mon Feb 23, 2015 9:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2015-02-23T05:17:25-04:00</updated>

		<published>2015-02-23T05:17:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103534#p103534</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103534#p103534"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103534#p103534"><![CDATA[
<blockquote class="uncited"><div>if {[string tolower $theNick] == [string tolower $botnick]} { </div></blockquote>really? why don't you use built-in <em class="text-italics">isbotnick</em> function?<br>Anyway.. how about:<div class="codebox"><p>Code: </p><pre><code>proc doTimebomb {nick uhost hand chan text} {if {[scan $text {%s} who] != 1} { set theNick $nick} else {set theNick $who}if {![onchan $theNick]} {IRCPrivMSG $chan "$theNick is not on $chan"return  }set hn [nick2hand $theNick $chan]if {[isbotnick $theNick] || [matchattr $hn "b|b" $chan]} {IRCKick $nick $chan "I will not tollerate that!"return  }StartTimeBomb $nick $theNick $chan} </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Mon Feb 23, 2015 5:17 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[langer_hans]]></name></author>
		<updated>2015-02-23T10:20:05-04:00</updated>

		<published>2015-02-23T01:28:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103533#p103533</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103533#p103533"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103533#p103533"><![CDATA[
very nice, works great.<br><br><br>[06:26:50] &lt;@user1&gt; !bomb Bot<br>[06:26:52] * You were kicked by Bot (I will not tollerate this!)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12493">langer_hans</a> — Mon Feb 23, 2015 1:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2015-02-22T14:41:05-04:00</updated>

		<published>2015-02-22T14:41:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103529#p103529</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103529#p103529"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103529#p103529"><![CDATA[
This might be a more correct way to prove nicks before continuing.<br><br>Replace the existing proc doTimebomb with this...<br><div class="codebox"><p>Code: </p><pre><code>proc doTimebomb {nick uhost hand chan arg} {   global botnick   set theNick $nick   set arg [split [string trim $arg]]  if {[llength $arg] == 1} {     set theNick [lindex $arg 0]   }   if {[string tolower $theNick] == [string tolower $botnick]} {     IRCKick $nick $chan "I will not tollerate this!"     return   }   set hn [nick2hand $theNick $chan]  if {$hn == ""} {    IRCPrivMSG $chan "$theNick is not on $chan"    return   }   if {$hn != "*" &amp;&amp; [matchattr $hn "b|b" $chan]} {    IRCKick $nick $chan "I will not tollerate that!"     return   }   StartTimeBomb $nick $theNick $chan } </code></pre></div>Test that out and verify you can not timebomb the bot.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Sun Feb 22, 2015 2:41 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[langer_hans]]></name></author>
		<updated>2015-02-22T14:35:18-04:00</updated>

		<published>2015-02-22T14:35:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103528#p103528</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103528#p103528"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103528#p103528"><![CDATA[
i have only one bot<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12493">langer_hans</a> — Sun Feb 22, 2015 2:35 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2015-02-22T12:20:25-04:00</updated>

		<published>2015-02-22T12:20:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103526#p103526</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103526#p103526"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103526#p103526"><![CDATA[
<blockquote class="uncited"><div>is it possible to protect users from a bomb? i dont want: !bomb Bot</div></blockquote>The script already tries to do this,  but is done badly/incorrectly.<br>The script confuses nick with handle, they are not always the same thing:)<br><br>Have you added all the other bots (with +b) to the bot running the timebomb script?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Sun Feb 22, 2015 12:20 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[langer_hans]]></name></author>
		<updated>2015-02-22T07:45:55-04:00</updated>

		<published>2015-02-22T07:45:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103524#p103524</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103524#p103524"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103524#p103524"><![CDATA[
yeah 5min pause between a NEW bomb. i explain it:<br><br>[11:11]user1: !bomb user2<br><br>[11:11]Bot: user2 you have to defuse the bomb, !cut red, blue, green, yellow<br><br>[11:11]user2: !cut red<br><br>[11:11]Bot: your wrong -&gt; kick user2<br><br>[11:12]user2: !bomb user1<br><br>[11:12]Bot: you have to wait - i have to build a new bomb first.<br><br>[11:16]user2: !bomb user1<br><br>[11:16]Bot: user1 you have to defuse the bomb, !cut red, blue, green, yellow<br><br>______________<br><br>i tried your new script - it works so far. thanks a lot!<br><br>is it possible to protect users from a bomb? i dont want: <strong class="text-strong">!bomb Bot</strong><br><br>suicide bomb <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=12493">langer_hans</a> — Sun Feb 22, 2015 7:45 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2015-02-21T20:12:25-04:00</updated>

		<published>2015-02-21T20:12:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103523#p103523</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103523#p103523"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103523#p103523"><![CDATA[
5 minutes!  lol:)<br><br>Let's just try this...<br><div class="codebox"><p>Code: </p><pre><code> ###############################################################################  #  Name:                                        Timebomb  #  Author:                                      jotham.read@gmail.com  #  Web Site:                                    http://radiosaurus.sporkism.org  #  Eggdrop Version:     1.6.x  #  Description:  #  #  This is a small TCL script for Eggdrop.  Timebomb is a game where one person  #  asks the Eggdrop bot to plant a timebomb in another users pants.  The target  #  user then needs to diffuse the bomb by cutting the correct wire, or be  #  kicked from the channel.  #  #  To start the game a user must type:  #    timebomb &lt;nickname&gt;  #  This will cause the target user to have a timebomb "stuffed in their pants"  #  once this occurs the user will have a number of seconds to diffuse the bomb.  #  Diffusing the bomb is done by typing:  #    cutwire &lt;color&gt;  #  The wire colors you can choose from are displayed when the bomb is planted.  #  This script will not allow bots (Users who are +b), or the bot running the  #  script, to be timebombed.  #  #  I know it sounds very silly but it is a rather fun game.  #  ###############################################################################  bind  pub   -   !bomb  doTimebomb  bind  pub   -   !cut   doCutWire  ###############################################################################  # Configuration  #  set gTimebombMinimumDuration 30  set gTimebombMaximumDuration 35  set gWireChoices "Red Blue Yellow Green Goldbrauneschnitzelpanade Pissgelb"  set gMaxWireCount 4  ###############################################################################  # Internal Globals  #  set gTheScriptVersion "0.4"  set gTimebombActive 0  set gTimerId 0  set gTimebombTarget ""  set gTimebombChannel ""  set gCorrectWire ""  set gNumberNames "zero one two three four five six seven eight nine ten eleven twelve"  ###############################################################################  proc note {msg} {    putlog "% $msg"  }  proc IRCKick {theNick theChannel theReason} {    note "Kicking $theNick in $theChannel (Reason: $theReason)"    puthelp "KICK $theChannel $theNick :$theReason"  }  proc IRCPrivMSG {theTarget messageString} {    puthelp "PRIVMSG $theTarget :$messageString"  }  proc IRCAction {theTarget messageString} {    puthelp "PRIVMSG $theTarget :\001ACTION $messageString\001"  }  proc MakeEnglishList {theList} {    set theListLength [llength $theList]    set returnString [lindex $theList 0]    for {set x 1} {$x &lt; $theListLength} {incr x} {      if { $x == [expr $theListLength - 1] } {        set returnString "$returnString and [lindex $theList $x]"      } else {        set returnString "$returnString, [lindex $theList $x]"      }    }    return $returnString  }  proc SelectWires {wireCount} {    global gWireChoices    set totalWireCount [llength $gWireChoices]    set selectedWires ""    for {set x 0} {$x &lt; $wireCount} {incr x} {      set currentWire [lindex $gWireChoices [expr int( rand() * $totalWireCount )]]      if { [lsearch $selectedWires $currentWire] == -1 } {        lappend selectedWires $currentWire      } else {        set x [expr $x - 1]      }    }    return $selectedWires  }  proc DetonateTimebomb {destroyTimer kickMessage} {    global gTimebombTarget gTimerId gTimebombChannel gTimebombActive    if { $destroyTimer } {      killutimer $gTimerId    }    set gTimerId 0    set gTimebombActive 0    IRCKick $gTimebombTarget $gTimebombChannel $kickMessage  }  proc DiffuseTimebomb {wireCut} {     global gTimerId gTimebombActive gTimebombTarget gTimebombChannel gTimebomber     killutimer $gTimerId     set gTimerId 0     set gTimebombActive 0     IRCPrivMSG $gTimebombChannel "$gTimebombTarget cut the $wireCut wire.  This has defused the bomb!"     StartTimeBomb $gTimebombTarget $gTimebomber $gTimebombChannel  }  proc StartTimeBomb {theStarter theNick theChannel} {     global gTimebombActive gTimebombTarget gTimerId gTimebombChannel gNumberNames gCorrectWire     global gMaxWireCount gTimebombMinimumDuration gTimebombMaximumDuration gTimebomber   ;# &lt;- change this line #     if { $gTimebombActive == 1 } {       note "Timebomb not started for $theStarter (Reason: timebomb already active)"       if { $theChannel != $gTimebombChannel } {         IRCPrivMSG $theChannel "I don't have a single bomb to spare. :-("       } else {         IRCAction $theChannel "points at the bulge in the back of $gTimebombTarget's pants."       }     } else {       set timerDuration [expr $gTimebombMinimumDuration + [expr int(rand() * ($gTimebombMaximumDuration - $gTimebombMinimumDuration))]]       set gTimebombTarget $theNick       set gTimebombChannel $theChannel       set gTimebomber $theStarter     ;# &lt;- add this line #       set numberOfWires 4             ;# &lt;- change this line #       set listOfWires [SelectWires $numberOfWires]       set gCorrectWire [lindex $listOfWires [expr int( rand() * $numberOfWires )]]       set wireListAsEnglish [MakeEnglishList $listOfWires]       set wireCountAsEnglish [lindex $gNumberNames $numberOfWires]       IRCAction $theChannel "stuffs the bomb into $gTimebombTarget's pants.  The display reads \[\002$timerDuration\002\] seconds."       if { $numberOfWires == 1 } {         IRCPrivMSG $theChannel "Diffuse the bomb by cutting the correct wire. Type !cut &lt;color&gt; There is $wireCountAsEnglish wire. It is $wireListAsEnglish."       } else {         IRCPrivMSG $theChannel "Diffuse the bomb by cutting the correct wire. Type !cut &lt;color&gt; There are $wireCountAsEnglish wires. They are $wireListAsEnglish."       }       note "Timebomb started by $theStarter (Bomb handed to $theNick it will detonate in $timerDuration seconds)"       set gTimebombActive 1       set gTimerId [utimer $timerDuration "DetonateTimebomb 0 {\002*BOOM!*\002}"]     }   }  ###############################################################################  # Eggdrop command binds  #  proc doCutWire {nick uhost hand chan arg} {    global gTimebombActive gCorrectWire gTimebombTarget    if { $gTimebombActive == 1 } {      if { [string tolower $nick] == [string tolower $gTimebombTarget] } {        if { [llength $arg] == 1 } {          if { [string tolower $arg] == [string tolower $gCorrectWire] } {            DiffuseTimebomb $gCorrectWire          } else {            DetonateTimebomb 1 "\002snip...*BOOM!*\002"          }        }      }    }  }  proc doTimebomb {nick uhost hand chan arg} {    global botnick    set theNick $nick    if { [llength $arg] == 1 } {      set theNick [lindex [split $arg] 0]    }    if { [string tolower $theNick] == [string tolower $botnick] } {      set theNick $nick      IRCKick $theNick $chan "I will not tollerate this!"      return    }    if { [validuser $theNick] == 1 } {      if { [matchattr $theNick "+b"] == 1 } {        set theNick $nick        IRCKick $theNick $chan "I will not tollerate that!"        return      }    }    StartTimeBomb $nick $theNick $chan  }  ###############################################################################  note "timebomb$gTheScriptVersion: loaded";  note " with $gMaxWireCount wire maximum,"  note " and time range of $gTimebombMinimumDuration to $gTimebombMaximumDuration seconds."; </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Sat Feb 21, 2015 8:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[langer_hans]]></name></author>
		<updated>2015-02-21T19:55:18-04:00</updated>

		<published>2015-02-21T19:55:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103522#p103522</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103522#p103522"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103522#p103522"><![CDATA[
is it possible to get a minimum time between a <strong class="text-strong">NEW BOMB?</strong><br><br>i think 5min would be great. if there is no time it would be spammed <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>here is my actual script<br><br><div class="codebox"><p>Code: </p><pre><code>################################################################################  Name:                                        Timebomb#  Author:                                      jotham.read@gmail.com#  Web Site:                                    http://radiosaurus.sporkism.org#  Eggdrop Version:     1.6.x#  Description:##  This is a small TCL script for Eggdrop.  Timebomb is a game where one person#  asks the Eggdrop bot to plant a timebomb in another users pants.  The target#  user then needs to diffuse the bomb by cutting the correct wire, or be#  kicked from the channel.##  To start the game a user must type:#    timebomb &lt;nickname&gt;#  This will cause the target user to have a timebomb "stuffed in their pants"#  once this occurs the user will have a number of seconds to diffuse the bomb.#  Diffusing the bomb is done by typing:#    cutwire &lt;color&gt;#  The wire colors you can choose from are displayed when the bomb is planted.#  This script will not allow bots (Users who are +b), or the bot running the#  script, to be timebombed.##  I know it sounds very silly but it is a rather fun game.################################################################################bind  pub   -   !bomb  doTimebombbind  pub   -   !cut   doCutWire################################################################################ Configuration#set gTimebombMinimumDuration 30set gTimebombMaximumDuration 35set gWireChoices "Red Blue Yellow Green Goldbrauneschnitzelpanade Pissgelb"set gMaxWireCount 4################################################################################ Internal Globals#set gTheScriptVersion "0.4"set gTimebombActive 0set gTimerId 0set gTimebombTarget ""set gTimebombChannel ""set gCorrectWire ""set gNumberNames "zero one two three four five six seven eight nine ten eleven twelve"###############################################################################proc note {msg} {  putlog "% $msg"}proc IRCKick {theNick theChannel theReason} {  note "Kicking $theNick in $theChannel (Reason: $theReason)"  putserv "KICK $theChannel $theNick :$theReason"}proc IRCPrivMSG {theTarget messageString} {  putserv "PRIVMSG $theTarget :$messageString"}proc IRCAction {theTarget messageString} {  putserv "PRIVMSG $theTarget :\001ACTION $messageString\001"}proc MakeEnglishList {theList} {  set theListLength [llength $theList]  set returnString [lindex $theList 0]  for {set x 1} {$x &lt; $theListLength} {incr x} {    if { $x == [expr $theListLength - 1] } {      set returnString "$returnString and [lindex $theList $x]"    } else {      set returnString "$returnString, [lindex $theList $x]"    }  }  return $returnString}proc SelectWires {wireCount} {  global gWireChoices  set totalWireCount [llength $gWireChoices]  set selectedWires ""  for {set x 0} {$x &lt; $wireCount} {incr x} {    set currentWire [lindex $gWireChoices [expr int( rand() * $totalWireCount )]]    if { [lsearch $selectedWires $currentWire] == -1 } {      lappend selectedWires $currentWire    } else {      set x [expr $x - 1]    }  }  return $selectedWires}proc DetonateTimebomb {destroyTimer kickMessage} {  global gTimebombTarget gTimerId gTimebombChannel gTimebombActive  if { $destroyTimer } {    killutimer $gTimerId  }  set gTimerId 0  set gTimebombActive 0  IRCKick $gTimebombTarget $gTimebombChannel $kickMessage}proc DiffuseTimebomb {wireCut} {   global gTimerId gTimebombActive gTimebombTarget gTimebombChannel gTimebomber   killutimer $gTimerId   IRCPrivMSG $gTimebombChannel "$gTimebombTarget cut the $wireCut wire.  This has defused the bomb!"   StartTimeBomb $gTimebombTarget $gTimebomber $gTimebombChannel} proc StartTimeBomb {theStarter theNick theChannel} {   global gTimebombActive gTimebombTarget gTimerId gTimebombChannel gNumberNames gCorrectWire   global gMaxWireCount gTimebombMinimumDuration gTimebombMaximumDuration gTimebomber   ;# &lt;- change this line #   if { $gTimebombActive == 1 } {     note "Timebomb not started for $theStarter (Reason: timebomb already active)"     if { $theChannel != $gTimebombChannel } {       IRCPrivMSG $theChannel "I don't have a single bomb to spare. :-("     } else {       IRCAction $theChannel "points at the bulge in the back of $gTimebombTarget's pants."     }   } else {     set timerDuration [expr $gTimebombMinimumDuration + [expr int(rand() * ($gTimebombMaximumDuration - $gTimebombMinimumDuration))]]     set gTimebombTarget $theNick     set gTimebombChannel $theChannel     set gTimebomber $theStarter     ;# &lt;- add this line #     set numberOfWires 4             ;# &lt;- change this line #     set listOfWires [SelectWires $numberOfWires]     set gCorrectWire [lindex $listOfWires [expr int( rand() * $numberOfWires )]]     set wireListAsEnglish [MakeEnglishList $listOfWires]     set wireCountAsEnglish [lindex $gNumberNames $numberOfWires]     IRCAction $theChannel "stuffs the bomb into $gTimebombTarget's pants.  The display reads \[\002$timerDuration\002\] seconds."     if { $numberOfWires == 1 } {       IRCPrivMSG $theChannel "Diffuse the bomb by cutting the correct wire. Type !cut &lt;color&gt; There is $wireCountAsEnglish wire. It is $wireListAsEnglish."     } else {       IRCPrivMSG $theChannel "Diffuse the bomb by cutting the correct wire. Type !cut &lt;color&gt; There are $wireCountAsEnglish wires. They are $wireListAsEnglish."     }     note "Timebomb started by $theStarter (Bomb handed to $theNick it will detonate in $timerDuration seconds)"     set gTimebombActive 1     set gTimerId [utimer $timerDuration "DetonateTimebomb 0 {\002*BOOM!*\002}"]   } }################################################################################ Eggdrop command binds#proc doCutWire {nick uhost hand chan arg} {  global gTimebombActive gCorrectWire gTimebombTarget  if { $gTimebombActive == 1 } {    if { [string tolower $nick] == [string tolower $gTimebombTarget] } {      if { [llength $arg] == 1 } {        if { [string tolower $arg] == [string tolower $gCorrectWire] } {          DiffuseTimebomb $gCorrectWire        } else {          DetonateTimebomb 1 "\002snip...*BOOM!*\002"        }      }    }  }}proc doTimebomb {nick uhost hand chan arg} {  global botnick  set theNick $nick  if { [llength $arg] == 1 } {    set theNick [lindex [split $arg] 0]  }  if { [string tolower $theNick] == [string tolower $botnick] } {    set theNick $nick    IRCKick $theNick $chan "I will not tollerate this!"    return  }  if { [validuser $theNick] == 1 } {    if { [matchattr $theNick "+b"] == 1 } {      set theNick $nick      IRCKick $theNick $chan "I will not tollerate that!"      return    }  }  StartTimeBomb $nick $theNick $chan}###############################################################################note "timebomb$gTheScriptVersion: loaded";note " with $gMaxWireCount wire maximum,"note " and time range of $gTimebombMinimumDuration to $gTimebombMaximumDuration seconds.";</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12493">langer_hans</a> — Sat Feb 21, 2015 7:55 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2015-02-21T19:49:53-04:00</updated>

		<published>2015-02-21T19:49:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103521#p103521</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103521#p103521"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103521#p103521"><![CDATA[
I see the issue I think, Please post the script as you have it now and I'll try to patch further.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Sat Feb 21, 2015 7:49 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[langer_hans]]></name></author>
		<updated>2015-02-21T19:48:20-04:00</updated>

		<published>2015-02-21T19:48:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103520#p103520</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103520#p103520"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103520#p103520"><![CDATA[
your right, i did a mistake at the edit!<br><br><br>i tried a new one:<br><br><br>i tried a new edit of the script.<br><br><br>i defused the bomb. then the bot said:<br><blockquote class="uncited"><div>points at the bulge in the back of user2s pants.</div></blockquote><br>edit:<br><br>no errors at the partyline<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12493">langer_hans</a> — Sat Feb 21, 2015 7:48 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2015-02-21T19:45:13-04:00</updated>

		<published>2015-02-21T19:45:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103519#p103519</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103519#p103519"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103519#p103519"><![CDATA[
Expect maybe you messed up the edits...<br><br>Post a copy of the script as you have it now.<br><br>Open a dcc partyline window with the bot before you do the trigger.<br>Collect any errors that go there.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Sat Feb 21, 2015 7:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[langer_hans]]></name></author>
		<updated>2015-02-21T19:47:47-04:00</updated>

		<published>2015-02-21T19:37:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103518#p103518</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103518#p103518"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103518#p103518"><![CDATA[
okay, i will explain it:<br><br>i tried it.<br><br>user1 bombed me (user2)<br><br>i defused the bomb.<br><br>nothing happend. no one got kicked, no additional bomb would played.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12493">langer_hans</a> — Sat Feb 21, 2015 7:37 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2015-02-21T19:34:56-04:00</updated>

		<published>2015-02-21T19:34:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103517#p103517</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103517#p103517"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103517#p103517"><![CDATA[
That's not a helpful explanation of what it is or isn't doing.<br><br>Please explain "doesnt work so far"<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Sat Feb 21, 2015 7:34 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[langer_hans]]></name></author>
		<updated>2015-02-21T18:42:06-04:00</updated>

		<published>2015-02-21T18:42:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103516#p103516</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103516#p103516"/>
		<title type="html"><![CDATA[Bombscript with revenge mode]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103516#p103516"><![CDATA[
it doesnt work so far  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12493">langer_hans</a> — Sat Feb 21, 2015 6:42 pm</p><hr />
]]></content>
	</entry>
	</feed>
