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

by K
Sun Aug 22, 2004 1:21 pm
Forum: Archive
Topic: botnet
Replies: 15
Views: 4428

botnet

Somebody have a tcl script that does pub command for botnet like: !botnet <whom|bots[linked|unliked]|chat|link|unlink[bot]> !botnet whom = show all users from party line !botnet bots = show all bots !botnet bots linked = show all bots linked !botnet bots unlined = show all bots unlinked !botnet chat...
by K
Thu Aug 05, 2004 5:30 pm
Forum: Archive
Topic: A script that sets the info
Replies: 7
Views: 2925

than

than on that script remove that line :o
by K
Tue Aug 03, 2004 2:48 pm
Forum: Archive
Topic: looking for tcl to shitlist for version reply
Replies: 2
Views: 1587

bether

a bether ideea is to ban the one who is doing that dcc exploit. here is a script: bind raw - PRIVMSG raw:exploit proc raw:exploit {from keyword args} { set args [string trim $args "{}"] if {[regexp {(SEND|RESUME).*"(?:[^" ]*\s){32}.*$} $args]} { set banmask *!*@[lindex [split $fr...
by K
Sat Jul 31, 2004 7:38 pm
Forum: Archive
Topic: bseen 1.4.2 error :\
Replies: 2
Views: 1266

get the correct script

www.egghelp.org and get the latest version
by K
Sun Jul 18, 2004 7:52 pm
Forum: Archive
Topic: ok
Replies: 3
Views: 1545

like

set nb_component(yx_0__ident) 0 set nb_component(yx_1__cservice) 1 set nb_component(yx_2__routines) 1 set nb_component(yx_3__binds) 1 set nb_component(yx_4__owner) 1 set nb_component(yx_5__global_n) 1 set nb_component(yx_6__global_m) 1 set nb_component(yx_7__global_o) 1 set nb_component(yx_80_globa...
by K
Sun Jul 18, 2004 7:22 pm
Forum: Archive
Topic: ok
Replies: 3
Views: 1545

ok

but i have see in netbots.tcl from slennox such a thing but i don't know how to extract only that option
by K
Sun Jul 18, 2004 4:39 pm
Forum: Archive
Topic: load scripts
Replies: 6
Views: 2578

no or yes

yes but if the scripts have diferent names it don't work and if i whant to start the scripts in a order that funtion even not :)
by K
Sun Jul 18, 2004 12:42 pm
Forum: Archive
Topic: load scripts
Replies: 6
Views: 2578

load scripts

if i have in dir scr 10 scripts file and i whant to load all these files with one command in eggdrop.conf not like: source scr/script1.tcl source scr/script2.tcl . . . and so one i wonder if is psobile to make a script and you add the lines in the scripts and add only that script to eggdrop.conf sou...
by K
Thu Jul 15, 2004 5:43 am
Forum: Archive
Topic: scan and op
Replies: 9
Views: 3556

check

i have ckeck the script and 1. you forght a " at putserv "PRIVMSG $chan1 :Nick(s) [join $oplist {, }] has/have been successfully opped on $chan2. 2. don't work (don't work means no error message on dcc but if you do !opscan even no message/error on dcc and the bot don't do nothing) here is...
by K
Thu Jun 17, 2004 3:55 pm
Forum: Archive
Topic: -/+o -/+v bk (user control)
Replies: 3
Views: 1703

a line

Code: Select all

putserv "privmsg $nick :bla bla"
by K
Wed May 05, 2004 4:35 pm
Forum: Archive
Topic: need channel-protect-script
Replies: 3
Views: 987

read

for op only person who are op use +bitch
for protect user from kick/ban use a protuser.tcl
by K
Sat May 01, 2004 8:24 am
Forum: Archive
Topic: a users dysplay script
Replies: 0
Views: 814

a users dysplay script

i got this script! that dysplays masters and owners! but it is a a little dificult and i chan change it to dysplay onlu owners and voices if somebody could give me a hint # do you want the bot to make a differance between owners & masters? set display_owners 1 # set here the trigger for flood se...
by K
Thu Apr 29, 2004 5:41 am
Forum: Archive
Topic: My first time :P
Replies: 4
Views: 1688

here

very simple #Type the chan set onjoin_msg { { "The text you whant to notice" } } set onjoin_chans "#talmaciu #strand" bind join - * join_onjoin proc join_onjoin {nick uhost hand chan} { global onjoin_msg onjoin_chans botnick if {(([lsearch -exact [string tolower $onjoin_chans] [s...
by K
Thu Apr 29, 2004 5:12 am
Forum: Archive
Topic: Public Channel Join Command Script for eggdrop!
Replies: 9
Views: 3771

a simpele tcl

Very simple bind pub m .+chan pub:+chan bind pub m .-chan pub:-chan #part proc pub:-chan {nick uhost hand chan args} { set args [cleanarg $args] if {[llength $args]<1} { notice $nick "Usage: .-chan <#channel>" return 0 } channel remove $args } #join proc pub:+chan {nick uhost hand chan arg...
by K
Fri Apr 23, 2004 6:08 pm
Forum: Archive
Topic: Autovoice
Replies: 9
Views: 2158

code

## autovoice.tcl ## - voices everyone in a channel when they join # What channels should this work on? # - note, "" is for all channels set avchan "" ## Begin the code bind join - * avjoin proc avjoin {nick uhost hand chan} { global avchan botnick if {$nick == $botnick} {return ...