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

by Arnold_X-P
Sun Jul 16, 2023 8:28 pm
Forum: Script Support & Releases
Topic: Wiki Script Slow To Output To Channel
Replies: 3
Views: 4227

try this # Requires Tcl 8.5+ and tcllib # To enable you must .chanset #channel +wiki package require http package require htmlparse package require tls http::register https 443 [list tls::socket -tls1 1] namespace eval wiki { variable max_lines 1 variable max_chars 400 variable url "https://en....
by Arnold_X-P
Sun Jul 16, 2023 6:22 pm
Forum: Script Requests
Topic: anti repeatitive characters freezing bot
Replies: 2
Views: 3522

Re: anti repeatitive characters freezing bot

I added something else that was missing.------------- bind pubm - * XantiX:repeatchars:text bind ctcp - ACTION repeatcharsctcp proc repeatcharsctcp {nick uhost hand chan keyword arg} { XantiX:repeatchars:text $nick $uhost $hand $chan $arg } proc XantiX:repeatchars:text {nick uhost hand chan text} { ...
by Arnold_X-P
Sun Jul 16, 2023 6:13 pm
Forum: Script Requests
Topic: anti repeatitive characters freezing bot
Replies: 2
Views: 3522

Re: anti repeatitive characters freezing bot

try this, tweak a few things but it works bind pubm - * XantiX:repeatchars:text bind ctcp - ACTION repeatcharsctcp proc repeatcharsctcp {nick uhost hand chan keyword arg} { XantiX:repeatchars:text $nick $uhost $hand $chan $arg } proc XantiX:repeatchars:text {nick uhost hand chan text} { if {[isbotni...
by Arnold_X-P
Mon May 01, 2023 5:05 pm
Forum: Script Requests
Topic: ip finder
Replies: 3
Views: 3015

thanks crazycat
something is wrong

Code: Select all

[16:35] <@Arnold_X-P> .ip 200.87.208.0
[16:35] <@reebot> Invalid address or IP not found
by Arnold_X-P
Sun Apr 30, 2023 10:44 pm
Forum: Script Requests
Topic: ip finder
Replies: 3
Views: 3015

ip finder

Please I need help in the repair of this tcl does not generate the requested information bind pub - .ip msg_ipwhois proc msg_ipwhois {nick uhost hand chan text} { global botnick if {$text == "" } {putquick "PRIVMSG $chan :You have to use true command for look up whois information. Com...
by Arnold_X-P
Sun Jul 03, 2022 10:19 pm
Forum: Scripting Help
Topic: Lines Flood first time set muteban second time full ban
Replies: 7
Views: 3137

Since you are working with scripts, you may be able to do that. Here is an example (not tested), try to understand it. # lines flood set textftrigger 3:4 set repeatwarnmsg1 "stop please" set repeatwarnmsg2 "Final warning.." set warned {} bind ctcp - "ACTION" actionf pr...
by Arnold_X-P
Wed Mar 30, 2022 5:35 pm
Forum: Script Support & Releases
Topic: Weather Script + extras
Replies: 6
Views: 8958

Re: Weather Script + extras

can be configured for the spanish version?
by Arnold_X-P
Wed Jan 12, 2022 10:05 pm
Forum: Script Requests
Topic: Dictionary
Replies: 11
Views: 4275

use in channel .dict word
by Arnold_X-P
Sun Dec 12, 2021 5:00 pm
Forum: Script Requests
Topic: get info of user on connect with bind raw notice
Replies: 17
Views: 13216

try testing your code bind raw - NOTICE serv:connectnick proc serv:connectnick {from key text} { if {[string match *!*@* $from]} { return } if {![regexp -nocase { CONNECT: Client connecting on port (\d+) \(class (\S+)\): ([^!]+)!([^@]+)@(\S+) \(([0-9a-f.:]+)\) \[(.*)\]} $text -> port class nick iden...
by Arnold_X-P
Sun Dec 12, 2021 12:09 am
Forum: Scripting Help
Topic: Auto announcement every 10 min after nick gets halfop
Replies: 31
Views: 8873

hi simo

remove:
catch { unset ::ish($nick) }

and look for this :
killutimer $::ish($nick)

change it to:
unset -nocomplain -- ::is($nick)
by Arnold_X-P
Sat Dec 11, 2021 10:46 pm
Forum: Script Requests
Topic: get info of user on connect with bind raw notice
Replies: 17
Views: 13216

apparently the code only works in unrealircd but does not work in inspircd it is possible to use regex to work in both unreal and inspircd versions bind raw - NOTICE serv:connectnick proc serv:connectnick {from key text} { if {[string match *!*@* $from] || ![string match -nocase "*Client connec...
by Arnold_X-P
Thu Dec 02, 2021 5:01 pm
Forum: Script Requests
Topic: [SOLVED] Date | time | Unix time
Replies: 19
Views: 14699

thanks heartbroken, thank you again
by Arnold_X-P
Wed Dec 01, 2021 6:26 pm
Forum: Scripting Help
Topic: error in init-server
Replies: 3
Views: 2386

Thanks crazycat & Spike^^
by Arnold_X-P
Tue Nov 30, 2021 1:49 am
Forum: Scripting Help
Topic: error in init-server
Replies: 3
Views: 2386

error in init-server

the code works fine only that it generates this error Line 1: NOTICE: Found constant " init-server " which is also a variable. bind evnt - init-server evnt:init_server proc evnt:init_server {type} { global botnick putquick "NICKSERV IDENTIFY $::nick your-password" -next putquick ...
by Arnold_X-P
Wed Nov 17, 2021 4:07 pm
Forum: Script Requests
Topic: Weather Script Request
Replies: 6
Views: 4331