This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post . Click the X in the top right-corner of this box to dismiss this message.
Old posts that have not been replied to for several years.
jammer1
Voice
Posts: 39 Joined: Tue Feb 11, 2003 11:40 am
Post
by jammer1 » Fri Feb 14, 2003 11:46 am
invalid command name "date"
here the code causing the error;
set date [date]
any suggestions?
Papillon
Owner
Posts: 724 Joined: Fri Feb 15, 2002 8:00 pm
Location: *.no
Post
by Papillon » Fri Feb 14, 2003 11:50 am
'date' is not a regular tcl-command, it is a proc in one of your scripts, we need to see the date-proc to tell you what's wrong with it
Elen sila lúmenn' omentielvo
caesar
Mint Rubber
Posts: 3778 Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory
Post
by caesar » Fri Feb 14, 2003 12:24 pm
Change it with: set date [clock format [clock seconds] -format %D] to get a 'date' like: 14 Feb 2003. If you don't like it then see on
this page how change it to what suits you better.
Once the game is over, the king and the pawn go back in the same box.
jammer1
Voice
Posts: 39 Joined: Tue Feb 11, 2003 11:40 am
Post
by jammer1 » Fri Feb 14, 2003 2:40 pm
Thanks guys.