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

by caesar
Mon Apr 26, 2021 10:48 am
Forum: Script Requests
Topic: privmsg nickname on a timer
Replies: 14
Views: 6623

If anyone is willing to test a cron job like 20 */1 * * * (meaning at 20 minutes past the hour) let me know if works.

Code: Select all

bind cron - {20 */1 * * *} send:message

proc send:message {min hour day month week} {
	puthelp "PRIVMSG user :This is the once every 80 minutes message"
}
by caesar
Wed Apr 07, 2021 3:15 am
Forum: Script Support & Releases
Topic: CT-Weather
Replies: 42
Views: 37018

I signed up for a free plan but I keep getting the 401 error, even if the key is correct. Anyway, could you copy/paste the JSON result (it's $data2 variable) of any query to have a look at something?
by caesar
Mon Mar 29, 2021 6:25 am
Forum: Script Requests
Topic: Public commands and channel management
Replies: 8
Views: 3974

Since binds expect a certain amount of arguments it will just crash. On top of that "my code" isn't quite what he really needs, not to mention that code has room for improvements. Speaking about code, yours has some logic faults and won't get the expected results. For example: proc op:proc...
by caesar
Thu Mar 25, 2021 2:29 am
Forum: Script Requests
Topic: How to get version
Replies: 10
Views: 4137

1. string match expects two arg uments (two strings), while in: if {![string match -nocase "$nicks"]} { and: if {![string match -nocase "*[string tolower $version]*"]} { you are missing one of them. You should ditch looping over a list and use lsearch (that means list search ) d...
by caesar
Tue Mar 23, 2021 3:01 pm
Forum: Script Support & Releases
Topic: [Solved] m00nie eggdrop URL title grabbing script
Replies: 16
Views: 12368

&#225 ; (without the space after the 5 cos forum interprets it) is the Latin small letter a with acute (meaning á) in ASCII table.
by caesar
Tue Mar 23, 2021 2:58 pm
Forum: Script Requests
Topic: solicitud de guiones
Replies: 42
Views: 17868

Ah, right, i forgot the

Code: Select all

if {[isbotnick $target]} {
part. Well, glad you sorted out.
by caesar
Tue Mar 23, 2021 1:44 am
Forum: Script Requests
Topic: solicitud de guiones
Replies: 42
Views: 17868

@simo by any chance you had n flag? that's the only option that makes sense not to trigger anything. @ComputerTech since I put the switch there we don't need to bind everything separately. Also, use isbotnick when you want to check if any given nick is bot, I mean instead of [$target == $botnick] or...
by caesar
Mon Mar 22, 2021 7:09 am
Forum: Script Support & Releases
Topic: [Solved] m00nie eggdrop URL title grabbing script
Replies: 16
Views: 12368

Could you try a string map instead of regsub? proc makepretty {title} { return [string map [list "'" "'" "&" "\&" """ "\"" "<" "<" ">" ">" "\n" ""] $title] }
by caesar
Mon Mar 22, 2021 4:04 am
Forum: Script Requests
Topic: solicitud de guiones
Replies: 42
Views: 17868

Haven't tested this but should be a compact version of what you wanted: bind MODE - * protect:modes proc protect:modes {nick uhost hand chan mode target} { global botnick if {[isbotnick $nick]} return if {[matchattr $hand n]} return switch -- $mode { "-o" { puthelp "PRIVMSG Chan dop $...
by caesar
Sun Mar 21, 2021 6:52 am
Forum: Script Requests
Topic: solicitud de guiones
Replies: 42
Views: 17868

If bot looses @ how can it send those commands? Using some special services like ChanServ or something like it?
by caesar
Sun Mar 21, 2021 2:59 am
Forum: Script Requests
Topic: solicitud de guiones
Replies: 42
Views: 17868

Code: Select all

bot set mode [-o pepe] message "what you are doing is not helping the smooth running of the channel".
and for the bot to keep its @
how dose the bot regain his @ status to then remove the @ from pepe?
by caesar
Fri Mar 19, 2021 8:58 am
Forum: Script Requests
Topic: solicitud de guiones
Replies: 42
Views: 17868

I'm not familiar with that network. If your bot looses @ how would it get it back?

How would the bot send you a memo? Dose the network have a service like MemoServ or something like this?
by caesar
Wed Mar 17, 2021 12:49 pm
Forum: Script Requests
Topic: solicitud de guiones
Replies: 42
Views: 17868

What channel services dose your network have? I mean Chanserv, X like on Undernet? Is it an irc operator?
by caesar
Wed Mar 17, 2021 4:43 am
Forum: Script Requests
Topic: solicitud de guiones
Replies: 42
Views: 17868

Danos un ejemplo de lo que debería suceder porque al traducir perdemos el significado de lo que quieres lograr.

soy@ set mode [-o bot ] - acción "enviar mensaje" ?
soy@ set mode [+o bot ] - acción "enviar mensaje" ?
soy@ set mode [+o user ] - bot@ set mode [-o user ] ?
by caesar
Tue Mar 16, 2021 2:45 am
Forum: Script Requests
Topic: Very Simplistic Flood Kick Script
Replies: 10
Views: 6321

Why bother re-inventing the wheel when you got bind flud to trigger for whatever you wanted? Instead of: set lines [lindex [split $text_tolerance :] 0] set seconds [lindex [split $text_tolerance :] 1] I would go with: scan [split $text_tolerance :] {%d%d} lines seconds There are a couple of other th...