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 86 matches

by Xpert
Mon Mar 29, 2004 3:10 am
Forum: Archive
Topic: one command all x sek.
Replies: 6
Views: 1957

Change the:

Code: Select all

if {pro = "on"} { return 0 }
to:

Code: Select all

if {$pro = "on"} { return 0 }
:P
by Xpert
Sat Mar 27, 2004 2:30 pm
Forum: Archive
Topic: Script for changing the topic
Replies: 3
Views: 1266

Use in the first line in your proc:

Code: Select all

global <variables>
Example:

Code: Select all

global avail wartype
:P
by Xpert
Sat Mar 27, 2004 8:00 am
Forum: Archive
Topic: Script for changing the topic
Replies: 3
Views: 1266

Ok, try this code: bind pub - !avail pub:avail proc pub:avail {nick host hand chan text} { global avail set myname "[lindex $text 1]" if {($myname != "") && ([string match -nocase "#666.to" "$chan"])} { if {$avail == ""} { set avail "$my...
by Xpert
Sat Mar 27, 2004 4:17 am
Forum: Archive
Topic: What shall i do..
Replies: 1
Views: 1006

Check this :)
by Xpert
Fri Mar 26, 2004 9:59 am
Forum: Archive
Topic: Tcl error [chan_checkon]: extra characters after close-quote
Replies: 10
Views: 3025

lol, when i blame the computer, it returns to me (the flood above....) :-?
by Xpert
Fri Mar 26, 2004 6:01 am
Forum: Archive
Topic: Tcl error [chan_checkon]: extra characters after close-quote
Replies: 10
Views: 3025

Yes and no.... :P
by Xpert
Thu Mar 25, 2004 12:38 pm
Forum: Archive
Topic: time sugestion
Replies: 6
Views: 1800

I thins you should replace the line:

Code: Select all

utimer 15 "60SecondDisplay $chan"
to:

Code: Select all

utimer 1 "60SecondDisplay $chan" 
It will do the command after 1 second and not 60 seconds.
by Xpert
Thu Mar 25, 2004 12:34 pm
Forum: Archive
Topic: Tcl error [chan_checkon]: extra characters after close-quote
Replies: 10
Views: 3025

Woops.... sorry, my computer :-?
by Xpert
Thu Mar 25, 2004 12:33 pm
Forum: Archive
Topic: !word does not start the game
Replies: 4
Views: 1494

Re: !word does not start the game

Tommymailno wrote:but the !word command typed into the channel by users doesn't start the word game.
There is no command that starts the game in the code you have post :-?
by Xpert
Wed Mar 24, 2004 3:24 pm
Forum: Archive
Topic: Tcl error [chan_checkon]: extra characters after close-quote
Replies: 10
Views: 3025

proc chan_checkon {min hour day month year} { foreach chan [channels] { if {![botonchan $chan]} { if{[string match -nocase "#mytestchan" "$chan"]} { puthelp "PRIVMSG #mytestchan :Not listening on $chan - but not rejoining" } else { puthelp "PRIVMSG #mytestchan :No...
by Xpert
Wed Mar 24, 2004 3:21 pm
Forum: Archive
Topic: time sugestion
Replies: 6
Views: 1800

Change the:
utimer
on your code :)
by Xpert
Wed Mar 24, 2004 12:11 pm
Forum: Archive
Topic: Tcl error [chan_checkon]: extra characters after close-quote
Replies: 10
Views: 3025

Try this code: proc chan_checkon {min hour day month year} { foreach chan [channels] { if {[botonchan $chan] == 0} { if{[string match -nocase "#mytestchan" "$chan"]} { puthelp "PRIVMSG #mytestchan :Not listening on $chan - but not rejoining" } else { puthelp "PRIVM...
by Xpert
Tue Mar 23, 2004 8:11 am
Forum: Archive
Topic: utimer not functioning correctly?
Replies: 2
Views: 1100

You didn't set the variable "$mytimer". Try this code: set mytimer "foo" bind pub - @found found proc found {nick host hand chan arg} { global mytimer foreach utimer [utimers] { if {[string match "$mytimer" "[lindex $utimer 2]"]} { killutimer $mytimer } } } It...
by Xpert
Sun Mar 21, 2004 2:52 pm
Forum: Archive
Topic: sentinel.tcl (dalnet version)
Replies: 4
Views: 1327

So, maybe it's a problem with your code....
by Xpert
Sun Mar 21, 2004 1:43 pm
Forum: Archive
Topic: sentinel.tcl (dalnet version)
Replies: 4
Views: 1327

Have you "+o" them?

Code: Select all

.chattr NICK +o
:)