<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.eggheads.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jack3</id>
	<title>EggWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.eggheads.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jack3"/>
	<link rel="alternate" type="text/html" href="https://wiki.eggheads.org/index.php/Special:Contributions/Jack3"/>
	<updated>2026-05-25T06:58:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://wiki.eggheads.org/index.php?title=User:Jack3&amp;diff=117</id>
		<title>User:Jack3</title>
		<link rel="alternate" type="text/html" href="https://wiki.eggheads.org/index.php?title=User:Jack3&amp;diff=117"/>
		<updated>2022-08-31T23:05:31Z</updated>

		<summary type="html">&lt;p&gt;Jack3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Super simple, first time ever, script&lt;br /&gt;
&lt;br /&gt;
August 30, 2022&lt;br /&gt;
&lt;br /&gt;
A very simple script.  This is good for a 'first script'.  Keep it simple - easier to get the hang of installing and using scripts. &lt;br /&gt;
 &lt;br /&gt;
However, this script isn't a do-nothing script!   :)     It is actually useful.    I install it on every bot I create, first thing.&lt;br /&gt;
&lt;br /&gt;
This script creates a partyline command :    .date     .&lt;br /&gt;
It simply returns the current date and time, same as if you executed the      date      command on the linux command line in a shell.&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Usage:&lt;br /&gt;
On the partyline, simply type:         .date&lt;br /&gt;
Bot will return the date and time.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I find it very handy at times, when working in the partyline.    Especially when editing/debugging a script that &lt;br /&gt;
contains    bind cron    .   I'll want to know when to expect it to trigger, and can quickly get that info.   &lt;br /&gt;
 &lt;br /&gt;
Feel free to install and use this script.    If you do, I suggest you install it as-is, first.  No edits.   &lt;br /&gt;
Reason:  Get it installed and working correctly, first.   THEN you can hack it up and do what you want with it.   :)   &lt;br /&gt;
Suggestion:  Add to it.  Make yet another command, so that it responds to a public command in a channel,  and/or to a /msg to the bot.&lt;br /&gt;
It's good practice!   :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References: ==&lt;br /&gt;
=== https://docs.eggheads.org/using/tcl-commands.html  ===&lt;br /&gt;
     text search tcl-commands.doc and find: &lt;br /&gt;
             bind dcc&lt;br /&gt;
             putdcc&lt;br /&gt;
             ctime&lt;br /&gt;
             unixtime&lt;br /&gt;
&lt;br /&gt;
=== Other helpful info: ===&lt;br /&gt;
    http://suninet.the-demon.de/&lt;br /&gt;
    http://suninet.the-demon.de/041.htm&lt;br /&gt;
    http://suninet.the-demon.de/042.htm&lt;br /&gt;
    http://suninet.the-demon.de/043.htm&lt;br /&gt;
    http://suninet.the-demon.de/044.htm&lt;br /&gt;
&lt;br /&gt;
    https://wiki.eggheads.org/index.php/Loading_Tcl_Scripts&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start small - like this.  :)   Add to it.  That's a great way to learn!    But mostly - Have fun !     :)&lt;br /&gt;
&lt;br /&gt;
I hope this helps.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Script starts here ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
bind dcc - &amp;quot;date&amp;quot; partyline_date_time&lt;br /&gt;
&lt;br /&gt;
###&lt;br /&gt;
proc partyline_date_time {handle idx text} {&lt;br /&gt;
&lt;br /&gt;
        putdcc $idx &amp;quot;[ctime [unixtime] ]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
 }&lt;br /&gt;
###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== End script ==&lt;/div&gt;</summary>
		<author><name>Jack3</name></author>
	</entry>
	<entry>
		<id>https://wiki.eggheads.org/index.php?title=User:Jack3&amp;diff=116</id>
		<title>User:Jack3</title>
		<link rel="alternate" type="text/html" href="https://wiki.eggheads.org/index.php?title=User:Jack3&amp;diff=116"/>
		<updated>2022-08-31T22:58:19Z</updated>

		<summary type="html">&lt;p&gt;Jack3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Super simple, first time ever, script&lt;br /&gt;
&lt;br /&gt;
August 30, 2022&lt;br /&gt;
&lt;br /&gt;
A very simple script.  This is good for a 'first script'.  Keep it simple - easier to get the hang of installing and using scripts. &lt;br /&gt;
 &lt;br /&gt;
