Lines Matching defs:Commands

15 type Commands struct {  struct
16 c *Client
20 func (cmd *Commands) Nick(name string) {
26 func (cmd *Commands) Join(channels ...string) {
54 func (cmd *Commands) JoinKey(channel, password string) {
59 func (cmd *Commands) Part(channels ...string) {
66 func (cmd *Commands) PartMessage(channel, message string) {
73 func (cmd *Commands) SendCTCP(target, ctcpType, message string) {
85 func (cmd *Commands) SendCTCPf(target, ctcpType, format string, a ...interface{}) {
92 func (cmd *Commands) SendCTCPReplyf(target, ctcpType, format string, a ...interface{}) {
98 func (cmd *Commands) SendCTCPReply(target, ctcpType, message string) {
108 func (cmd *Commands) Message(target, message string) {
114 func (cmd *Commands) Messagef(target, format string, a ...interface{}) {
126 func (cmd *Commands) Reply(event Event, message string) {
142 func (cmd *Commands) Replyf(event Event, format string, a ...interface{}) {
150 func (cmd *Commands) ReplyTo(event Event, message string) {
167 func (cmd *Commands) ReplyTof(event Event, format string, a ...interface{}) {
173 func (cmd *Commands) Action(target, message string) {
182 func (cmd *Commands) Actionf(target, format string, a ...interface{}) {
187 func (cmd *Commands) Notice(target, message string) {
193 func (cmd *Commands) Noticef(target, format string, a ...interface{}) {
200 func (cmd *Commands) SendRaw(raw ...string) error {
217 func (cmd *Commands) SendRawf(format string, a ...interface{}) error {
223 func (cmd *Commands) Topic(channel, message string) {
231 func (cmd *Commands) Who(users ...string) {
240 func (cmd *Commands) Whois(users ...string) {
248 func (cmd *Commands) Ping(id string) {
254 func (cmd *Commands) Pong(id string) {
260 func (cmd *Commands) Oper(user, pass string) {
267 func (cmd *Commands) Kick(channel, user, reason string) {
276 func (cmd *Commands) Ban(channel, mask string) {
281 func (cmd *Commands) Unban(channel, mask string) {
289 func (cmd *Commands) Mode(target, modes string, params ...string) {
297 func (cmd *Commands) Invite(channel string, users ...string) {
306 func (cmd *Commands) Away(reason string) {
317 func (cmd *Commands) Back() {
325 func (cmd *Commands) List(channels ...string) {
359 func (cmd *Commands) Whowas(user string, amount int) {
365 func (cmd *Commands) Monitor(modifier rune, args ...string) {