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

by juanamores
Sun Apr 12, 2015 1:29 pm
Forum: Scripting Help
Topic: Read private message ChanServ bot ?
Replies: 3
Views: 5211

Read private message ChanServ bot ?

This is another idea that occurred to me to know if a nick is registered in the network, when adding it to the staff. When trying to add unregistered nick, at a channel of a network, the CHaN bot send this private message: The channel access list should only contain registered nicknames. I need, my ...
by juanamores
Sun Apr 12, 2015 12:23 pm
Forum: Scripting Help
Topic: Again the Whois ..
Replies: 25
Views: 24920

Re: Again the Whois ..

I am not 100% sure that I understand what you are asking. This topic has been discussed in that other thread. What I want is to check if a nick is registered on the network, before adding that the staff of the bot. This process named add_fan belongs to staff.tcl I want to trigger another process wh...
by juanamores
Sat Apr 11, 2015 6:01 pm
Forum: Scripting Help
Topic: Again the Whois ..
Replies: 25
Views: 24920

Again the Whois ..

There will be some way to modify this code to extract the value of a variable to another process? Note that the other process (other TCL) should call at this. ############################################################################################## ## ## whois.tcl for eggdrop by Ford_Lawnmower ...
by juanamores
Sat Apr 11, 2015 5:23 pm
Forum: Scripting Help
Topic: Verification Option Are you sure Y/N?
Replies: 4
Views: 5586

Pefect! Thanks :)
by juanamores
Sat Apr 11, 2015 1:52 pm
Forum: Scripting Help
Topic: Verification Option Are you sure Y/N?
Replies: 4
Views: 5586

Thanks Spike^^ for your help. I find it too much work, perhaps for the upload files function is justified, but I just wanted to warn the user when deleting a list. In mSL can be done easily with a few lines of code :) The other thing I find difficult is the issue of flags for permits (bind), when ex...
by juanamores
Sat Apr 11, 2015 3:41 am
Forum: Scripting Help
Topic: Verification Option Are you sure Y/N?
Replies: 4
Views: 5586

Verification Option Are you sure Y/N?

Is it possible in TCL, generates an option to warn the user if it is sure to perform a task? If the user types 'Y', the task is performed. If the user types 'N', will not perform the task. While the user does not enter 'Y' or 'N',the process stops, waiting for an option. This we have achieved in mSL...
by juanamores
Sat Apr 11, 2015 2:42 am
Forum: Scripting Help
Topic: fix sintax commands utimer, after and vwait
Replies: 6
Views: 8394

[SOLVED]

Tell you that I have solved the problem. Very grateful to willyw and Spike ^^. The idea of willyw , I invested because if the set modes2 [getchanmode $chan] command is executed before the timer,was not the result that I wanted, to wait 5sec and refresh the list and then take its value. Regarding the...
by juanamores
Fri Apr 10, 2015 12:05 pm
Forum: Scripting Help
Topic: fix sintax commands utimer, after and vwait
Replies: 6
Views: 8394

juanamores: Please show your entire script here, so we can see the context for where these few lines are being called. After running 'newchanvite' command, BoT change channel modes, for the reasons explained in this post . Slowly going correcting code to delete the modes set by the bot. I only need...
by juanamores
Fri Apr 10, 2015 6:44 am
Forum: Scripting Help
Topic: fix sintax commands utimer, after and vwait
Replies: 6
Views: 8394

fix sintax commands utimer, after and vwait

What is the correct syntax for this line ? utimer 5 {set modes [getchanmode $chan];putmsg $chan "Current modes: $modes"} Error :can't read "chan": no such variable. What is the correct syntax for this code ? after 5000 { set modes [getchanmode $chan] } putmsg $chan "setting...
by juanamores
Thu Apr 09, 2015 6:41 pm
Forum: Scripting Help
Topic: Windrop problem with the command newchaninvite
Replies: 2
Views: 5331

[SOLVED]

On what IRC Network are you? Dose it support channel invites? I'm chathispano IRC network. The mode "+I" for channels is not a valid mode for that network. Anyway, the bot works well with the invite, invites all channels (although these channels do not have the "+I" mode.). The ...
by juanamores
Wed Apr 08, 2015 8:35 pm
Forum: Scripting Help
Topic: Windrop problem with the command newchaninvite
Replies: 2
Views: 5331

Windrop problem with the command newchaninvite

complete script here by Johannes13 last post bind pub o|o +autoinvite pub:addinvite proc pub:addinvite {n u h c a} { if {![isinvite $a $c]} { newchaninvite $c $a invite 0 sticky putnotc $n "$a has been added to the autoinvite database" } { putnotc $n "$a is already in the autoinvite ...
by juanamores
Mon Apr 06, 2015 6:18 pm
Forum: Scripting Help
Topic: Call and take values from another proc
Replies: 5
Views: 8038

What you'd really want to do, is have the !fieladd command send the "whois"-instruction, and then let gotraw handle the part of adding the user, etc. . Dear nml375 , first thank you for your quick reply and then tell me your idea seems very good. The issue is that I am newbie in TCL and I...
by juanamores
Sun Apr 05, 2015 11:02 pm
Forum: Scripting Help
Topic: Call and take values from another proc
Replies: 5
Views: 8038

Call and take values from another proc

Before you add a user to the staff, the bot should check the nick has to be added is registered in the network. I've got a process that performs verification through WHOIS to return zero (0) if the nick is not registered and one (1) if the nick is registered on the network. I would call this second ...
by juanamores
Sun Apr 05, 2015 9:44 pm
Forum: Scripting Help
Topic: measure the lag bot
Replies: 8
Views: 8575

Thanks to willyw for their ideas and Spike ^^ for clearing the concept of 'lag'. I am modifying a shoucast.tcl and it took him well into him I'm just adding some details that are not essential. This idea of ​​measuring the lag own bot, I saw another bot, which realizing you a status, returned by a c...
by juanamores
Sun Apr 05, 2015 9:38 am
Forum: Scripting Help
Topic: measure the lag bot
Replies: 8
Views: 8575

Re: measure the lag bot

I'm thinking that having the bot ping the user, then report the ping response time is what you are wanting. Please tell me, if this is incorrect. ..... If this is totally new to you, you need to say so now. Your first post included some code, so it appears that you do know some basic tcl already, t...