Project

General

Profile

Rawx » History » Version 3

Per Amundsen, 06/27/2014 02:15 PM

1 1 Per Amundsen
_Added in 1.9.3_
2
3
*/rawx [-nq] <command>*
4
5
Sends the specified command directly to the server. You must know the correct raw format of the command you are sending.
6 2 Per Amundsen
7 3 Per Amundsen
Same as [[/raw]] but evaluates a variable instead of text and allows sending consecutive spaces.
8 1 Per Amundsen
9
*Switches*
10
11
-n - TODO
12
-q - TODO
13
14
*Parameters*
15
16
<command> - The command to send to the server.
17
18
*Example*
19
20
<pre>
21
;Create a variable with the text PRIVMSG #channel :a    b
22
/var %var PRIVMSG #channel :a $+ $chr(32) $+ $chr(32) $+ $chr(32) $+ $chr(32) b
23
;Sends the output of %var to the server.
24
/rawx %var
25
</pre>