User:Kebap/Manual:send

From Mudlet
< User:Kebap
Revision as of 16:16, 29 May 2018 by Kebap (talk | contribs) (Created page with ";send(command, showOnScreen) :This sends "command" directly to the network layer, skipping the alias matching. The optional second argument of type boolean (print) determines...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
send(command, showOnScreen)
This sends "command" directly to the network layer, skipping the alias matching. The optional second argument of type boolean (print) determines if the outgoing command is to be echoed on the screen.

See also: sendAll()

Note Note: If you want your command to be checked as if it's an alias, use expandAlias() instead - send() will ignore them.

send( "Hello Jane" ) --echos the command on the screen
send( "Hello Jane", true ) --echos the command on the screen
send( "Hello Jane", false ) --does not echo the command on the screen

-- use a variable in the send:
send("kick "..target)