However, this script isn't a do-nothing script!   :)     It is actually useful.    I install it on every bot I create, first thing.&lt;br /&gt;
&lt;br /&gt;
This script creates a partyline command :    .date     .&lt;br /&gt;
It simply returns the current date and time, same as if you executed the      date      command on the linux command line in a shell.&lt;br /&gt;
 &lt;br /&gt;
Usage:&lt;br /&gt;
On the partyline, simply type:         .date&lt;br /&gt;
Bot will return the date and time.&lt;br /&gt;
&lt;br /&gt;
I find it very handy at times, when working in the partyline.    Especially when editing/debugging a script that &lt;br /&gt;
contains    bind cron    .   I'll want to know when to expect it to trigger, and can quickly get that info.   &lt;br /&gt;
 &lt;br /&gt;
Feel free to install and use this script.    If you do, I suggest you install it as-is, first.  No edits.   &lt;br /&gt;
Reason:  Get it installed and working correctly, first.   THEN you can hack it up and do what you want with it.   :)   &lt;br /&gt;
Suggestion:  Add to it.  Make yet another command, so that it responds to a public command in a channel,  and/or to a /msg to the bot.&lt;br /&gt;
It's good practice!   :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References: ==&lt;br /&gt;
=== https://docs.eggheads.org/using/tcl-commands.html  ===&lt;br /&gt;
     text search tcl-commands.doc and find: &lt;br /&gt;
             bind dcc&lt;br /&gt;
             putdcc&lt;br /&gt;
             ctime&lt;br /&gt;
             unixtime&lt;br /&gt;
&lt;br /&gt;
=== Other helpful info: ===&lt;br /&gt;
    http://suninet.the-demon.de/&lt;br /&gt;
    http://suninet.the-demon.de/041.htm&lt;br /&gt;
    http://suninet.the-demon.de/042.htm&lt;br /&gt;
    http://suninet.the-demon.de/043.htm&lt;br /&gt;
    http://suninet.the-demon.de/044.htm&lt;br /&gt;
&lt;br /&gt;
    https://wiki.eggheads.org/index.php/Loading_Tcl_Scripts&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start small - like this.  :)   Add to it.  That's a great way to learn!    But mostly - Have fun !     :)&lt;br /&gt;
&lt;br /&gt;
I hope this helps.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Script starts here ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
bind dcc - &amp;quot;date&amp;quot; partyline_date_time&lt;br /&gt;
&lt;br /&gt;
###&lt;br /&gt;
proc partyline_date_time {handle idx text} {&lt;br /&gt;
&lt;br /&gt;
        putdcc $idx &amp;quot;[ctime [unixtime] ]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
 }&lt;br /&gt;
###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== End script ==&lt;/div&gt;</summary>
		<author><name>Jack3</name></author>
	</entry>
	<entry>
		<id>https://wiki.eggheads.org/index.php?title=User:Jack3&amp;diff=115</id>
		<title>User:Jack3</title>
		<link rel="alternate" type="text/html" href="https://wiki.eggheads.org/index.php?title=User:Jack3&amp;diff=115"/>
		<updated>2022-08-31T22:56:11Z</updated>

		<summary type="html">&lt;p&gt;Jack3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Super simple, first time ever, script&lt;br /&gt;
&lt;br /&gt;
August 30, 2022&lt;br /&gt;
&lt;br /&gt;
A very simple script.  This is good for a 'first script'.  Keep it simple - easier to get the hang of installing and using scripts. &lt;br /&gt;
 &lt;br /&gt;
However, this script isn't a do-nothing script!   :)     It is actually useful.    I install it on every bot I create, first thing.&lt;br /&gt;
&lt;br /&gt;
This script creates a partyline command :    .date &lt;br /&gt;
It simply returns the current date and time, same as if you executed the      date      command on the linux command line in a shell.&lt;br /&gt;
 &lt;br /&gt;
Usage:&lt;br /&gt;
On the partyline, simply type:         .date&lt;br /&gt;
Bot will return the date and time.&lt;br /&gt;
&lt;br /&gt;
I find it very handy at times, when working in the partyline.    Especially when editing/debugging a script that &lt;br /&gt;
contains    bind cron    .   I'll want to know when to expect it to trigger, and can quickly get that info.   &lt;br /&gt;
 &lt;br /&gt;
