Search found 33 matches

by Bunkerwaiss
Sat Jun 09, 2012 6:01 am
Forum: Unreal 3.2 Spamfilters
Topic: Spamfilter for WORDS
Replies: 2
Views: 19877

Re: Spamfilter for WORDS

Try with pattern:

Code: Select all

l.*e.*d.*h.*a.*t.*o.*h.*u.*
by Bunkerwaiss
Tue Jan 24, 2012 10:31 pm
Forum: Unreal 3.2 Support
Topic: Some questions, help please.
Replies: 4
Views: 4165

Re: Some questions, help please.

All the answers are in the documentations of each package. Read it.

PS: don't run any of this daemons as root.
by Bunkerwaiss
Fri Dec 30, 2011 8:45 pm
Forum: Unreal 3.2 Support
Topic: Connection Problems.
Replies: 4
Views: 4282

Re: Connection Problems.

The credits for you Zeus :)
by Bunkerwaiss
Thu Dec 29, 2011 7:53 pm
Forum: Unreal 3.2 Support
Topic: Connection Problems.
Replies: 4
Views: 4282

Re: Connection Problems.

Find the LISTEN block on your.conf , and paste here..
Seems to be a reverse lookup problem.
by Bunkerwaiss
Sun Dec 25, 2011 6:44 pm
Forum: Unreal 3.2 Support
Topic: Weird Problem on IRC Client
Replies: 1
Views: 2334

Re: Weird Problem on IRC Client

Paste your connection info and look into ircd.log for possible warnings.
by Bunkerwaiss
Thu Dec 22, 2011 6:22 pm
Forum: Unreal 3.2 Support
Topic: Adding operators
Replies: 15
Views: 15693

Re: Adding operators

Maybe you wanna check your ircd.log for possible errors..
C:\Program Files\Unreal3.2\ircd.log (by default location)
by Bunkerwaiss
Thu Dec 22, 2011 6:01 pm
Forum: Unreal 3.2 Support
Topic: Adding operators
Replies: 15
Views: 15693

Re: Adding operators

The thing is that when you change something in your unreal config file, you must then refresh (rehash) the new configuration.
Are you on a Windows system? or a linux shell?
by Bunkerwaiss
Thu Dec 22, 2011 1:41 pm
Forum: Unreal 3.2 Support
Topic: Adding operators
Replies: 15
Views: 15693

Re: Adding operators

Hi JR10,
lets clear some bushes..

First: rehash your server's config file.
Then: disconnect/reconnect to your server
Last: /oper name pass

On Windows, to rehash:
Start -> Run -> type: %windir%\system32\services.msc
find the service named: Unrealircd
click on it and Restart

*Nix:
cd into ...
by Bunkerwaiss
Fri Dec 02, 2011 8:07 am
Forum: Unreal 3.2 Support
Topic: netadmin but no /sapart or /sajoin
Replies: 10
Views: 13687

Re: netadmin but no /sapart or /sajoin

Are you using Anope?, if so, in services.conf locate the directive UnRestrictSAdmin, and comment it.

Code: Select all

#UnRestrictSAdmin
Reload or restart your Anope, re-/oper on Unreal (or disconnect/reconnect) and /oper.
by Bunkerwaiss
Tue Nov 29, 2011 8:54 pm
Forum: Unreal 3.2 Support
Topic: netadmin but no /sapart or /sajoin
Replies: 10
Views: 13687

Re: netadmin but no /sapart or /sajoin

Try this flasgs:

oper myopernick {
class clients;
from {
userhost *@*;
};
password "yourpass";

flags
{
netadmin;
global;
coadmin;
admin;
services-admin;
can_rehash;
can_die;
can_restart;
can_wallops;
can_globops;
can_localroute;
can_globalroute;
can_localkill;
can_globalkill ...
by Bunkerwaiss
Tue Nov 29, 2011 5:16 pm
Forum: Unreal 3.2 Support
Topic: netadmin but no /sapart or /sajoin
Replies: 10
Views: 13687

Re: netadmin but no /sapart or /sajoin

Try adding services-admin to your oper block..

Code: Select all

flags {
       services-admin;
       };
by Bunkerwaiss
Fri Nov 04, 2011 4:37 am
Forum: Unreal 3.2 Spamfilters
Topic: Need Help
Replies: 9
Views: 36308

Re: Need Help

For that particular case with the M as the beggining:

Code: Select all

/spamfilter add u block - Spambot ^m[a-z]{3}\d{5}
Not an elegant solution but, it may work.
Test in your local machine first.
by Bunkerwaiss
Fri Nov 04, 2011 4:28 am
Forum: Unreal 3.2 Spamfilters
Topic: A ridiculous request
Replies: 1
Views: 16577

Re: A ridiculous request

You can use the badwords.conf, replacing the words that the users say, with a word of your choise, loading that file into unrealircd.conf, then setting up the channel with +G cmode.

Check
http://www.unrealircd.com/files/docs/unreal32docs.html#badwordsblock
And
http://www.unrealircd.com/files ...
by Bunkerwaiss
Wed Sep 28, 2011 10:31 am
Forum: Unreal 3.2 Spamfilters
Topic: Help with regex
Replies: 1
Views: 16895

Re: Help with regex

If the '*' is the first character, try:

Code: Select all

/spamfilter add u block - Some_Explanation_BAN_Text ^\*(.+)
You can use kill instead of block

Remember, if you wanna use ban reasons with spaces, use underscores between words, as:

Code: Select all

Some_Explanation_BAN_Text
by Bunkerwaiss
Wed Sep 28, 2011 10:16 am
Forum: Unreal 3.2 Spamfilters
Topic: Help needed with regex
Replies: 3
Views: 21791

Re: Help needed with regex

try:
/spamfilter add cpnN block - Some_Text (.*)\{[wW]\}\{[wW]\}\{[wW]\}(.+)
/spamfilter add cpnN block - Some_Text (.*)\[w\]\[w\]\[w\](.+)
/spamfilter add cpnN block - Some_Text (.*)\[W\]\[W\]\[W\](.+)

If in the nick, use instead:
/spamfilter add u kill - Some_Text (.*)\{[wW]\}\{[wW]\}\{[wW ...