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

by mindflow
Thu Oct 26, 2006 7:44 am
Forum: Scripting Help
Topic: on join help!
Replies: 9
Views: 6217

* off topic * mindflow stop checking the 'Disable BBCode in this post' if you use BBCode in your replyes. * on topic * if {[lsearch -exact $::excludedchans $channel] == -1} is missing a "{" if {[lsearch -exact $::excludedchans $channel] == -1} { Also, if the channel name will be #foo and ...
by mindflow
Mon Oct 23, 2006 9:48 pm
Forum: Scripting Help
Topic: on join help!
Replies: 9
Views: 6217

set excludedchans "#channelname #chan2 #whatever" proc msg_jmsg1 {nick uhost hand channel args} { global botnick if {[lsearch -exact $::excludedchans $channel] == -1} putserv "NOTICE $nick : Hi $nick, I'm $botnick. Rest of msg" } else { return } } BTW "args" is a speci...
by mindflow
Mon Oct 23, 2006 5:18 pm
Forum: Scripting Help
Topic: on join help!
Replies: 9
Views: 6217

uhum, thats a link to other peoples TCL, all i need is a if statement, if {chan == #channel} do nothing

dont remember how to write it right tho..
by mindflow
Mon Oct 23, 2006 4:57 pm
Forum: Scripting Help
Topic: on join help!
Replies: 9
Views: 6217

on join help!

I havent been working in TCL for a long time now, and i need 1 channel to be excluded from the "join" event, this is how it looks like now. bind join * * msg_jmsg1 proc msg_jmsg1 {nick uhost hand channel args} { global botnick putserv "NOTICE $nick : Hi $nick, I'm $botnick. Rest of my...
by mindflow
Thu Dec 29, 2005 2:34 pm
Forum: Scripting Help
Topic: filter text
Replies: 1
Views: 5011

filter text

proc !trigger {nick uhost hand chan arg} { $arg will return everything typed in the channel "if its the trigger is given", the problem i have, thats that it even grab the !trigger, how can i make it so it leav out the first word in the trigger "only the first word", like if i typ...
by mindflow
Wed Dec 28, 2005 5:56 am
Forum: Scripting Help
Topic: if $botnick !isop $chan
Replies: 4
Views: 7762

and if it's not oped? plz point me to the right doc about this info :) This is what i get from tcl-commands.doc botisop [channel] Returns: 1 if the bot has ops on the specified channel (or any channel if no channel is specified); 0 otherwise Module: irc but that dosent tell me anything on how to see...
by mindflow
Wed Dec 28, 2005 5:28 am
Forum: Scripting Help
Topic: if $botnick !isop $chan
Replies: 4
Views: 7762

if $botnick !isop $chan

Hi, i was trying to make my bot see if it have ops on a channel, but i cant sove how the code should look like, it will be inplanted in a working TCL.. proc UnReal {nick uhost hand chan arg} { global botnick check if bot is oped here { do this if bot arent oped then a halt } rest of code here, if bo...
by mindflow
Tue Sep 20, 2005 8:51 am
Forum: Archive
Topic: Help with a game TCL
Replies: 3
Views: 5515

It's made by a dude that quited internet, yes internet. and it's made with TCL, and some files name.c, i solve the TCL part, but dosent know s*t about *.c files.. i know how to compile and use them, but thats it. the TCL i rewrote, so it's 80% my "code"..
by mindflow
Mon Sep 19, 2005 11:22 am
Forum: Archive
Topic: force user to part auto-join channel
Replies: 11
Views: 14278

You can use sa-mode, but that means your bot need oper status.. not local, only global opers can use it..
by mindflow
Mon Sep 19, 2005 11:06 am
Forum: Archive
Topic: Help with a game TCL
Replies: 3
Views: 5515

Help with a game TCL

Hi, i have a TCL i use, it gather info from game servers, then it paste the info out in a /msg to the user asking for server info, it working just fine, now to my problem. I wan the TCL to send me the IP of the players, now it sends ping/score/nick/map type/server address, somone that want to give i...
by mindflow
Wed Mar 16, 2005 2:49 pm
Forum: Archive
Topic: trivia TCL problem
Replies: 1
Views: 1928

trivia TCL problem

the problem is that when somone with the signs [ ] in ther nick answer i question, then the bot just add him over and over again, and i dont know how to solve this, it looks like: « @bot » Show 'em how it's done [tag]nick! The answer was JAMIE LEE CURTIS. « @bot » The scores: [tag]nick 6, [tag]nick ...
by mindflow
Tue Mar 15, 2005 1:27 pm
Forum: Archive
Topic: topic relay
Replies: 6
Views: 2575

thnx :P
by mindflow
Tue Mar 15, 2005 12:56 pm
Forum: Archive
Topic: topic relay
Replies: 6
Views: 2575

thats no help to me.
by mindflow
Tue Mar 15, 2005 12:29 pm
Forum: Archive
Topic: topic relay
Replies: 6
Views: 2575

Ok, i have that part working ok.. but how would i send it true the botnet ? i can use "bot", but how would it send the topic to 1 bot only ?
by mindflow
Tue Mar 15, 2005 11:17 am
Forum: Archive
Topic: topic relay
Replies: 6
Views: 2575

topic relay

Somone that know if a TCL is written that can relay topic from one channel to another true a linked bot ? all i have seen is TCL's that can "lock" the topic, or set back the old one if the topic is lost, but thats not what i looking for. i think i can manage to make the code for the "...