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

by mindcry
Wed Aug 01, 2007 4:29 am
Forum: Eggdrop Help
Topic: ONOTICE on IRC.
Replies: 3
Views: 2589

its works :

Code: Select all

 putserv "NOTICE @$chan :$msg"
thank you so much God bless you. :wink:
by mindcry
Wed Aug 01, 2007 4:19 am
Forum: Eggdrop Help
Topic: ONOTICE on IRC.
Replies: 3
Views: 2589

do you mean putserv "NOTICE @#channel : bla bla bla" ? like this?
thank you so much for your answer. :)
by mindcry
Wed Aug 01, 2007 3:25 am
Forum: Eggdrop Help
Topic: ONOTICE on IRC.
Replies: 3
Views: 2589

ONOTICE on IRC.

how to notice all ops in some channel just like mirc did? is it with putserv "ONOTICE... or with additional scripts? thx alot for answer... :roll:
by mindcry
Wed Jun 20, 2007 7:00 am
Forum: Script Requests
Topic: improper banmask
Replies: 3
Views: 2625

awesome, your code is working.. im currently testing it in DALnet network,
currently making some mode lock just as chanserv did (example +nt-pk) and this massban protection is a part of it... thank you very much. :D
by mindcry
Tue Jun 19, 2007 7:24 pm
Forum: Script Support & Releases
Topic: AllProtection.tcl (Stable: v4.8 / Beta: v4.9b4)
Replies: 1351
Views: 1102149

i'll test it in my own ircd and tell you the results...

:D
by mindcry
Tue Jun 19, 2007 7:16 pm
Forum: Script Requests
Topic: improper banmask
Replies: 3
Views: 2625

improper banmask

i have a problem in my tcl, if ops banning *[*[*!*@* my bot will detect it as *!*@* (massban) and also if ops banning *[a]*!*@* my bot will detect it as *a*!*@* ; how we can solve this thing? anyone can help me? here are some code i try to make to solve the problem: if {[string match $arg "*!*@...
by mindcry
Tue Jun 19, 2007 2:55 pm
Forum: Script Requests
Topic: botnet script. How to change address:port
Replies: 2
Views: 2404

re change address

thank you very much now it solved :D
by mindcry
Tue Jun 19, 2007 2:43 pm
Forum: Script Requests
Topic: slap back
Replies: 10
Views: 7009

action reverse

bind CTCP - ACTION act:reply proc act:reply {nick uhost hand dest key arg} { global botnick if {[validchan $dest]} { set chan [string tolower $dest] if {![string match -nocase *$botnick* $arg] || ![onchan $nick $chan]} {return 0} regsub -all -nocase $botnick $arg $nick arg putserv "PRIVMSG $ch...
by mindcry
Mon Jun 18, 2007 11:56 am
Forum: Script Requests
Topic: slap back
Replies: 10
Views: 7009

simple action reverser

proc act:reply {nick uhost hand chan arg} {
global botnick
regsub -all -nocase $botnick $arg $nick arg
putserv "PRIVMSG $chan :\001ACTION $arg\001"
}

its better idea to make another procedure to stops action floodings on channel. :lol:
by mindcry
Mon Jun 18, 2007 11:51 am
Forum: Script Requests
Topic: botnet script. How to change address:port
Replies: 2
Views: 2404

botnet script. How to change address:port

How we can change address:port of one bot in botnet easily? What command is used for that? manually, we used .chaddr (bot) (address:port) , I didnt found any format command in tcl-commands.doc to make bot change botlist address:port by itself. thank you very much. If someone knows the command, it wi...