The current plugin's IRCPluginState, via which to send messages to the server.
Channel in which to send the message, if applicable.
Nickname of user to which to send the message, if applicable.
Message body content to send.
Custom message properties, such as Message.Property.quiet and Message.Property.forced.
String name of the calling function, or something else that gives context.
IRCPluginState state; state.mainThread = thisTid; privmsg(state, "#channel", string.init, "content"); receive( (Message m) { with (m.event) { assert((type == IRCEvent.Type.CHAN), Enum!(IRCEvent.Type).toString(type)); assert((channel == "#channel"), channel); assert((content == "content"), content); assert(!target.nickname.length, target.nickname); assert(m.properties == Message.Property.init); } } ); privmsg(state, string.init, "kameloso", "content"); receive( (Message m) { with (m.event) { assert((type == IRCEvent.Type.QUERY), Enum!(IRCEvent.Type).toString(type)); assert(!channel.length, channel); assert((target.nickname == "kameloso"), target.nickname); assert((content == "content"), content); assert(m.properties == Message.Property.init); } } );
Sends either a channel message or a private query message depending on the arguments passed to it.
This reflects how channel messages and private messages are both the underlying same type; PRIVMSG.