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

by simo
Mon Mar 20, 2023 1:05 pm
Forum: Eggdrop Help
Topic: how to set eggdrop bot's user mode? (+i)
Replies: 5
Views: 8774

check this section: https://github.com/eggheads/eggdrop/blob/develop/eggdrop.conf#L1069 https://github.com/eggheads/eggdrop/blob/develop/eggdrop.conf#L1062-L1071 would look something like this : bind evnt - init-server evnt:init_server proc evnt:init_server {type} { global botnick putquick "MOD...
by simo
Wed Mar 08, 2023 11:46 am
Forum: Script Requests
Topic: I`m use thommey`s arbchanmodes.tcl but I`m using inspircd-3.
Replies: 5
Views: 2237

you didnt load thommey`s arbchanmodes.tcl
by simo
Tue Mar 07, 2023 2:30 pm
Forum: Script Requests
Topic: I`m use thommey`s arbchanmodes.tcl but I`m using inspircd-3.
Replies: 5
Views: 2237

to get a list of channel owners on channel you can try this: bind pub n !owners Pub:ChanOwners-List proc Pub:ChanOwners-List {nick host hand chan text} { set userList [chanlist $chan] set pos [lsearch -nocase $userList $::botnick] set userList [lreplace $userList $pos $pos] foreach user $userList { ...
by simo
Tue Mar 07, 2023 2:02 pm
Forum: Script Requests
Topic: I`m use thommey`s arbchanmodes.tcl but I`m using inspircd-3.
Replies: 5
Views: 2237

the code doesnt work for /who it works in channel like this :

Code: Select all


if {[isowner $nick $chan] || [isadmin $nick $chan] || [isop $nick $chan] || [ishalfop $nick $chan]} {  

by simo
Sun Mar 05, 2023 9:38 pm
Forum: Script Requests
Topic: I`m use thommey`s arbchanmodes.tcl but I`m using inspircd-3.
Replies: 5
Views: 2237

What exactly is the issue as im using the same code too on an inspircd-3 server and it works fine for me, perhaps you could provide some more information about what didn't seem to work
by simo
Sat Mar 04, 2023 12:04 pm
Forum: Script Requests
Topic: OperIt and auto op for IRCop
Replies: 11
Views: 2466

edit basic working code : bind raw - 313 check:isircop bind join - * join:checkisircop bind pub - operit check:ircop proc check:ircop {nick uhost hand chan text} { set text [regsub -all -- {\s{2,}} [string trim [stripcodes * $text]] { }] if {[botisop $chan] && ![isbotnick $nick]} { putserv &...
by simo
Sat Mar 04, 2023 11:40 am
Forum: Script Requests
Topic: OperIt and auto op for IRCop
Replies: 11
Views: 2466

perhaps i could connect to your server and do some checks myselve if you are ok with that if so pm me the details
by simo
Sat Mar 04, 2023 11:21 am
Forum: Script Requests
Topic: OperIt and auto op for IRCop
Replies: 11
Views: 2466

from what i have read and checking raw numerics for ircoper i came to find its raw numeric 313 that retreives ircops status in a whois i came up with this see if it works as i dont run ratbox myselve else i could have tested myselve but from what ive read raw numeric 313 is RFC1459 see if this works...
by simo
Thu Mar 02, 2023 4:01 pm
Forum: Script Requests
Topic: OperIt and auto op for IRCop
Replies: 11
Views: 2466

how would eggdrop know who is an ircop and who isnt ?

if there is a way to find out you could use that in a tcl to retreive
by simo
Thu Mar 02, 2023 11:03 am
Forum: Script Requests
Topic: OperIt and auto op for IRCop
Replies: 11
Views: 2466

you can use oper / superadmin option for that if you are using anope services on your IRC network or in the case u use inspircd there is a module you could use for that
by simo
Thu Feb 23, 2023 9:57 pm
Forum: Script Requests
Topic: Need help whois host and ip tcL
Replies: 6
Views: 2865

Dalnet has introduced cloaking to mask host so you can no longer see real ip wich might explain why it no longer works
by simo
Tue Jan 10, 2023 4:43 pm
Forum: Script Requests
Topic: check if nick is still on channel before kicking
Replies: 10
Views: 3078

ive tested again and original code seems to work fine now SpiKe^^ thanks much apreciated
by simo
Tue Jan 10, 2023 3:47 pm
Forum: Script Requests
Topic: check if nick is still on channel before kicking
Replies: 10
Views: 3078

thanks for your reply caesar ive tried your suggestion as well and for some reason it doesnt seem to trigger and i didnt get any error in PL
by simo
Tue Jan 10, 2023 5:59 am
Forum: Script Requests
Topic: check if nick is still on channel before kicking
Replies: 10
Views: 3078

Using the original one you posted didn't seem to trigger SpiKe i will try again later when im on pc and report again hopefully thanks SpiKe
by simo
Tue Jan 10, 2023 3:02 am
Forum: Script Requests
Topic: check if nick is still on channel before kicking
Replies: 10
Views: 3078

i tried editing it to this :

Code: Select all


      foreach k "[lsort -unique -dictionary $kickList($chan)]" {
         if {[onchan $k $chan]} {  lappend knicks $k  }
      }

it seems to have fixed it but not sure if i edited it proper tho