Project

General

Profile

Sockwrite » History » Version 5

Per Amundsen, 06/22/2014 11:14 PM

1 2 Per Amundsen
_Added in 1.8.10_
2
3 1 Per Amundsen
*/sockwrite [-tnb] <name> [numbytes] <text|%var|&binvar>*
4
5 3 Per Amundsen
Queues data to be sent on the specified connection. AdiIRC will then try to send that info as quickly as it can. Once it has finished sending the info, it triggers the on sockwrite event so you can send more info if you need to.
6
7
You can use a wildcard name to send the same information at once to all connections that match the wildcard.
8
9
If the write fails, it will set $sock().wserr to the error value, and triggers the on sockwrite event with $sockerr set.
10
11 1 Per Amundsen
*Switches*
12
13
-t - Forces AdiIRC to send anything beginning with a & as normal text instead of interpreting it as a binary variable.
14
-n - Appends a [[$crlf]] to the line being sent if it is not a &binvar and if it does not already have a [[$crlf]].
15 5 Per Amundsen
-b - Indicates that you are specifying the numbytes value which is the number of bytes you want sent.
16 1 Per Amundsen
17
*Parameters*
18
19
<name> - Name of the connection to send to.
20
[numbytes] - Number of bytes to send. (used with -b)
21
<text|%var|&binvar> - Plain text, %var or &binvar to send.