Feel free to install and use this script.    If you do, I suggest you install it as-is, first.  No edits.   &lt;br /&gt;
Reason:  Get it installed and working correctly, first.   THEN you can hack it up and do what you want with it.   :)   &lt;br /&gt;
Suggestion:  Add to it.  Make yet another command, so that it responds to a public command in a channel,  and/or to a /msg to the bot.&lt;br /&gt;
It's good practice!   :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References: ==&lt;br /&gt;
=== https://docs.eggheads.org/using/tcl-commands.html  ===&lt;br /&gt;
     text search tcl-commands.doc and find: &lt;br /&gt;
             bind dcc&lt;br /&gt;
             putdcc&lt;br /&gt;
             ctime&lt;br /&gt;
             unixtime&lt;br /&gt;
&lt;br /&gt;
=== Other helpful info: ===&lt;br /&gt;
    http://suninet.the-demon.de/&lt;br /&gt;
    http://suninet.the-demon.de/041.htm&lt;br /&gt;
    http://suninet.the-demon.de/042.htm&lt;br /&gt;
    http://suninet.the-demon.de/043.htm&lt;br /&gt;
    http://suninet.the-demon.de/044.htm&lt;br /&gt;
&lt;br /&gt;
    https://wiki.eggheads.org/index.php/Loading_Tcl_Scripts&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start small - like this.  :)   Add to it.  That's a great way to learn!    But mostly - Have fun !     :)&lt;br /&gt;
&lt;br /&gt;
I hope this helps.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Script starts here ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
bind dcc - &amp;quot;date&amp;quot; partyline_date_time&lt;br /&gt;
&lt;br /&gt;
###&lt;br /&gt;
proc partyline_date_time {handle idx text} {&lt;br /&gt;
&lt;br /&gt;
        putdcc $idx &amp;quot;[ctime [unixtime] ]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
 }&lt;br /&gt;
###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== End script ==&lt;/div&gt;</summary>
		<author><name>Jack3</name></author>
	</entry>
	<entry>
		<id>https://wiki.eggheads.org/index.php?title=User:Jack3&amp;diff=113</id>
		<title>User:Jack3</title>
		<link rel="alternate" type="text/html" href="https://wiki.eggheads.org/index.php?title=User:Jack3&amp;diff=113"/>
		<updated>2022-08-31T19:31:00Z</updated>

		<summary type="html">&lt;p&gt;Jack3: /* Script starts here */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;← Super simple, first time ever, script&lt;br /&gt;
&lt;br /&gt;
 August 30, 2022&lt;br /&gt;
&lt;br /&gt;
 A very simple script.  This is good for a 'first script'.  Keep it simple - easier to get the hang of installing and using scripts. &lt;br /&gt;
 &lt;br /&gt;
 However, this script isn't a do-nothing script!   :)     It is actually useful.    I install it on every bot I create, first thing.&lt;br /&gt;
&lt;br /&gt;
 This script creates a partyline command :    .date &lt;br /&gt;
 It simply returns the current date and time, same as if you executed the      date      command on the linux command line in a shell.&lt;br /&gt;
 &lt;br /&gt;
 Usage:&lt;br /&gt;
 On the partyline, simply type:         .date&lt;br /&gt;
 Bot will return the date and time.&lt;br /&gt;
&lt;br /&gt;
 I find it very handy at times, when working in the partyline.    Especially when editing/debugging a script that &lt;br /&gt;
 contains    bind cron    .   I'll want to know when to expect it to trigger, and can quickly get that info.   &lt;br /&gt;
 &lt;br /&gt;
 Feel free to install and use this script.    If you do, I suggest you install it as-is, first.  No edits.   &lt;br /&gt;
 Reason:  Get it installed and working correctly, first.   THEN you can hack it up and do what you want with it.   :)   &lt;br /&gt;
 Suggestion:  Add to it.  Make yet another command, so that it responds to a public command in a channel,  and/or to a /msg to the bot.&lt;br /&gt;
 It's good practice!   :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References: ==&lt;br /&gt;
=== https://docs.eggheads.org/using/tcl-commands.html  ===&lt;br /&gt;
     text search tcl-commands.doc and find: &lt;br /&gt;
             bind dcc&lt;br /&gt;
             putdcc&lt;br /&gt;
             ctime&lt;br /&gt;
             unixtime&lt;br /&gt;
