Project

General

Profile

Fakeraw » History » Revision 3

Revision 2 (Per Amundsen, 02/10/2014 01:53 PM) → Revision 3/4 (Per Amundsen, 01/17/2015 07:12 AM)

_Added in 1.8.10_ 

 */fakeraw [%var|text]* [text]* 

 Intended for plugins who wants to take full control over certain raw aspects of AdiIRC or for debugging. 

 Can be used to make AdiIRC parse a raw message as if it came from a server, use with caution. 

 *Parameters* 

 [text] - The raw text to parse. 

 *Example* 

 <pre> 
 ;Sends a fake message to #channel 
 /fakeraw :Nick!Ident@host.com PRIVMSG #channel :This is a fake message 

 ;Set a variable with consecutive spaces. 
 //set %temp :asd!asd@asd PRIVMSG $me :a $+ $chr(32) $+ $chr(32) $+ $chr(32) $+ $chr(32) b 

 ;Sends the fake message with the variable as parameter, consecutive spaces is now preserved. 
 /fakeraw %temp 
 </pre>