umode change informer wanted

These are old archives. They are kept for historic purposes only.
Post Reply
cheiron
Posts: 74
Joined: Sun May 29, 2011 6:17 pm

umode change informer wanted

Post 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
siemreap
Posts: 8
Joined: Sun Aug 08, 2010 8:38 am

Re: umode change informer wanted

Post 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.
cheiron
Posts: 74
Joined: Sun May 29, 2011 6:17 pm

Re: umode change informer wanted

Post 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
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: umode change informer wanted

Post 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
cheiron
Posts: 74
Joined: Sun May 29, 2011 6:17 pm

Re: umode change informer wanted

Post 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 :)
cheiron
Posts: 74
Joined: Sun May 29, 2011 6:17 pm

Re: umode change informer wanted

Post by cheiron »

there is one item i cannot see which i need .. svsmode nick +/- blah

can svsmode be seen ?
siemreap
Posts: 8
Joined: Sun Aug 08, 2010 8:38 am

Re: umode change informer wanted

Post 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.
* ==================================================================
*/
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Re: umode change informer wanted

Post 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;
};
Your IP: Image
Your Country: Image
Post Reply