&lt;br /&gt;
=== Other helpful info: ===&lt;br /&gt;
    http://suninet.the-demon.de/&lt;br /&gt;
    http://suninet.the-demon.de/041.htm&lt;br /&gt;
    http://suninet.the-demon.de/042.htm&lt;br /&gt;
    http://suninet.the-demon.de/043.htm&lt;br /&gt;
    http://suninet.the-demon.de/044.htm&lt;br /&gt;
&lt;br /&gt;
    https://wiki.eggheads.org/index.php/Loading_Tcl_Scripts&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Start small - like this.  :)   Add to it.  That's a great way to learn!    But mostly - Have fun !     :)&lt;br /&gt;
&lt;br /&gt;
 I hope this helps.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Script starts here ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
bind dcc - &amp;quot;date&amp;quot; partyline_date_time&lt;br /&gt;
&lt;br /&gt;
###&lt;br /&gt;
proc partyline_date_time {handle idx text} {&lt;br /&gt;
&lt;br /&gt;
        putdcc $idx &amp;quot;[ctime [unixtime] ]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
 }&lt;br /&gt;
###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== End script ==&lt;/div&gt;</summary>
		<author><name>Jack3</name></author>
	</entry>
	<entry>
		<id>https://wiki.eggheads.org/index.php?title=User:Jack3&amp;diff=112</id>
		<title>User:Jack3</title>
		<link rel="alternate" type="text/html" href="https://wiki.eggheads.org/index.php?title=User:Jack3&amp;diff=112"/>
		<updated>2022-08-31T19:29:18Z</updated>

		<summary type="html">&lt;p&gt;Jack3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;← Super simple, first time ever, script&lt;br /&gt;
&lt;br /&gt;
 August 30, 2022&lt;br /&gt;
&lt;br /&gt;
 A very simple script.  This is good for a 'first script'.  Keep it simple - easier to get the hang of installing and using scripts. &lt;br /&gt;
 &lt;br /&gt;
 However, this script isn't a do-nothing script!   :)     It is actually useful.    I install it on every bot I create, first thing.&lt;br /&gt;
&lt;br /&gt;
 This script creates a partyline command :    .date &lt;br /&gt;
 It simply returns the current date and time, same as if you executed the      date      command on the linux command line in a shell.&lt;br /&gt;
 &lt;br /&gt;
 Usage:&lt;br /&gt;
 On the partyline, simply type:         .date&lt;br /&gt;
 Bot will return the date and time.&lt;br /&gt;
&lt;br /&gt;
 I find it very handy at times, when working in the partyline.    Especially when editing/debugging a script that &lt;br /&gt;
 contains    bind cron    .   I'll want to know when to expect it to trigger, and can quickly get that info.   &lt;br /&gt;
 &lt;br /&gt;
 Feel free to install and use this script.    If you do, I suggest you install it as-is, first.  No edits.   &lt;br /&gt;
 Reason:  Get it installed and working correctly, first.   THEN you can hack it up and do what you want with it.   :)   &lt;br /&gt;
 Suggestion:  Add to it.  Make yet another command, so that it responds to a public command in a channel,  and/or to a /msg to the bot.&lt;br /&gt;
 It's good practice!   :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References: ==&lt;br /&gt;
=== https://docs.eggheads.org/using/tcl-commands.html  ===&lt;br /&gt;
     text search tcl-commands.doc and find: &lt;br /&gt;
             bind dcc&lt;br /&gt;
             putdcc&lt;br /&gt;
             ctime&lt;br /&gt;
             unixtime&lt;br /&gt;
&lt;br /&gt;
=== Other helpful info: ===&lt;br /&gt;
    http://suninet.the-demon.de/&lt;br /&gt;
    http://suninet.the-demon.de/041.htm&lt;br /&gt;
    http://suninet.the-demon.de/042.htm&lt;br /&gt;
    http://suninet.the-demon.de/043.htm&lt;br /&gt;
    http://suninet.the-demon.de/044.htm&lt;br /&gt;
&lt;br /&gt;
    https://wiki.eggheads.org/index.php/Loading_Tcl_Scripts&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Start small - like this.  :)   Add to it.  That's a great way to learn!    But mostly - Have fun !     :)&lt;br /&gt;
