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

by MarlbMan
Mon Sep 20, 2004 2:04 pm
Forum: Archive
Topic: script that ctcp versions users connecting
Replies: 3
Views: 1950

Thanks very much both of you. It appears the noversions1.05.tcl is for users joining a channel, and would take a bit of work to get where I want it, but the tcm.tcl should be easy enough to modify for Unreal, thanks much!
by MarlbMan
Mon Sep 20, 2004 12:13 am
Forum: Archive
Topic: script that ctcp versions users connecting
Replies: 3
Views: 1950

script that ctcp versions users connecting

Hi All, This post isnt really about tcl scripting (yet) but rather, to inquire if a script already exists that does what I want it to. I have a problem with ddos bots connecting to my network, is there a script out there that can somehow detect such bots and place an automatic ban? It seems the pers...
by MarlbMan
Mon Aug 23, 2004 2:07 am
Forum: Archive
Topic: need some help
Replies: 5
Views: 1755

actually, I've made some changes and it KIND of works now. The problem I am having now however, is I cannot get it to incr correctly, I am wanting it to go to the last line, look at the first 2 characters (or bytes) and incr what it finds.(proc:vhost) Also, I need to find out how to get it to delete...
by MarlbMan
Sun Aug 22, 2004 7:21 pm
Forum: Archive
Topic: need some help
Replies: 5
Views: 1755

need some help

I have some code here that isnt working, I'm sure there are tons of things wrong with it, if anyone wants to help me out and pick it apart, It'd be much appreciated. set operid "vhost" set operpass "vhost5728" set nspass "vhost5728" set operchan "#Administrator&quo...
by MarlbMan
Thu Aug 21, 2003 1:36 am
Forum: Archive
Topic: Frustrated
Replies: 1
Views: 1704

Frustrated

OK... I have put together a bit of script that reads from a text file which contains the output of a /list. The file contains many lines that look somewhat like this: <#channel> <# users> <description> example: #mychannel 3 test channel when showchans is typed in channel it should return the first c...
by MarlbMan
Wed Aug 20, 2003 1:05 am
Forum: Archive
Topic: random generated nick script
Replies: 5
Views: 1953

I love it when I answer my own question, I just added sd_rnick to the global line and it works fine now.
by MarlbMan
Wed Aug 20, 2003 12:39 am
Forum: Archive
Topic: random generated nick script
Replies: 5
Views: 1953

ok, got that figured out. Changed the script a bit, now it looks like this. bind pub - chnick sd_nchange set sd_char {A a B b C c D d E e F f G g H h I i J j K k L l M m N n O o P p Q q R r S s T t U u V v W w X x Y y Z z} proc sd_nchange { nick uhost hand chan arg } { global sd_char set counter 0 s...
by MarlbMan
Tue Aug 19, 2003 10:33 pm
Forum: Archive
Topic: random generated nick script
Replies: 5
Views: 1953

random generated nick script

I stole a bit out of the random password script to generate random nicks, here is what I've come up with. set sd_nlength "8" bind pub - chnick sd_nchange set sd_char {A a B b C c D d E e F f G g H h I i J j K k L l M m N n O o P p Q q R r S s T t U u V v W w X x Y y Z z} proc sd_nchange { ...
by MarlbMan
Tue Aug 19, 2003 6:19 pm
Forum: Archive
Topic: Help with arrays
Replies: 2
Views: 1203

I am looking for a script to do something similar. I would like it to get a /list and join channels either at random, or attempt to join each channel in a cycle as you said, to detect spam, then post an alert in an oper channel. If wouldn't mind parting with what you have, it'd be appreciated. unles...
by MarlbMan
Mon Jul 07, 2003 3:29 am
Forum: Archive
Topic: Hiding CTCP on partyline
Replies: 2
Views: 1075

yes but, I dont want to disable seeing all ctcp's, just this one
by MarlbMan
Sun Jul 06, 2003 1:40 am
Forum: Archive
Topic: Hiding CTCP on partyline
Replies: 2
Views: 1075

Hiding CTCP on partyline

I have a script that voices people when they /ctcp mybot VOICEME, here is an excerpt of the VERY simple script I threw together: bind ctcp - VOICEME ctcpvoice proc ctcpvoice {nick uh hand dest key arg} { pushmode #mychan +v $nick putlog "Voice requested from $nick" } The problem is, I have...
by MarlbMan
Fri Jul 04, 2003 1:22 am
Forum: Archive
Topic: Channel Rank Script
Replies: 1
Views: 1154

Channel Rank Script

I'm just starting out in .tcl scripting, and have made a few custom tcl scripts to fit my needs. I am having difficulty with this one though. I am wondering how I could get the bot to get a /list from the server when someone types !rank in channel, and respond with "This channel is currently #X...
by MarlbMan
Fri Jun 06, 2003 11:20 pm
Forum: Archive
Topic: simple tcl question
Replies: 4
Views: 2634

found an answer

OK folks... found the answer, thanks
by MarlbMan
Fri Jun 06, 2003 3:00 pm
Forum: Archive
Topic: simple tcl question
Replies: 4
Views: 2634

ok... I'm a tcl n00b... obviously...

OK... took your advice, but I must be doing something wrong... can someone please tell me where I screwed up and how to fix it? I get this error. [13:56] <CW-Bot> "proc out { nick uhost hand chan }" [13:56] <CW-Bot> (file "scripts/restricted.tcl" line 21) [13:56] <CW-Bot> invoked...
by MarlbMan
Thu Jun 05, 2003 11:59 pm
Forum: Archive
Topic: simple tcl question
Replies: 4
Views: 2634

better reference

This script is small, so for better reference, here is a bigger exerpt. set r_chan "#complete-servers" set r_time 60 bind join -|- "$r_chan *!*@*" out proc out { nick uhost hand chan } { global r_ban r_time r_chan if {![file exists restrictkick]} { set rnum [open restrictkick w] ...