Search found 317 matches

by juanamores
Thu Feb 23, 2017 6:39 pm
Forum: Eggdrop Help
Topic: What mean Message in Defero Telnet Client
Replies: 4
Views: 8189

Re: What mean Message in Defero Telnet Client

I would recommend using the IP set for my-ip in eggdrop.conf (if your my-hostname really is no-reverse-dns-configured.com, then it would be 89.248.168.219) and make sure your listen port is between 52000-62000 This was already done. Do you have the -telnet!*@* host added to your host list? I did no...
by juanamores
Thu Feb 23, 2017 12:25 am
Forum: Eggdrop Help
Topic: What mean Message in Defero Telnet Client
Replies: 4
Views: 8189

What mean Message in Defero Telnet Client

What does this message mean in the party of Defero Telnet Client?
[05:23:38] Telnet connection: no-reverse-dns-configured.com/37067
[05:23:38] Timeout/EOF ident connection
[05:23:38] Refused telnet@no-reverse-dns-configured.com (non-bot)
by juanamores
Tue Feb 21, 2017 7:07 pm
Forum: Scripting Help
Topic: Ignore Event Command exist?
Replies: 2
Views: 4857

Ignore Event Command exist?

Is there an event that detects when the bot adds or deletes an ignore?
Event command, not party line.
by juanamores
Sun Feb 05, 2017 4:39 am
Forum: Script Requests
Topic: Counter kicks, bans of a moderator
Replies: 3
Views: 5656

You have to try to program and request help in parts of the code that you can not continue.
Tailor-made third-party programs do not think you find it easily.
by juanamores
Fri Jan 27, 2017 8:15 pm
Forum: Scripting Help
Topic: Replace element in list with white space
Replies: 3
Views: 5723

There was another line in the script that modified the command. :oops:
Both solutions work perfectly

Thank you willyw! :D
by juanamores
Tue Jan 24, 2017 4:20 pm
Forum: Scripting Help
Topic: Replace element in list with white space
Replies: 3
Views: 5723

Replace element in list with white space

The list is stored in the cursong variable
Example: if the cursong variable returns: Another&Brick&In&The&Wall&Pink&Floyd
To return: Another Brick In The Wall Pink Floyd
I try:

Code: Select all

set cursong [string map [list "&" " "] $cursong]
But, no work
by juanamores
Wed Jan 18, 2017 4:39 am
Forum: Eggdrop Help
Topic: Exact time in scripts and party line
Replies: 2
Views: 6905

caesar wrote:Try with updating your system time?
Thank so much, caesar
The solution was the one you recommended. :)
by juanamores
Mon Jan 09, 2017 5:52 am
Forum: Eggdrop Help
Topic: Exact time in scripts and party line
Replies: 2
Views: 6905

Exact time in scripts and party line

The bots have a small difference of 6 minutes in the time they show in scripts and party line. Currently I have it set for Spain, this way set timezone "CEST" set offset "-1" set env(TZ) "$timezone$offset" As I say, it's just an anecdotal detail, the difference is minim...
by juanamores
Tue Nov 08, 2016 7:11 pm
Forum: Scripting Help
Topic: Variable does not take value
Replies: 4
Views: 6190

When programmed it looks I was asleep. :oops:
I declared the variables backwards. :D :D :D :D
Thanks caesar and willyw by being more awake than me. :P
by juanamores
Tue Nov 08, 2016 6:50 am
Forum: Scripting Help
Topic: Variable does not take value
Replies: 4
Views: 6190

Variable does not take value

This script controls changes nicks. bind nick - * nickchange set debug_channel "#debugs_tcl" set Djs_channel #Djs_channel" proc nickchange { oldnick uhost hand chan newnick } { global debug_channel Djs_channel if {[string tolower $chan] != [string tolower $Djs_channel]} {return 0} #DJ...
by juanamores
Sat Oct 29, 2016 8:16 pm
Forum: Scripting Help
Topic: string match ONLY LETTER (no number)
Replies: 10
Views: 12627

Ok, thank you. :D
by juanamores
Fri Oct 28, 2016 3:13 pm
Forum: Scripting Help
Topic: string match ONLY LETTER (no number)
Replies: 10
Views: 12627

Ok. I did not understand how the data nicks (% s) is taken. It would be like this?: bind msgm - * acces:list proc acces:list {nick CHaN!-@- hand text} { if {[string match -nocase "*Access denied*" $text]} { return } else { if {[scan $text {%d%d%s} num niv user] != 3} return set fs [open &q...
by juanamores
Thu Oct 27, 2016 2:02 pm
Forum: Scripting Help
Topic: string match ONLY LETTER (no number)
Replies: 10
Views: 12627

You don't want to filter numbers, you want to select the 3rd element in that list (especially since nicknames may contain numbers and other characters). set nick [lindex [split $text] 2] Actually, I had made that way, and then when you invite removes the words that are not nick (with command contin...
by juanamores
Wed Oct 26, 2016 2:57 pm
Forum: Scripting Help
Topic: string match ONLY LETTER (no number)
Replies: 10
Views: 12627

As for what juanamores is looking for needs a different approach that depends on how he receives the result. Is that a notice? If you have a mIRC client type in status /debug @raw then do that /msg chan #mychannel access list command and copy/paste here the result you see in the @raw window. <- :CH...
by juanamores
Mon Oct 24, 2016 9:34 pm
Forum: Scripting Help
Topic: string match ONLY LETTER (no number)
Replies: 10
Views: 12627

string match ONLY LETTER (no number)

I want to make a comparison that ignores the numbers and compare the text only in letters. When I look at the access list for a channel, the bot ChanServ (Bot officer of IRCu network) displays a list with 3 items: a) ordinal number b) access level c) nick Thus: Command: /msg chan #mychannel access l...