&lt;br /&gt;
 I hope this helps.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Script starts here ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
bind dcc - &amp;quot;date&amp;quot; partyline_date_time&lt;br /&gt;
&lt;br /&gt;
###&lt;br /&gt;
proc partyline_date_time {handle idx text} {&lt;br /&gt;
&lt;br /&gt;
        putdcc $idx &amp;quot;[ctime [unixtime] ]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== End script ==&lt;/div&gt;</summary>
		<author><name>Jack3</name></author>
	</entry>
	<entry>
		<id>https://wiki.eggheads.org/index.php?title=User:Jack3&amp;diff=111</id>
		<title>User:Jack3</title>
		<link rel="alternate" type="text/html" href="https://wiki.eggheads.org/index.php?title=User:Jack3&amp;diff=111"/>
		<updated>2022-08-30T18:15:10Z</updated>

		<summary type="html">&lt;p&gt;Jack3: A super simple script for beginners.  ( But actually useful  :)  )&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# August 30, 2022&lt;br /&gt;
#&lt;br /&gt;
# A very simple script.  This is good for a 'first script'.   Keep it simple - easier to get the hang of installing and using scripts.  &lt;br /&gt;
#&lt;br /&gt;
# However, this script isn't a do-nothing script!   :)     It is actually useful.    I install it on every bot I create, first thing.&lt;br /&gt;
#&lt;br /&gt;
# This script creates a partyline command :    .date &lt;br /&gt;
# It simply returns the current date and time, same as if you executed the      date      command on the linux command line in a shell.&lt;br /&gt;
# &lt;br /&gt;
# Usage:&lt;br /&gt;
# On the partyline, simply type:         .date&lt;br /&gt;
# Bot will return the date and time.&lt;br /&gt;
#&lt;br /&gt;
# I find it very handy at times, when working in the partyline.    Especially when editing/debugging a script that &lt;br /&gt;
# contains    bind cron    .   I'll want to know when to expect it to trigger, and can quickly get that info.   &lt;br /&gt;
# &lt;br /&gt;
# Feel free to install and use this script.    If you do, I suggest you install it as-is, first.  No edits.   &lt;br /&gt;
# Reason:  Get it installed and working correctly, first.   THEN you can hack it up and do what you want with it.   :)   &lt;br /&gt;
# Suggestion:  Add to it.  Make yet another command, so that it responds to a public command in a channel,  and/or to a /msg to the bot.&lt;br /&gt;
# It's good practice!   :)&lt;br /&gt;
#&lt;br /&gt;
#&lt;br /&gt;
# References: &lt;br /&gt;
# https://docs.eggheads.org/using/tcl-commands.html&lt;br /&gt;
#     text search tcl-commands.doc and find:&lt;br /&gt;
#             bind dcc&lt;br /&gt;
#             putdcc&lt;br /&gt;
#             ctime&lt;br /&gt;
#             unixtime&lt;br /&gt;
#&lt;br /&gt;
# Other helpful info:&lt;br /&gt;
#    http://suninet.the-demon.de/&lt;br /&gt;
#    http://suninet.the-demon.de/041.htm&lt;br /&gt;
#    http://suninet.the-demon.de/042.htm&lt;br /&gt;
#    http://suninet.the-demon.de/043.htm&lt;br /&gt;
#    http://suninet.the-demon.de/044.htm&lt;br /&gt;
#&lt;br /&gt;
#&lt;br /&gt;
# Start small - like this.  :)   Add to it.  That's a great way to learn!    But mostly - Have fun !     :)&lt;br /&gt;
#&lt;br /&gt;
# I hope this helps.&lt;br /&gt;
#&lt;br /&gt;
#&lt;br /&gt;
#&lt;br /&gt;
#&lt;br /&gt;
##################################### Script starts here ###########################&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
bind dcc - &amp;quot;date&amp;quot; partyline_date_time&lt;br /&gt;
&lt;br /&gt;
###&lt;br /&gt;
proc partyline_date_time {handle idx text} {&lt;br /&gt;
&lt;br /&gt;
        putdcc $idx &amp;quot;[ctime [unixtime] ]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
 }&lt;br /&gt;
###&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
###############################     end         ####################################&lt;/div&gt;</summary>
		<author><name>Jack3</name></author>
	</entry>
</feed>