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

	<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-11-09T11:40:08-04:00</updated>

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

		<entry>
		<author><name><![CDATA[RoboCop]]></name></author>
		<updated>2015-11-09T11:40:08-04:00</updated>

		<published>2015-11-09T11:40:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104543#p104543</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104543#p104543"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104543#p104543"><![CDATA[
<blockquote class="uncited"><div>Tcl error [trigger:main]: syntax error in expression "[string index $arg 0] in $ascenture(trigger)": extra tokens at end of expression</div></blockquote>I've just been using Trigger v2.0.1 script for Eggdrop 1.6.21 and this is the error it gives me from here. I tried to install the necessary TCL Libs and TCL 8.5, but I don't understand why that error occurs when I try to use "!trigger activate" as Bot Owner on a QuakeNet Channel, even when I got +o.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12270">RoboCop</a> — Mon Nov 09, 2015 11:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user18765]]></name></author>
		<updated>2014-01-22T23:26:33-04:00</updated>

		<published>2014-01-22T23:26:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102547#p102547</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102547#p102547"/>
		<title type="html"><![CDATA[Madalin trigger.tcl script Modified]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102547#p102547"><![CDATA[
Hi. I modified Madalin's trigger script with a couple of minor changes.<br>He didn't think of the feature   !cmd NICKNAME  used by everybody, even users which aren't known by the bot. But I needed that feature. And I did the same for the !trigger -list command.  I simply distinguished the  ADD/DEL needed flag with the LIST needed flag. And, for these two, added the value "-" that means "All Users". Here's the source:<br><div class="codebox"><p>Code: </p><pre><code>#### ++++ Author: MadaliN &lt;madalinmen28@yahoo.com&gt;### +++ Website: www.Ascenture.ro## +++ TCL Name: Trigger# +++ Version: 2.0.1## ++++# Commands:#   !trigger activate                (local or global owner)#   !trigger deactivate             (local or global owner)#   !trigger url www.ascenture.ro      (any user)#   !trigger -list                (local or global owner)#   !trigger -del url                (local or global owner)###### +++ This script can have the same commands saved on two different channels with different information (this means every channel has its own database)##### +++ Created: 5/19/2013####bind PUBM - * trigger:main## ++ Set here what triggers you want the script to work withset ascenture(trigger) {! . ` ?}## ++ Set here the flag (local) for the enable/disable the script (n = owner/m = master/o = operator)set ascenture(flag-ed) "n"## ++ Set here the flag (local) to use add/delete commands (n = owner/m = master/o = operator)set ascenture(flag-ad) "n"## ++ Set here the flag (local) to use list command (n = owner/m = master/o = operator/ "-" = everybody)set ascenture(flag-l) "o"## ++ Set here the flag (local) to use the command like '!cmd NICKNAME' (n = owner/m = master/o = operator/ "-" = everybody)set ascenture(flag-cm) "-"setudef flag triggerproc trigger:main {nick uhost hand chan arg} {   global trigger ascenture   if {[string index $arg 0] in $ascenture(trigger)} {      ### +++ Checking for triggers      if {[channel get $chan trigger]} {         foreach n [array names trigger $chan,*] {            set newvar [string map [list [string index $arg 0] ""] [lindex [split $arg] 0]]            if {[string match -nocase $newvar [lindex [split $n ","] 1]]} {               if {[llength [lindex [split $arg] 1]] &amp;&amp; [matchattr $hand $ascenture(flag-cm)] || [matchattr $hand |$ascenture(flag-cm) $chan] || $ascenture(flag-cm) eq "-"} {                  foreach n [split $trigger($n) "|"] { if {[llength $n]} { putserv "PRIVMSG $chan :[lindex [split $arg] 1]: \002$newvar\002 - $n" } }               } else {                  set nr 0                  foreach n [split $trigger($n) "|"] {                     if {[llength $n]} {                        incr nr                        if {$nr == 1} {                           putserv "PRIVMSG $chan :$nick: \002$newvar\002 - $n"                        } else {                           putserv "PRIVMSG $chan :$nick: $n"                        }                     }                  }               }            }         }      }      set temp(cmd) [string range $arg 1 end]      set temp(cmd) [lindex [split $temp(cmd)] 0]      set arg [join [lrange [split $arg] 1 end]]   } elseif {[isbotnick [lindex [split $arg] 0]]} {      set temp(cmd) [lindex [split $arg] 1]      set arg [join [lrange [split $arg] 2 end]]   } else { return 0 }   if {[info commands triggercmd:$temp(cmd)] != ""} { triggercmd:$temp(cmd) $nick $uhost $hand $chan $arg }}proc triggercmd:trigger {nick uhost hand chan arg} {   global trigger ascenture   switch -exact -- [lindex [split $arg] 0] {      activate {         if {[matchattr $hand $ascenture(flag-ed)] || [matchattr $hand |$ascenture(flag-ed) $chan]} {            channel set $chan +trigger            putserv "PRIVMSG $chan :\002$nick\002 - TRIGGER script \00312activated\003 succesfully"         }      }      deactivate {         if {[matchattr $hand $ascenture(flag-ed)] || [matchattr $hand |$ascenture(flag-ed) $chan]} {            channel set $chan -trigger            putserv "PRIVMSG $chan :\002$nick\002 - TRIGGER script \00312deactivated\003 succesfully"         }      }      list -      -list {         if {[matchattr $hand $ascenture(flag-ad)] || [matchattr $hand |$ascenture(flag-ad) $chan] || $ascenture(flag-l) eq "-"} {            set l ""            foreach a [array names trigger $chan,*] {               lappend l "\00303[lindex [split $a ","] 1]\003"            }            if {$l == ""} {               putserv "PRIVMSG $chan :\002$nick\002 - There are no trigger commands for this channel"               return            } else {               putserv "PRIVMSG $chan :\002$nick\002 - Trigger command list: [join $l "\002,\002 "]"            }         }      }      del -      -del {         if {[matchattr $hand $ascenture(flag-ad)] || [matchattr $hand |$ascenture(flag-ad) $chan]} {            if {![info exists trigger($chan,[lindex [split $arg] 1])]} {               putserv "PRIVMSG $chan :\002$nick\002 - There is no command \00312[lindex [split $arg] 1]\003 in my database"            } else {               unset -nocomplain trigger($chan,[lindex [split $arg] 1])               trigger:save               putserv "PRIVMSG $chan :\002$nick\002 - Command \00312[lindex [split $arg] 1]\003 erased succesfully"            }         }      }      default {         if {[matchattr $hand $ascenture(flag-ad)] || [matchattr $hand |$ascenture(flag-ad) $chan]} {            if {[lindex [split $arg] 1] == ""} { putserv "PRIVMSG $chan :\002$nick\002 - You did not provide ARGS for \00304[lindex [split $arg] 0]\003 command"; return }            if {![info exists trigger($chan,[lindex [split $arg] 0])]} {               set trigger($chan,[lindex [split $arg] 0]) "[join [lrange $arg 1 end]]"               trigger:save               putserv "PRIVMSG $chan :\002$nick\002 - You succesfully added trigger \00312[lindex [split $arg] 0]"            } else {               putserv "PRIVMSG $chan :\002$nick\002 - Command \00312[lindex [split $arg] 0]\003 already exists"            }         }      }   }}proc trigger:save {} {   global trigger   set ofile [open trigger w]   puts $ofile "array set trigger [list [array get trigger]]"   close $ofile}catch {source trigger}putlog "+++ Succesfully loaded: \00312Trigger TCL Script" </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11965">user18765</a> — Wed Jan 22, 2014 11:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Jagg]]></name></author>
		<updated>2014-01-22T05:50:07-04:00</updated>

		<published>2014-01-22T05:50:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102544#p102544</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102544#p102544"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102544#p102544"><![CDATA[
Hmmm, can't reproduce it again. Now everything looks good, even <div class="codebox"><p>Code: </p><pre><code>!trigger that's: ("a test"), another test (-!user blubb 12-2): https://www.etestasfsdf.com next: test</code></pre></div>worked. <br><br>Sorry  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_confused.gif" width="15" height="15" alt=":?" title="Confused">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cool.gif" width="15" height="15" alt="8)" title="Cool"> <br><br>...and thanks for this script!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4460">Jagg</a> — Wed Jan 22, 2014 5:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Madalin]]></name></author>
		<updated>2014-01-21T05:54:21-04:00</updated>

		<published>2014-01-21T05:54:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102540#p102540</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102540#p102540"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102540#p102540"><![CDATA[
Give me the exact usage you are using<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6396">Madalin</a> — Tue Jan 21, 2014 5:54 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Jagg]]></name></author>
		<updated>2014-01-20T19:21:35-04:00</updated>

		<published>2014-01-20T19:21:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102538#p102538</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102538#p102538"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102538#p102538"><![CDATA[
...are there " allowed as/in descriptions?! When I use " in desr the trigger isn't saved here.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4460">Jagg</a> — Mon Jan 20, 2014 7:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Madalin]]></name></author>
		<updated>2013-12-30T19:38:58-04:00</updated>

		<published>2013-12-30T19:38:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102427#p102427</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102427#p102427"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102427#p102427"><![CDATA[
Well yes ive send the new version to be uploaded instead of the old version but that didnt happened so i posted the script here. Use this version here on the forum and see if the problem still persists. I know there is no problem with this version<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6396">Madalin</a> — Mon Dec 30, 2013 7:38 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[anotheregglover]]></name></author>
		<updated>2013-12-30T17:38:45-04:00</updated>

		<published>2013-12-30T17:38:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102426#p102426</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102426#p102426"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102426#p102426"><![CDATA[
thx for this script.<br><br>i am encountering a problem. i think everytime i restart or rehash the bot the added trigger commands are lost.<br><br>where does the script save the added trigger cmds?<br><br>Btw. egghelp.org archive still refers to version 1.0<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5886">anotheregglover</a> — Mon Dec 30, 2013 5:38 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Madalin]]></name></author>
		<updated>2013-12-22T06:22:02-04:00</updated>

		<published>2013-12-22T06:22:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102394#p102394</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102394#p102394"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102394#p102394"><![CDATA[
Check the users if they really have that flag (local/global) and see in botnet chat if you have any error. Copy paste the script on <a href="http://paste.tclhelp.net" class="postlink">http://paste.tclhelp.net</a> if you know you have edited other things maybe you have an error or something (that website will tell you)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6396">Madalin</a> — Sun Dec 22, 2013 6:22 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user18765]]></name></author>
		<updated>2013-12-21T19:28:57-04:00</updated>

		<published>2013-12-21T19:28:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102393#p102393</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102393#p102393"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102393#p102393"><![CDATA[
I'm having a problem with your script.<br>Eggdrop version ===&gt; 1.6.21<br>Tcl Version ===&gt; 8.5.13<br><br>I (the owner of the bot) don't have any problem.  BUT other users do.<br>I wanted some users to be able to add/del triggers. So I changed the flags at the beginning of your script setting them all as "o" (operators).  I then added those users to the operators group (from the party channel) with the command  .adduser username operator<br>The user-adding process went fine, successfully. I then restarted the bot, but still the users weren't able to use any feature.<br>What do you think?<br><br>(bmn user) Thank you, bye <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=11965">user18765</a> — Sat Dec 21, 2013 7:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Madalin]]></name></author>
		<updated>2013-12-18T06:41:41-04:00</updated>

		<published>2013-12-18T06:41:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102340#p102340</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102340#p102340"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102340#p102340"><![CDATA[
Thanks for your ideas<br>The problem was that noone complained about the script atleast about the commands and what things needed improved. The idea was that if i knew exactly what the script would need i would have made it exactly like that <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> but i didnt. This is exactly the script i used it a long time ago and decided to make it public and share it with others and since then noone said we need this we need that <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> so trust me as soon as i will this script will be used i will improve its code/command to be more flexible and easy to use<br><br>Ideas noted and in the next version i will consider what you suggested of course <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6396">Madalin</a> — Wed Dec 18, 2013 6:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user18765]]></name></author>
		<updated>2013-12-17T23:48:52-04:00</updated>

		<published>2013-12-17T23:48:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102337#p102337</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102337#p102337"/>
		<title type="html"><![CDATA[Improvement]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102337#p102337"><![CDATA[
Hi, I tried your TCL and I think it is very nice! I  wanted to leave my feedback, and also push for a little improvement of its features!<br><br> There's just one feature I consider missing (I do some examples, too):<br><br> 1) Management of new variables (e.g. $sender and $user)       <ul><li><strong class="text-strong">!trigger   irctutorial   $user, this is a simple irc tutorial for newbies <a href="http://etc" class="postlink">http://etc</a>.</strong></li></ul><div class="codebox"><p>Code: </p><pre><code>&lt;normaluser&gt; Hey! Can you tell me how to use IRC?&lt;owner&gt; !irctutorial | normaluser&lt;bot&gt; normaluser, this is a simple irc tutorial for newbies http://etc.</code></pre></div>       <ul><li><strong class="text-strong">!trigger   irctutorial   $user, $sender told me to give you this: <a href="http://etc" class="postlink">http://etc</a>.</strong></li></ul><div class="codebox"><p>Code: </p><pre><code>&lt;normaluser&gt; Hey! Can you tell me how to use IRC?&lt;owner&gt; !irctutorial | normaluser&lt;bot&gt; normaluser, owner told me to give you this: http://etc</code></pre></div><blockquote class="uncited"><div>I would try to manage even 3rd party users, not only sender and addressee</div></blockquote><br> 2) I would enable multiple input (and output) modes, to make everything more human<br>       <ul><li><strong class="text-strong">!trigger   irctutorial   Hi! $user, I think that this one could be good for you: <a href="http://etc" class="postlink">http://etc</a>.</strong></li></ul><div class="codebox"><p>Code: </p><pre><code>&lt;normaluser&gt; Hello! Can you tell me how to use IRC?&lt;owner&gt; Hey bot, give normaluser a good !irctutorial&lt;bot&gt; Hi! normaluser, I think that this one could be good for you: http://etc</code></pre></div>Commands  <span style="color:red"><strong class="text-strong"><span style="text-decoration:underline"> must be more flexible </span></strong> </span>, and not require boring fixed patterns.<br>Also, the owner could give a list of possible answers from which the bot can randomly choose.  And for "input modes", I would employ a "keywords" technique. Keywords such as GIVE. Without any special symbol like ! . , at the beginning. Just language.<br><br>That's (almost eheh) all.  I reserve the other ones for the next release  XD<br>Bye.<br>Anonymous<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11965">user18765</a> — Tue Dec 17, 2013 11:48 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[sekai]]></name></author>
		<updated>2013-08-07T16:46:13-04:00</updated>

		<published>2013-08-07T16:46:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=101964#p101964</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=101964#p101964"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=101964#p101964"><![CDATA[
Thanks for reply, my error is my eggdrop, using eggdrop1.8 the tcl work fine, thank you Madalin <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=11923">sekai</a> — Wed Aug 07, 2013 4:46 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Madalin]]></name></author>
		<updated>2013-08-03T04:29:55-04:00</updated>

		<published>2013-08-03T04:29:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=101948#p101948</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=101948#p101948"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=101948#p101948"><![CDATA[
I modifyed some things and i tested every command and it worked. Ive tested the script on 2 systems one with FREEBSD one with CENTOS both with tcl version 8.5.9 and eggdrop v1.6.20<br><br>If you still encounter problems with the script please provide informations about the system/tcl/eggdrop version<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6396">Madalin</a> — Sat Aug 03, 2013 4:29 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[sekai]]></name></author>
		<updated>2013-08-02T22:21:03-04:00</updated>

		<published>2013-08-02T22:21:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=101947#p101947</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=101947#p101947"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=101947#p101947"><![CDATA[
error for me.<br><br>!trigger active<br><blockquote class="uncited"><div>Tcl error [trigger:main]: syntax error in expression "[string index $arg 0] in $ascenture(trigger)": extra tokens at end of expression</div></blockquote> <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=11923">sekai</a> — Fri Aug 02, 2013 10:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Madalin]]></name></author>
		<updated>2013-05-20T06:05:35-04:00</updated>

		<published>2013-05-20T06:05:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=101568#p101568</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=101568#p101568"/>
		<title type="html"><![CDATA[Create Trigger Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=101568#p101568"><![CDATA[
Version 2.0 now you can define the access level for every command<br>It now can support lines for the command<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6396">Madalin</a> — Mon May 20, 2013 6:05 am</p><hr />
]]></content>
	</entry>
	</feed>
