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.

Looking For Special Voice Script

Old posts that have not been replied to for several years.
T
TRaSH
Halfop
Posts: 56
Joined: Wed Feb 26, 2003 3:38 pm
Location: #Anime-Supreme

Post by TRaSH »

Thnx for the Help with this part,
Starting out to understand the basics of .tcl scripting

but how do i start setup the following with the same script

is it also posible to unvoice people who stop serving ?
S
SmokeyOne
Halfop
Posts: 69
Joined: Tue Jan 14, 2003 6:04 am

I have the same quesiton as this.

Post by SmokeyOne »

I was wondering, if it wouldn't it be easier to just add it to a pool ? instead of definding each bind notc would make the script a little neater. Also for error checking for a list of people who's server doesn't display, would that be a memory allocation or can it check from a file ? just trying to figure out what would be better to use in this case.

Personaly I would like to know if adding a "pool" so to speak like this

set vfs_pool {
"*fileserver* trigger*"
"*Bandwidth Usage ** *Current, *Cap, *Record"
}
something to that effect.. I hope someone can help me with that

Later
S
SmokeyOne
Halfop
Posts: 69
Joined: Tue Jan 14, 2003 6:04 am

Another Thought

Post by SmokeyOne »

I think what I'm going to do is try to modify WCC's VoiceFservs1.3 script to allow time inrevals of !list using the bind notc instead of pubmsg. though I think I'm going to puke when trying to change around his code. At the top of the script I have him full credit for the script and added info about that I modified it to allow doing these fucntions. This is the only thing I can think of for this to work and to WCC if you have a updated email address lease post it here so i can email you the script so you can see the changes. and maybe make another release or help me fix theses settings, or anyone else on here that might be able to help me fix them. full credit goes to anyone and everyone that helps me with this
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Re: I have the same quesiton as this.

Post by Sir_Fz »

SmokeyOne wrote:[snip]
Personaly I would like to know if adding a "pool" so to speak like this

set vfs_pool {
"*fileserver* trigger*"
"*Bandwidth Usage ** *Current, *Cap, *Record"
}
something to that effect.. I hope someone can help me with that

Later
you can do that, make a notc bind matchin * , thin within the proc do a foreach loop, like

Code: Select all

foreach vf_pool $::vfs_pool {
if {[string match -nocase $vf_pool $arg]} {
#do voice... }
S
SmokeyOne
Halfop
Posts: 69
Joined: Tue Jan 14, 2003 6:04 am

Post by SmokeyOne »

well trying to use wcc's script to add a time list command just [censored] up, keeps giveing me text : no such var: invocted from within, so I guess I'm going to try this method.


i see the string matc -nocase , but wouldn't i need a string tolower command as well ?
Locked