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
Sun Apr 04, 2004 9:31 am
Forum: Archive
Topic: banlist
Replies: 5
Views: 1561

Code: Select all

proc remove:bans {} {
  foreach bans [chanbans #channel] {
    pushmode "#channel" "-b" "[lindex $bans 0]"
  }
  timer 20 remove:bans
}

if {![regexp remove:bans [timers]]} {
  timer 20 remove:bans
}
:P
by Xpert
Sun Apr 04, 2004 4:52 am
Forum: Archive
Topic: Sending message, quite difficult :/
Replies: 1
Views: 1016

When MAINNICK join to any channel, the eggdrop will send him private message (ARG1 ARG2)?
Ok.

Code: Select all

bind join - * join:mainnick
proc join:mainnick {nick host hand chan} {
  if {[string equal -nocase "MAINNICK" "$nick"]} {
    putserv "privmsg $nick :ARG1 ARG2"
  }
}
by Xpert
Sun Apr 04, 2004 4:47 am
Forum: Archive
Topic: login/logout script
Replies: 8
Views: 1967

Try this: bind pub - .logout proc_logout proc proc_logout {nick uhost handle channel arg} { set file ops if {![file exists $file]} {close [open $file w]} set in [open $file "r"] set out [open ${file}.tmp "w+"] while {![eof $in]} { set line [gets $in] if {![string equal -nocase &...
by Xpert
Wed Mar 31, 2004 4:19 am
Forum: Archive
Topic: How can 'string match' a *?
Replies: 3
Views: 1492

It works, thanks :P
by Xpert
Wed Mar 31, 2004 3:55 am
Forum: Archive
Topic: How can 'string match' a *?
Replies: 3
Views: 1492

How can 'string match' a *?

How can i string match a *?
(ex: string match a '+' = [string match "*+*" "*$text*"])
by Xpert
Tue Mar 30, 2004 3:45 pm
Forum: Archive
Topic: error in join script
Replies: 10
Views: 2772

What exactly did you write in the '.tcl' command?
by Xpert
Tue Mar 30, 2004 1:13 pm
Forum: Archive
Topic: error in join script
Replies: 10
Views: 2772

try to change the name of the proc, i think this is the problem :)
by Xpert
Tue Mar 30, 2004 9:25 am
Forum: Archive
Topic: .tcl command on a public command
Replies: 7
Views: 2148

Thanks for all of you :P
]Kami[ wrote:i'm searching it too :P
There's the link
Thanks again :)
by Xpert
Tue Mar 30, 2004 8:22 am
Forum: Archive
Topic: n00b needs help with msys mingw and tcl
Replies: 7
Views: 1941

Have you read the Setup page ? :)
by Xpert
Tue Mar 30, 2004 8:11 am
Forum: Archive
Topic: .tcl command on a public command
Replies: 7
Views: 2148

Ok, thanks :)
by Xpert
Tue Mar 30, 2004 7:52 am
Forum: Archive
Topic: .tcl command on a public command
Replies: 7
Views: 2148

Thanks for the replay.
Do you know where can i find this script?
:P
by Xpert
Tue Mar 30, 2004 6:00 am
Forum: Archive
Topic: How to remove certain characters in a string
Replies: 4
Views: 1684

Your welcome :P
by Xpert
Tue Mar 30, 2004 5:59 am
Forum: Archive
Topic: .tcl command on a public command
Replies: 7
Views: 2148

.tcl command on a public command

How can i do a '.tcl' command in a public command on a channel (like the .tcl in the partyline)? :)
by Xpert
Tue Mar 30, 2004 4:48 am
Forum: Archive
Topic: How to remove certain characters in a string
Replies: 4
Views: 1684

You can use 'split':

Code: Select all

set host "[split ~xxmcx@egghelp.org @]"
set userident "[lindex $host 0]"
set userhost "[lindex $host 1]"
:P
by Xpert
Mon Mar 29, 2004 6:06 am
Forum: Archive
Topic: one command all x sek.
Replies: 6
Views: 1939

Yeah, forgot one '=' :mrgreen: