Tagbans MystCast~khr Saturday, May 27, 2000

Subspace

If u use a tag ban of say khr then no khr member could enter the channel correct? so how can you set the Tagban to allow only khr tagged names into the channel and refuse all others?

Thanks for your advice in advance any help would be appreciated.

MystCast~khr

 
Subspace, a Suggestion Krusher Saturday, May 27, 2000

Perhaps add a Tagban, and Total Protect feature... another thingy is, can you break up the ranking of commands eg: say i wanna disable the List O cuz it spams out the channel badly, but i do not want to disable the Whois command...

> Subspace

> If u use a tag ban of say khr then no khr member could enter the channel
> correct? so how can you set the Tagban to allow only khr tagged names into
> the channel and refuse all others?

> Thanks for your advice in advance any help would be appreciated.

> MystCast~khr

 
Answer to both of you SubSpace Saturday, May 27, 2000

Hi,

> Perhaps add a Tagban, and Total Protect feature...

Tagbanning is in... Right now there is no direct way to only allow people with certain tags, but it is scriptable..

Set up a greeting for the level of Guest with the following script, it's in the same screen as the tagbans (Configuration Dialog box, Built-in functions):

if (getName() !~ "*~khr")
{
  talk("/ban " + getName() + " Only clan members are allowed in this channel")
}

Make sure the timeout is set to 0 seconds and greetings are turned on. This will ban any guests without the ~khr tag. Regulars and above won't eb banned, banned people are already banned, so...

I'm not sure what a total protect feature would do..

> another thingy is, can you break up the ranking of commands eg: say i wanna
> disable the List O cuz it spams out the channel badly, but i do not want to
> disable the Whois command...

Right now the only way you could do this is making a custom command called 'list' with something like this:

send("The list command has been disabled")

SubSpace

 
Thank you once again, you da man! Krusher Sunday, May 28, 2000

Thnx

> Hi,

> Tagbanning is in... Right now there is no direct way to only allow people
> with certain tags, but it is scriptable..

> Set up a greeting for the level of Guest with the following script, it's
> in the same screen as the tagbans (Configuration Dialog box, Built-in
> functions): if (getName() !~ "*~khr") { talk("/ban "
> + getName() + " Only clan members are allowed in this channel")
> }

> Make sure the timeout is set to 0 seconds and greetings are turned on.
> This will ban any guests without the ~khr tag. Regulars and above won't eb
> banned, banned people are already banned, so...

> I'm not sure what a total protect feature would do..

> Right now the only way you could do this is making a custom command called
> 'list' with something like this: send("The list command has been
> disabled")

> SubSpace