Search found 260 matches

by SpaceDoG
Wed Nov 08, 2006 1:16 pm
Forum: Unreal 3.2 Support
Topic: Some questions ^^
Replies: 2
Views: 1380

For flooding... http://www.vulnscan.org/UnrealIRCd/unreal32docs.html#feature_antiflood for the bots... http://www.vulnscan.org/UnrealIRCd/faq/#101 do the opposite of what that says and it should help you out greatly for the session limit... http://www.vulnscan.org/UnrealIRCd/unreal32docs.html#allowb...
by SpaceDoG
Sun Nov 05, 2006 5:54 am
Forum: General chat
Topic: quick scripting help
Replies: 20
Views: 10652

The reason you don't want to +a someone is because as far as I can tell mIRC does not yet support +a/+q. yea I know that sounds crappy but that's the way that it is.
by SpaceDoG
Sat Nov 04, 2006 7:10 pm
Forum: General chat
Topic: quick scripting help
Replies: 20
Views: 10652

on *:join:#channel: { set % $+ $nick false } on *:text:#channel:!a: { if (% $+ $nick == false) { mode # +a $nick set % $+ $nick true } else { mode # -a $nick set % $+ $nick == false } } on *:kick:#channel: { if (% $+ $nick == true) { mode # -a $nick set % $+ $nick false } else { halt } } on *:nick:...
by SpaceDoG
Sat Nov 04, 2006 6:43 am
Forum: General chat
Topic: quick scripting help
Replies: 20
Views: 10652

on *:text:#channel:!a: {
mode # +a $nick
}

That's just a basic that will give anyone who types !a admin.
by SpaceDoG
Fri Nov 03, 2006 9:49 pm
Forum: Unreal 3.2 Support
Topic: Stupid question about the badwords list
Replies: 2
Views: 1157

Yea I'm actually talking with Syzop about modifying his textban module to basically make it a channel customized badwords list since at present it blocks messages with the specified word(s).
by SpaceDoG
Fri Nov 03, 2006 8:59 pm
Forum: Unreal 3.2 Support
Topic: Stupid question about the badwords list
Replies: 2
Views: 1157

Stupid question about the badwords list

Is it possible for each channel to have a customized badwords list or is it a server wide thing only?
by SpaceDoG
Fri Nov 03, 2006 1:07 pm
Forum: Unreal 3.2 Support
Topic: /nickserv instead of /msg nickserv
Replies: 3
Views: 1484

Moved to Unreal3.2 Support as this is an alias question.
by SpaceDoG
Fri Nov 03, 2006 12:03 pm
Forum: General chat
Topic: quick scripting help
Replies: 20
Views: 10652

You can actually write the script really easily yourself. Just type /help on text.
by SpaceDoG
Fri Nov 03, 2006 2:58 am
Forum: General chat
Topic: quick scripting help
Replies: 20
Views: 10652

ok... what kind of bot do you have?
by SpaceDoG
Thu Nov 02, 2006 2:45 pm
Forum: General chat
Topic: quick scripting help
Replies: 20
Views: 10652

So then what exactly is it that you need help with?
by SpaceDoG
Thu Nov 02, 2006 1:13 pm
Forum: General chat
Topic: quick scripting help
Replies: 20
Views: 10652

Ok if you don't want people to be kicked +a them. They will still however be able to kick the +o's and +h's but the +a's themselves can't be kicked.
by SpaceDoG
Wed Nov 01, 2006 3:56 pm
Forum: General chat
Topic: quick scripting help
Replies: 20
Views: 10652

ok.. here's the break down of channel modes +q = owner/founder - can kick all members while not being able to be kicked themselves. +a = admin - can op, voice, halfop and kick all ops, hops, regular users, and voice. Not able to be kicked except by the channel owner/founder +o = op - can op, voice, ...
by SpaceDoG
Wed Nov 01, 2006 3:15 am
Forum: General chat
Topic: quick scripting help
Replies: 20
Views: 10652

If they're taking a break why would you want them to make themselves an admin?
by SpaceDoG
Wed Nov 01, 2006 2:24 am
Forum: Unreal 3.2 Support
Topic: newbie help... sorry!
Replies: 2
Views: 1135

Get a program called WinSCP. Enter the login info for the shell there. Go to the unreal directory. Open the unrealircd.conf by clicking it and pressing f4 for edit. Look for oper and then add your oper block. Save the file, rehash the server and you're done.
by SpaceDoG
Wed Nov 01, 2006 2:06 am
Forum: General chat
Topic: quick scripting help
Replies: 20
Views: 10652

+a doesn't allow for +a's to kick each other. You want +o for that.