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

by SpiKe^^
Mon Jan 09, 2023 7:27 pm
Forum: Script Requests
Topic: check if nick is still on channel before kicking
Replies: 10
Views: 2472

enforceBans

maybe... namespace eval enforceBans { variable enforce ; variable kickList set enforce(max) "4" set enforce(reason_single) "Please respect the network rules, thank you." set enforce(reason_multi) "Please respect the network rules, thank you." bind mode - "% +b"...
by SpiKe^^
Sat Jan 07, 2023 7:46 pm
Forum: Scripting Help
Topic: a help for this part of a tcl
Replies: 8
Views: 4599

strftime

Try put this, or something like this, in the text you want dated...

Code: Select all

[strftime "on %x at %X"]
by SpiKe^^
Sat Jan 07, 2023 10:29 am
Forum: Scripting Help
Topic: a help for this part of a tcl
Replies: 8
Views: 4599

This should add the new "Start List of requests" line... proc requestlist {nick uhost hand chan arg} { global adminchans1 if {$chan == $adminchans1} { set filename "lista_peticiones.txt" set in [open $filename r] set reqnumber 0 set data [split [read -nonewline $in] "\n"...
by SpiKe^^
Fri Jan 06, 2023 5:37 pm
Forum: Scripting Help
Topic: a help for this part of a tcl
Replies: 8
Views: 4599

try this.

Try this proc requestlist {nick uhost hand chan arg} { global adminchans1 if {$chan == $adminchans1} { set filename "lista_peticiones.txt" set in [open $filename r] set reqnumber 0 set data [split [read -nonewline $in] "\n"] close $in if {![llength $data]} { putnow "PRIVMSG ...
by SpiKe^^
Wed Dec 14, 2022 10:23 am
Forum: Scripting Help
Topic: to raise ops in any room where the bot is
Replies: 28
Views: 7874

flink

I might try to help if I had any idea what you were talking about:)
by SpiKe^^
Tue Dec 13, 2022 6:22 pm
Forum: Script Requests
Topic: IRCCloud Exception
Replies: 6
Views: 2145

cloudGuard v. 0.3 - 12Dec2022

This is the next ver script with the public commands 99% done. No further work has been done to the onjoin functions yet. Read the script header for all of the public commands functions. ######### cloudGuard version 0.3 by SpiKe^^ (cg.tcl) ###### 12Dec2022 ########## # # # cg.tcl is: "A Blackli...
by SpiKe^^
Thu Nov 24, 2022 1:30 pm
Forum: Script Requests
Topic: IRCCloud Exception
Replies: 6
Views: 2145

cloudGuard v. 0.2 - 25Nov2022

TimeRider All of the public commands now function fine, but all still need work. See if this addresses your two option requests... Note: This code edited once on 25Nov2022 ########## cloudGuard version 0.2 by SpiKe^^ (cg.tcl) 25Nov2022 ########## ###### cloudGuard Public Commands (eggdrop userfile f...
by SpiKe^^
Tue Nov 15, 2022 7:00 pm
Forum: Script Requests
Topic: IRCCloud Exception
Replies: 6
Views: 2145

cloudGuard version 0.1

TimeRider, Try this untested code, inspired by: GuardChan by JamesOff List your trusted hostmasks in cg(goodlist) like this: set cg(goodlist) { *!uid569209@* *!~uid321317@* *!uid587206@* *!uid682486@* } !! Add +cloudguard to channel(s) you want to protect: .chanset #channel +cloudguard ########## cl...
by SpiKe^^
Mon Oct 24, 2022 9:13 am
Forum: Script Requests
Topic: irccloud banmask
Replies: 54
Views: 43955

the script so far

simo, Here is a cleaned up copy of your script, with proper indentation so it can be read by others. I see multiple issues with the code as it stands so far... ## ircCloudBan v.1.0 ## bind mode - "#% +b" ircCloudBan bind kick - * ircCloudKick proc ircCloudBan {nk uh hn ch md banmask} { if ...
by SpiKe^^
Sun Sep 11, 2022 4:47 pm
Forum: Scripting Help
Topic: to raise ops in any room where the bot is
Replies: 28
Views: 7874

I think this line of code from the script explains it well...

Code: Select all

if {[info exists self]} {  putserv "PRIVMSG $chan :I can't op myself:)."  }
I am not aware of a way the bot can op itself, that command you offered seems useless to me:).
by SpiKe^^
Wed Sep 07, 2022 4:59 pm
Forum: Script Requests
Topic: my radio tcl is not working
Replies: 2
Views: 1433

Post the entire tcl script and any other info you have to this forum thread,
then maybe someone can try to help:)
by SpiKe^^
Mon Sep 05, 2022 10:48 am
Forum: Scripting Help
Topic: Ircop eggdrop bot with SACommands
Replies: 26
Views: 17823

That looks nice CrazyCat:)
by SpiKe^^
Sun Sep 04, 2022 10:18 pm
Forum: Scripting Help
Topic: Ircop eggdrop bot with SACommands
Replies: 26
Views: 17823

samop.tcl version 0.1

Here's a more complete version of the script, with all the features you hinted about in your posts above... This will allow !op #channel and !op #channel user and !op #channel nick nick2 nick3 # set one admin channel here for an added security check. # both the bot and the command user will need to ...
by SpiKe^^
Sun Sep 04, 2022 3:33 pm
Forum: Scripting Help
Topic: Ircop eggdrop bot with SACommands
Replies: 26
Views: 17823

Try this code. The command syntax is: op #somechannel The bot will attempt to OP the +n flagged command user in #somechannel. Important: This is Not a very secure method of getting op, as it is just protected by the flags on the bind!!!! Be sure your bot owners only have very secure host masks! bind...
by SpiKe^^
Sat Sep 03, 2022 12:35 am
Forum: Scripting Help
Topic: Join Part Flood Protection
Replies: 8
Views: 4279

Plz explain "its not working on my side"

The code posted by simo seems fine to me:)