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.

suggestions

Old posts that have not been replied to for several years.
Locked
Z
Zacharias

suggestions

Post by Zacharias »

I need some tcl scripts and wanna have some tips:
A autoop system if possible, thats authenticates with q so when I login it knows its me and autoop me.

Autovoice ALL. When they login.

A bot that if someon says !homepage(or similar) it responds:
www.eggdropisthebest.org

And some other cool stuff if you have some hints. The bot is for a counter strike clan's channel
M
Moonster
Halfop
Posts: 95
Joined: Wed Nov 13, 2002 5:39 pm
Location: Manchester NH USA
Contact:

Post by Moonster »

the AutoVoice part is easy...

.chanset #Channel +autovoice

or something like that

there are trigger Tcls out there so that when someone types !Yo or something the bot can be set to respond to it but becareful to be sure there is one with a Time delay so people wont flood attack the bot by doing alot of !yo's in succession.
Z
Zacharias

Post by Zacharias »

where do I type this .chanset #unitedplayers +autovoice ?
Last edited by Zacharias on Sun Mar 16, 2003 12:29 pm, edited 1 time in total.
s
spock
Master
Posts: 319
Joined: Thu Dec 12, 2002 8:40 pm

Post by spock »

the +autovoice chanset will only voice users that have the +g (autovoice) flag. so you have to make a user with *!*@* host (preferably with random pass) and chattr it +g in the appropriate channels.

on the other hand, you can make a tcl script to do the job

Code: Select all

bind join - #yourchan * join:voice
proc join:voice { nick host hand chan } {
  pushmode $chan +v $nick
  return 0
}
^^

in its simplest form
photon?
s
spock
Master
Posts: 319
Joined: Thu Dec 12, 2002 8:40 pm

Post by spock »

come to think of it, maybe you have to enclose the #chan * with quotation marks like this

"#yourchan *"

im unable to test atm :roll:
photon?
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Yes you do, otherwise Tcl will class the channel name, and the * as seperate arguments.
Locked