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.

Search found 4 matches

by noname
Sun Jun 04, 2006 3:37 pm
Forum: Scripting Help
Topic: Where can i Dowload egghttp.tcl
Replies: 15
Views: 18934

download http://mitglied.lycos.de/salatuhr/http.tcl
copy it to ur script folder

and add it in ur eggdrop.conf

Code: Select all

source scripts/http.tcl

p.s.
suse is definitely not ok.
by noname
Sun May 28, 2006 3:49 pm
Forum: Scripting Help
Topic: duraiton help [SOLVED]
Replies: 8
Views: 6882

Ofloo wrote:try clock scan
try sentence
by noname
Sun May 28, 2006 10:30 am
Forum: Scripting Help
Topic: duraiton help [SOLVED]
Replies: 8
Views: 6882

If you dont want duration to show more than 2 units, you could cut off the rest by using: lrange [duration $d] 0 3 this should cut '1 week 2 days 7 hours 30 minutes' to '1 week 2 days'. No need to write an own proc about it :D. i just wanted to have days - no years or weeks it should cut '1 week 2 ...
by noname
Sat May 27, 2006 4:48 pm
Forum: Scripting Help
Topic: duraiton help [SOLVED]
Replies: 8
Views: 6882

set prestamp_ago [duration [expr [unixtime] - $prestamp]]; # e.g. 4 years 37 weeks 2 days 18 hours 48 minutes 58 seconds set prestamp_day [clock format $prestamp -format "%m/%d"]; # e.g. 05/27 but duration isnt the best method imho... noone wants to calc 1y 33weeks too days... so i here i...