Page 1 of 1

umode change informer wanted

Posted: Sun May 29, 2011 6:53 pm
by cheiron
i would like a module please to allow me and my team ( services admins and higher) to see when a user changes their usermode via a snotice

eg. tom sets mode +T or Nick sets mode -x (this one more so as it exposes user's ip)

i'm running unreal 3.2.8.1 on nix

Re: umode change informer wanted

Posted: Tue May 31, 2011 11:22 am
by siemreap
Use mr AngryWolf's module commandsno.c http://www.angrywolf.org/commandsno.tar.gz
Snomask +C: lets you see when certain commands are used by clients. All commands you want to get notifications of are configurable in set::notify-commands.

Re: umode change informer wanted

Posted: Tue May 31, 2011 2:11 pm
by cheiron
loaded it correctly .. ran the extra bit on the set block, rehashed no problems..

did the command /umode +s +C on my mirc... mirc came back and said UMODE Uknown command

and i dont get no notices at all ( i even did svsmode $me +C to physically set it and checked and there it was.. and still no notices)

can i have some help please

Re: umode change informer wanted

Posted: Tue May 31, 2011 2:56 pm
by katsklaw
UMODE unknown command is telling you that /umode is not a valid command. I suggest reading up on snomasks. http://www.unrealircd.com/files/docs/un ... e_snomasks

Re: umode change informer wanted

Posted: Tue May 31, 2011 3:35 pm
by cheiron
i got it.. thanks katsklaw

what i had originally done was follow the readme.txt for the module which had specifically said to use that command /umode +s +C
module now works :)

Re: umode change informer wanted

Posted: Tue May 31, 2011 6:28 pm
by cheiron
there is one item i cannot see which i need .. svsmode nick +/- blah

can svsmode be seen ?

Re: umode change informer wanted

Posted: Thu Jun 02, 2011 6:58 am
by siemreap
If you want to use /umode try Mr Stealth's module https://bitbucket.org/stealth/unreal32/ ... es/umode.c
/*
* ==================================================================
* Module: umode.c
* Author: Stealth <[email protected]>
* Version: 1.2
* License: No warranty - use at your own risk.
* Description: Server-side UMODE command for users.
* ==================================================================
*/

Re: umode change informer wanted

Posted: Thu Jun 02, 2011 10:23 am
by Jobe
siemreap wrote:If you want to use /umode try Mr Stealth's module https://bitbucket.org/stealth/unreal32/ ... es/umode.c
/*
* ==================================================================
* Module: umode.c
* Author: Stealth <[email protected]>
* Version: 1.2
* License: No warranty - use at your own risk.
* Description: Server-side UMODE command for users.
* ==================================================================
*/
Or you could simply just use an alias block...:

Code: Select all

alias "umode" {
	format ".+" {
		command "mode";
		type real;
		parameters "%n %1-";
	};
	type command;
};