Project

General

Profile

Scripting Events » History » Revision 18

Revision 17 (Per Amundsen, 02/11/2015 12:54 AM) → Revision 18/120 (Per Amundsen, 05/05/2015 12:40 AM)

{{>toc}} 

 h1. Scripting Event Options 

 Supported <level> prefixes: 

 & - Ignore the event if another event has already halted the text. 
 ^ - Enable halt events (hide default text output from the event) 
 ! - Ignore events made by you 
 @ - Only trigger if you have channel op 
 $ - Indicate the wildcard text is a regular expression. 
 me: - Ignore events not made by you. 
 [+]<level> - Level to match. 

 User level access is not implemented yet. 

 h1. Scripting Event Evaluation 

 Matchtext and Target Window can be evaluated using $(code) or contain a single %variable. 

 *Example* 
 <pre> 
 ;Set a target variable. 
 set %target #channel 

 ;Subscribe to the TEXT event. 
 on *:TEXT:$(* $+ $me $+ *)):%target:echo -ag My nick was highlighted on %target 
 </pre> 

 h1. Scripting Events 

 <pre> 
 raw <numeric>:<matchtext>:<commands> 

 ctcp <level>:<matchtext>:<*|#|?>:<commands> 

 on <level>:SOCKOPEN:name:commands 

 on <level>:SOCKREAD:name:commands 

 on <level>:SOCKLISTEN:name:commands 

 on <level>:SOCKCLOSE:name:commands 

 on <level>:SIGNAL:name:command 

 on <level>:LOGON:*:<commands> 

 on <level>:DNS:<commands> 

 on <level>:CTCPREPLY:<matchtext>:<commands> 

 on <level>:OPEN|CLOSE:<?|@|=|!|*>:<matchtext>:<commands> 

 on <level>:APPACTIVE:<commands> 

 on <level>:ACTIVE:<*#?=!@>:<commands> 

 on <level>:HOTLINK:<matchtext>:<*#?=!@>:<commands> 

 on <level>:INVITE:<#[,#]>:<commands> 

 on <level>:TABCOMP:<*#?=!@>:<commands> 

 on <level>:WALLOPS:<matchtext>:<commands> 

 on <level>:ERROR:<matchtext>:<commands> 

 on <level>:RAWMODE:#:<commands> 

 on <level>:DEHELP:<#[,#]>:<commands> 

 on <level>:HELP:<#[,#]>:<commands> 

 on <level>:DEVOICE:<#[,#]>:<commands> 

 on <level>:VOICE:<#[,#]>:<commands> 

 on <level>:DEOP:<#[,#]>:<commands> 

 on <level>:OP:<#[,#]>:<commands> 

 on <level>:INPUT:<*#?=!@>:<commands> 

 on <level>:UNBAN:<#[,#]>:<commands> 

 on <level>:BAN:<#[,#]>:<commands> 

 on <level>:CHAT:<matchtext>:<commands> 

 on <level>:KICK:<#[,#]>:<commands> 

 on <level>:NOTIFY:<commands> 

 on <level>:UNNOTIFY:<commands> 

 on <level>:NICK:<commands> 

 on <level>:QUIT:<commands> 

 on <level>:LOAD:<commands> 

 on <level>:UNLOAD:<commands>' 

 on <level>:START:<commands> 

 on <level>:EXIT:<commands> 

 on <level>:DNS:<commands> 

 on <level>:CONNECTFAIL:<commands> 

 on <level>:CONNECT:<commands> 

 on <level>:DISCONNECT:<commands> 

 on <level>:TOPIC:<#[,#]>:<commands> 

 on <level>:USERMODE:<commands> 

 on <level>:MODE:<#[,#]>:<commands> 

 on <level>:PART:<#[,#]>:<commands> 

 on <level>:JOIN:<#[,#]>:<commands> 

 on <level>:SNOTICE:<matchtext>:<commands> 

 on <level>:NOTICE:<matchtext>:<*><?><#[,#]>:<commands> 

 on <level>:ACTION:<matchtext>:<*><?><#[,#]>:<commands> 

 on <level>:TEXT:<matchtext>:<*><?><#[,#]>:<commands> 

 on <level>:MP3END:<commands> 

 This event is added as a replacement for OnSongChanged 
 on <level>:SONG:<commands> 

 Triggers whenever the config file is reloaded 
 on <level>:OPTIONS:<commands> 

 Triggers whenever the client sends a client text to any window, $1- will hold the original client text, haltable. 
 on <level>:CLIENTTEXT:<matchtext>:<*#?=!@>:<commands> 
 </pre>