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

by HecKel
Sat Jul 02, 2005 10:51 am
Forum: Archive
Topic: How to protect users from another egg userslist
Replies: 1
Views: 1248

How to protect users from another egg userslist

I have 2 bots linked, and i want the "second" egg protect the users of the "first" bot without create new user on the "second" bot, how can i do this?

thanks, HecKel
by HecKel
Mon Jun 13, 2005 6:43 pm
Forum: Archive
Topic: channel info show's only once
Replies: 8
Views: 3495

yes, that's my ideia :D can u help me?

tnks, HecKel
by HecKel
Sun Jun 12, 2005 3:08 pm
Forum: Archive
Topic: channel info show's only once
Replies: 8
Views: 3495

this is how i put the chan info, now i want to remove when the egg shows the user this info

Code: Select all

bind pub o .notice pub:notice
proc pub:notice {n u h c a} {
        foreach hand [userlist *] {
                setchaninfo $hand $c $a
        }
        putserv "NOTICE $n :Mensage sent: $a"
}
by HecKel
Sun Jun 12, 2005 2:29 pm
Forum: Archive
Topic: channel info show's only once
Replies: 8
Views: 3495

My users have global Info to display they onjoin message, but i want use the channel info to show channel information when is necessary, but show this information once, then the channel info is removed and the global info stays, it's like channel topic, but in this way this highlight the user :)
by HecKel
Sat Jun 11, 2005 7:53 pm
Forum: Archive
Topic: channel info show's only once
Replies: 8
Views: 3495

channel info show's only once

hello there

I put my channel with +greet, and I want the egg shows the channel info when the user join's this channel and then remove it from the user, but don't remove the global info from the him, how can I do that?

thanks, HecKel
by HecKel
Sat Mar 05, 2005 10:37 pm
Forum: Archive
Topic: Script to log a channel between comands
Replies: 1
Views: 3110

Script to log a channel between comands

I want to star a logfile when I enter

Code: Select all

!starlog <nick>
and stop the loggin when I enter

Code: Select all

!stoplog
The filename must be like this:

Code: Select all

<chan>.<nick>.<dd><mm><yyyy>.log
tnks HecKel
by HecKel
Tue Mar 01, 2005 7:05 am
Forum: Archive
Topic: View if string is on file
Replies: 1
Views: 1559

View if string is on file

I have a file with user that joins my channel, but this users aren't on bot's db, when I type this comand:

!info lamer

the eggs return a message, but if I type this:

!info [lamer]

the eggs doesn't return anything, who can I resolve this?

tnks HecKel
by HecKel
Sun Feb 20, 2005 3:34 pm
Forum: Archive
Topic: Timed voice dont work...., the egg voices all user onjoin!
Replies: 6
Views: 3846

yes, i read that, but i want that if an user isn't on eggs db he voice too

tnks HecKel
by HecKel
Sun Feb 20, 2005 12:05 pm
Forum: Archive
Topic: Security, don't deop unkown user...
Replies: 2
Views: 1458

Security, don't deop unkown user...

the egg return this error..., there is my code, I don't find the error [16:02] Tcl error [verify_security]: invalid command name "validuser*" bind mode - * verify_security proc verify_security {nick uhost hand chan mc {victim ""}} { if {$chan == "#fct-caloiros"} { if {!...
by HecKel
Sun Feb 20, 2005 11:40 am
Forum: Archive
Topic: Timed voice dont work...., the egg voices all user onjoin!
Replies: 6
Views: 3846

Timed voice dont work...., the egg voices all user onjoin!

I want the egg voices an user without op after 2 minutes, then I create that..., bug now the eggs voices all users aswell oped users..., and don't wait the 2 minutes..., what is wrong? bind join - * join:autovoice proc join:autovoice {nick host hand chan} { if {$chan == "#lamers"} { utimer...
by HecKel
Sun Feb 13, 2005 12:32 pm
Forum: Archive
Topic: Warn +f users when they flood
Replies: 7
Views: 2966

If I place anythis like this:

Code: Select all

bind flud F * flood_control
(...)
and an user doesn't had that flag, the egg kicks/ban as usualy?

tnks HecKel
by HecKel
Sun Feb 13, 2005 11:51 am
Forum: Archive
Topic: add newhost when nick change
Replies: 1
Views: 2048

add newhost when nick change

I have this code, but that doesn't work :S where is the error? If you had a better idea that's wellcome ;) bind nick - * check_user_nick proc check_user_nick {nick uhost hand chan newnick} { if {[validuser $hand]} { utimer 120 [ask_user $hand $newnick] } } proc ask_user {hand newnick} { set nick [ha...
by HecKel
Sat Feb 12, 2005 9:23 pm
Forum: Archive
Topic: Warn +f users when they flood
Replies: 7
Views: 2966

Warn +f users when they flood

I want to make a tcl that warn +f users whem they flood(chan, kick, join, nick, etc) and say the type of flood, like this:

Lammer, don't flood here (flood type: join flood)

tnks HecKel
by HecKel
Sun Feb 06, 2005 12:55 pm
Forum: Archive
Topic: remove and get all channels from user
Replies: 1
Views: 1370

remove and get all channels from user

I want to get all channels from an user and remove them , but don't delete the user, only remove channels from this particular user and print the deleted channels.

tnks HecKel
by HecKel
Sat Feb 05, 2005 11:21 am
Forum: Archive
Topic: Problem on switch of strings
Replies: 6
Views: 2429

this is the full code, the same error, the same results.... proc add_new {n u h c args} { set found 0 set args [split [lindex $args 0]] set cmd [lindex $args 0] set user [lindex $args 1] set c [string tolower $c] set chans [string tolower $::chans] if {[lsearch -exact $chans $c] != -1} { makelog $n ...