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

by simo
Mon May 08, 2023 5:51 am
Forum: Scripting Help
Topic: GoogleNews
Replies: 47
Views: 28523

myselve i would focus on:

package require tdom

on debian its :

tcl-tls tcllib

nott sure what OS you use
by simo
Mon May 08, 2023 3:14 am
Forum: Scripting Help
Topic: GoogleNews
Replies: 47
Views: 28523

Did u make sure you have all the packages install that it needs?
by simo
Sun May 07, 2023 1:50 pm
Forum: Script Requests
Topic: [SOLVED] Force join channel
Replies: 12
Views: 9059

i guess your right CrazyCat altho ive tested the command with colors in front of it and it recognized it fine and i didnt load a color stripper script as i made sure thats unloaded first unless im mistaken but so far it seems bind pub can be used with color codes as well
by simo
Sun May 07, 2023 1:35 pm
Forum: Script Requests
Topic: remove last ban or a range of last set bans
Replies: 7
Views: 5124

on suggestion of Spike^^ i came up with this : bind pub -|- "!rlb" unban:lastbans proc unban:lastbans {nick uhost hand chan text} { if {![isop $nick $chan] && ![ishalfop $nick $chan] && ![matchattr $hand o|o $chan]} { return 0 } set n [join [lindex $text 0]] if {![string is...
by simo
Sun May 07, 2023 1:19 pm
Forum: Script Requests
Topic: remove last ban or a range of last set bans
Replies: 7
Views: 5124

the single
!rlb
still doesnt seem to trigger at all tho

from what i understood of the code is it expect a range everytime iic
by simo
Sun May 07, 2023 1:07 pm
Forum: Script Requests
Topic: remove last ban or a range of last set bans
Replies: 7
Views: 5124

on suggestion of Spike^^ i came up with this wich seems to work but not sure if its proper wiritten : bind pub -|- "!rlb" unban:lastbans proc unban:lastbans {nick uhost hand chan text} { if {![isop $nick $chan] && ![ishalfop $nick $chan] && ![matchattr $hand o|o $chan]} { r...
by simo
Sun May 07, 2023 12:24 pm
Forum: Script Requests
Topic: remove last ban or a range of last set bans
Replies: 7
Views: 5124

tried your suggestion as well Spike^^ like this : bind pub -|- "!rlb" unban:lastbans proc unban:lastbans {nick uhost hand chan text} { global botnick if {![isop $nick $chan] && ![ishalfop $nick $chan] && ![matchattr $hand o|o $chan]} { return 0 } set n [join [lindex $text 0...
by simo
Sun May 07, 2023 12:14 pm
Forum: Script Requests
Topic: remove last ban or a range of last set bans
Replies: 7
Views: 5124

thanks for the reply CrazyCat i tested it and found it sometimes when for example using like:

!rlb 2
it removes 3 instead of 2
by simo
Sun May 07, 2023 11:17 am
Forum: Script Requests
Topic: remove last ban or a range of last set bans
Replies: 7
Views: 5124

remove last ban or a range of last set bans

greetingz folks, we have been using this code for a while now and it works fine removing the last set single ban im wondering how this could be edited to remove either last few set bans or just the single last one that was set : bind pub -|- "!rlb" unban:lastbans proc unban:lastbans {nick ...
by simo
Sun May 07, 2023 8:51 am
Forum: Script Requests
Topic: [SOLVED] Force join channel
Replies: 12
Views: 9059

oh i thought in the case of the command used in colors to strip the colors to recognize the command i wasnt sure if the bind pub already did that
by simo
Sat May 06, 2023 4:40 pm
Forum: Script Requests
Topic: [SOLVED] Force join channel
Replies: 12
Views: 9059

i added a check if nick is already on the support channel or not for this to work the eggdrop has to be on the support channel as well to check if the nick who requested help is already sajoined there bind pub -|- !help Pub:Sajoin:SupportChan proc Pub:Sajoin:SupportChan {nick host hand chan text} { ...
by simo
Sat May 06, 2023 6:44 am
Forum: Scripting Help
Topic: GoogleNews
Replies: 47
Views: 28523

Re: error

wixchat wrote:help, i got error

Code: Select all

wrong # args: should be "tls::socket ?options? host port"
Tcl error [Google:News]: error "syntax error" at line 1 character 0
"0 <--Error-- "
pastebin the code you are using
by simo
Tue Apr 25, 2023 6:05 am
Forum: Script Requests
Topic: Chanops Nick Abuse
Replies: 31
Views: 11621

thanks caesar
by simo
Tue Apr 25, 2023 5:39 am
Forum: Scripting Help
Topic: Need help with IPinfo Script
Replies: 23
Views: 24639

package require http package require json bind pub m|- !ginfo Pub:Geo:INFO proc Pub:Geo:INFO {nick uhost hand chan text} { if {[scan $text {%s} lookup] != 1} { puthelp "NOTICE $nick :Error, syntax is: !Ginfo <ip>" return } if {![regexp {([0-9]+\.)([0-9]+\.)([0-9]+\.)([0-9]+)} $lookup]} { ...
by simo
Sun Apr 23, 2023 9:49 am
Forum: Script Requests
Topic: Chanops Nick Abuse
Replies: 31
Views: 11621

seems to work as expected thanks CrazyCat