2.0/Modules/cs updown
From AnopeWiki
Language | |
---|---|
English |
|
Description
Updates or removes a selected nicks status on a channel.
Commands
- up [channel [nick]]
- Updates a selected nicks status modes on a channel. If nick is ommited then your status is updated. If channel is ommited then your channel status is updated on every channel you are in.
- down [channel [nick]]
- Removes a selected nicks status modes on a channel. If nick is ommited then your status is removed. If channel is ommited then your channel status is removed on every channel you are in.
Examples
/msg ChanServ UP
/msg ChanServ DOWN #myChannel Fred
Default Configuration
/* * cs_updown * * Provides the commands chanserv/up and chanserv/down. * * Used for setting or removing your status modes on a channel. */ module { name = "cs_updown" } command { service = "ChanServ"; name = "DOWN"; command = "chanserv/down"; group = "chanserv/status"; } command { service = "ChanServ"; name = "UP"; command = "chanserv/up"; group = "chanserv/status"; }