-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmIRC-msl.sublime-completions
806 lines (797 loc) · 265 KB
/
mIRC-msl.sublime-completions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
/*
MIT License
Copyright (c) 2024 Evan Greene
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/* How to build your own autocompletes:
-----------------------------------
trigger:
- is the triggering word. Sublime does fuzzy matching, so it will match any word in the trigger including description (if provided)
- \t will right align text and italicize
content:
- the text entered when accepting the auto complete
- Can create "tab" stops using ${N:<Text to highlight>}. N starts at 1.
- EG: myCommand(${1:I am an autocomplete}) - this will create "myCommand(I am an autocomplete)" with the "I am an autocomplete" highlighted so it can easily be typed over
Special highlighting rules exist for the following syntaxes:
- ˇOptional [parameter] - highlights "Optional" as a function and [parameter] as a parameter
- ˇRequired <parameter> - highlights "Required" as a function and <parameter> as a parameter
*/
{
"scope": "source.msl - *",
"settings": [
{ "auto_complete_preserve_order": "none" }
],
"completions":
[
// ###########################################################################################################################
// mIRC Commands
// ###########################################################################################################################
{ "trigger": " /abook Display Address Book \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/abook\">https://en.wikichip.org/wiki/mirc/commands/abook</a>", "contents": "abook ${1:[ˇOptional: -chnw]}" }
,{ "trigger": " /action Perform action in channel \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/action\">https://en.wikichip.org/wiki/mirc/commands/action</a>", "contents": "action ${1:<ˇRequired: message>}" }
,{ "trigger": " /ajinvite Toggle auto-join on invite features \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ajinvite\">https://en.wikichip.org/wiki/mirc/commands/ajinvite</a>", "contents": "ajinvite ${1:<ˇRequired: on|off>}" }
,{ "trigger": " /alias Add/Replace/Remove aliases. \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/alias\">https://en.wikichip.org/wiki/mirc/commands/alias</a>", "contents": "alias ${1:[ˇOptional: filename_of_loaded_alias]} ${2:<ˇRequired: alias_name>} ${3:[ˇOptional: code_or_blank_to_remove_alias)]}" }
,{ "trigger": " /aline Add line of text to @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/aline\">https://en.wikichip.org/wiki/mirc/commands/aline</a>", "contents": "aline ${1:[ˇOptional: -sahpinl]} ${3:[ˇOptional: color_code]} @${4:<ˇRequired: name_of_window>} ${5:<ˇRequired: text>}" }
,{ "trigger": " /ame Send action to all channels \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ame\">https://en.wikichip.org/wiki/mirc/commands/ame</a>", "contents": "ame ${1:<ˇRequired: message>}" }
,{ "trigger": " /amsg Send message to all channels \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/amsg\">https://en.wikichip.org/wiki/mirc/commands/amsg</a>", "contents": "amsg ${1:<ˇRequired: message>}" }
,{ "trigger": " /anick Set alternate nickname \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/anick\">https://en.wikichip.org/wiki/mirc/commands/anick</a>", "contents": "anick ${1:<ˇRequired: nickname>}" }
,{ "trigger": " /aop Turn on/off OR add to aop list \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/aop\">https://en.wikichip.org/wiki/mirc/commands/aop</a>", "contents": "aop ${1:<ˇRequired: on|off>} ${2:ˇORˇ [ˇOptional: -rw]} ${3:<ˇRequired: nick_or_address>} ${4:[ˇOptional: #channel1,#channel2...]} ${5:[ˇOptional: int_address_type]} ${6:[ˇOptional: string_network]}" }
,{ "trigger": " /auser Add or edit user \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/auser\">https://en.wikichip.org/wiki/mirc/commands/auser</a>", "contents": "auser ${1:[ˇOptional -a match_existing_entry]} ${2:<ˇRequired: levels>} ${3:<ˇRequired: nick_or_address>} ${4:[ˇOptional: special_info_about_entry]}" }
,{ "trigger": " /aop Turn on/off OR add to aop list \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/aop\">https://en.wikichip.org/wiki/mirc/commands/aop</a>", "contents": "auto ${1:<ˇRequired: on|off>} ${2:ˇORˇ [ˇOptional: -rw]} ${3:<ˇRequired: nick_or_address>} ${4:[ˇOptional: #channel1,#channel2...]} ${5:[ˇOptional: int_address_type]} ${6:[ˇOptional: string_network]}" }
,{ "trigger": " /autojoin Autojoin used with \"on connect\" event \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/autojoin\">https://en.wikichip.org/wiki/mirc/commands/autojoin</a>", "contents": "autojoin ${1:[ˇOptional: -nsdN]}" }
,{ "trigger": " /avoice Turn on/off OR add to avoice list \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/avoice\">https://en.wikichip.org/wiki/mirc/commands/avoice</a>", "contents": "avoice ${1:<ˇRequired: on|off>} ${2:ˇORˇ [ˇOptional: -rw]} ${3:<ˇRequired: nick_or_address>} ${4:[ˇOptional: #channel1,#channel2...]} ${5:[ˇOptional: int_address_type]} ${6:[ˇOptional: string_network]}" }
,{ "trigger": " /away Set/Unset Away \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/away\">https://en.wikichip.org/wiki/mirc/commands/away</a>", "contents": "away ${1:[ˇOptional: message_or_blank_to_unset]}" }
,{ "trigger": " /background Set background \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/background\">https://en.wikichip.org/wiki/mirc/commands/background</a>", "contents": "background ${1:<ˇRequired: -abemsgdluhcfnrtpx>} ${2:[ˇOptional: window]} ${3:[ˇOptional: \"filename\"]}" }
,{ "trigger": " /ban Ban a user \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ban\">https://en.wikichip.org/wiki/mirc/commands/ban</a>", "contents": "ban ${1:[ˇOptional: -kruN]} ${2:[ˇOptional: #channel]} ${4:<ˇRequired: nickname_or_address>} ${5:[ˇOptional: int_address_type]} ${6:[ˇOptional: kick_message]}" }
,{ "trigger": " /bcopy Copy bytes from &var to &var \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/bcopy\">https://en.wikichip.org/wiki/mirc/commands/bcopy</a>", "contents": "bcopy ${1:[ˇOptional: -zc]} ${2:<ˇRequired: &dest_binvar>} ${3:<ˇRequired: int_destination_pos>} ${4:<ˇRequired: &src_binvar>} ${5:<ˇRequired: int_source_pos>} ${6:<ˇRequired: int_numBytes>}" }
,{ "trigger": " /beep Generate speaker beep \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/beep\">https://en.wikichip.org/wiki/mirc/commands/beep</a>", "contents": "beep ${1:[ˇOptional: int_number_times]} ${2:[ˇOptional: int_delay_in_seconds]}" }
,{ "trigger": " /bindip Set IP binding on/off \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/bindip\">https://en.wikichip.org/wiki/mirc/commands/bindip</a>", "contents": "bindip ${1:on <ˇRequired: IP_or_Adapter>} ${2:ˇORˇ ˇOptional: on|off]}" }
,{ "trigger": " /bread Read bytes from file into &var \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/bread\">https://en.wikichip.org/wiki/mirc/commands/bread</a>", "contents": "bread ${1:[ˇOptional]: -t]} ${2:<ˇRequired: \"filename\">} ${3:<ˇRequired: int_byte_start_pos>} ${4:<ˇRequired: int_num_bytes_to_read>} ${5:<ˇRequired: variable_to_store_in>}" }
,{ "trigger": " /break Terminate execution of nearest loop \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/break\">https://en.wikichip.org/wiki/mirc/commands/break</a>", "contents": "break" }
,{ "trigger": " /breplace Replace ascii var with binary var \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/breplace\">https://en.wikichip.org/wiki/mirc/commands/breplace</a>", "contents": "breplace ${1:<ˇRequired: &binvar>} ${2:<ˇRequired: old_value>} ${3:<ˇRequired: new_value>} ${4:[ˇOptional: old_value new_value ...]}" }
,{ "trigger": " /bset Set binary global variable \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/bset\">https://en.wikichip.org/wiki/mirc/commands/bset</a>", "contents": "bset ${1:[ˇOptional: -tac]} ${2:<ˇRequired: &binvar>} ${3:<ˇRequired: int_pos>} ${4:<ˇRequired: ascii/string>} ${5:[ˇOptional: asci/string asci/string ...]}" }
,{ "trigger": " /btrunc Truncate file to specified bytesize \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/btrunc\">https://en.wikichip.org/wiki/mirc/commands/btrunc</a>", "contents": "btrunc ${1:<ˇRequired: \"filename\">} ${2:<ˇRequired: int_bytes>}" }
,{ "trigger": " /bunset Unset binary global variable \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/bunset\">https://en.wikichip.org/wiki/mirc/commands/bunset</a>", "contents": "bunset ${1:<ˇRequired: &binvar>} ${2:[ˇOptional: &binvar &binvar ...]}" }
,{ "trigger": " /bwrite Write binary data to file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/bwrite\">https://en.wikichip.org/wiki/mirc/commands/bwrite</a>", "contents": "bwrite ${1:[ˇOptional: -act]} ${2:<ˇRequired: \"filename\">} ${3:<ˇRequired: int_start_pos>} ${4:ˇRequired: int_length>} ${5:<ˇRequired: text|%var|&binvar>}" }
,{ "trigger": " /channel Open channel central \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/channel\">https://en.wikichip.org/wiki/mirc/commands/channel</a>", "contents": "channel ${1:[ˇOptional: #channel]}" }
,{ "trigger": " /clear Clear buffer of window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/clear\">https://en.wikichip.org/wiki/mirc/commands/clear</a>", "contents": "clear ${1:[ˇOptional: -sghlcn]} ${2:[ˇOptional: @window]}" }
,{ "trigger": " /clearall Clear buffer of all windows \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/clearall\">https://en.wikichip.org/wiki/mirc/commands/clearall</a>", "contents": "clearall ${1:[ˇOptional: -asnqmtgu]}" }
,{ "trigger": " /clearial Clear IAL \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/clearial\">https://en.wikichip.org/wiki/mirc/commands/clearial</a>", "contents": "clearial ${1:[ˇOptional: str_nick]}" }
,{ "trigger": " /cline Set color of line in nicklist or @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/cline\">https://en.wikichip.org/wiki/mirc/commands/cline</a>", "contents": "cline ${1:[ˇOptional: -hrmlt]} ${2:[ˇOptional: int_color_code]} ${3:<ˇRequired: @window/#channel>} ${4:<ˇRequired: line_number>}" }
,{ "trigger": " /clipboard Copy text to clipboard \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/clipboard\">https://en.wikichip.org/wiki/mirc/commands/clipboard</a>", "contents": "clipboard ${1:[ˇOptional: -an]} ${2:<ˇRequired: str_text>}" }
,{ "trigger": " /close Close windows of specified type \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/close\">https://en.wikichip.org/wiki/mirc/commands/close</a>", "contents": "close ${1:<ˇRequired: -ticfgms@[id]axdnu | -cNfNsNgN>} ${2:[ˇOptional: name1 name2 ...]}" }
,{ "trigger": " /closemsg Close all or specified query window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/closemsg\">https://en.wikichip.org/wiki/mirc/commands/closemsg</a>", "contents": "closemsg ${1:[ˇOptional: str_nick]}" }
,{ "trigger": " /cnick Set color options for nick in addressbook \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/cnick\">https://en.wikichip.org/wiki/mirc/commands/cnick</a>", "contents": "cnick ${1:[ˇOptional: -rfaniovpylNmNsN]} ${2:[ˇOptional: str_nick_or_host]} ${3:[ˇOptional: int_color_code]} ${4:[ˇOptional: modes_~&@%+]} ${5:[ˇOptional: str_int_levels]}" }
,{ "trigger": " /color Set color setting (same as /colour) \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/color\">https://en.wikichip.org/wiki/mirc/commands/color</a>", "contents": "color ${1:<ˇRequired: Name>} ${2:<ˇRequired: int_Nth_color>} ${3:ˇORˇ <ˇRequired: int_Nth_color>} ${4:<ˇRequired: \\$RGB(n,n,n)>}" }
,{ "trigger": " /colour Set color setting (same as /color) \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/colour\">https://en.wikichip.org/wiki/mirc/commands/colour</a>", "contents": "colour" }
,{ "trigger": " /comclose Close an existing COM connection \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/comclose\">https://en.wikichip.org/wiki/mirc/commands/comclose</a>", "contents": "comclose" }
,{ "trigger": " /comlist Get list of all open COM object connections \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/comlist\">https://en.wikichip.org/wiki/mirc/commands/comlist</a>", "contents": "comlist" }
,{ "trigger": " /comopen Open a com connection \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/comopen\">https://en.wikichip.org/wiki/mirc/commands/comopen</a>", "contents": "comopen" }
,{ "trigger": " /comreg Register/Unregister a COM with windows \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/comreg\">https://en.wikichip.org/wiki/mirc/commands/comreg</a>", "contents": "comreg" }
,{ "trigger": " /continue Jump to beginning of a loop \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/continue\">https://en.wikichip.org/wiki/mirc/commands/continue</a>", "contents": "continue" }
,{ "trigger": " /copy Copy source dir/file to destination \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/copy\">https://en.wikichip.org/wiki/mirc/commands/copy</a>", "contents": "copy" }
,{ "trigger": " /creq Modify DCC Chat options \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/creq\">https://en.wikichip.org/wiki/mirc/commands/creq</a>", "contents": "creq" }
,{ "trigger": " /ctcp Send a CTCP request \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ctcp\">https://en.wikichip.org/wiki/mirc/commands/ctcp</a>", "contents": "ctcp" }
,{ "trigger": " /ctcpreply Send a CTCP reply \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ctcpreply\">https://en.wikichip.org/wiki/mirc/commands/ctcpreply</a>", "contents": "ctcpreply" }
,{ "trigger": " /ctcps Set or display status of CTCP event processing \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ctcps\">https://en.wikichip.org/wiki/mirc/commands/ctcps</a>", "contents": "ctcps" }
,{ "trigger": " /dcc Send DCC request \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/dcc\">https://en.wikichip.org/wiki/mirc/commands/dcc</a>", "contents": "dcc" }
,{ "trigger": " /dccserver Turn DCC server on/off \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/dccserver\">https://en.wikichip.org/wiki/mirc/commands/dccserver</a>", "contents": "dccserver" }
,{ "trigger": " /dde Create DDE connection \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/dde\">https://en.wikichip.org/wiki/mirc/commands/dde</a>", "contents": "dde" }
,{ "trigger": " /ddeserver Turn DDE server on/off \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ddeserver\">https://en.wikichip.org/wiki/mirc/commands/ddeserver</a>", "contents": "ddeserver" }
,{ "trigger": " /debug Output raw server messages to file/window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/debug\">https://en.wikichip.org/wiki/mirc/commands/debug</a>", "contents": "debug" }
,{ "trigger": " /dec Decrease variable by N amount \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/dec\">https://en.wikichip.org/wiki/mirc/commands/dec</a>", "contents": "dec" }
,{ "trigger": " /describe Send action to channel/person (also see /me) \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/describe\">https://en.wikichip.org/wiki/mirc/commands/describe</a>", "contents": "describe" }
,{ "trigger": " /dialog Create a dialog window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/dialog\">https://en.wikichip.org/wiki/mirc/commands/dialog</a>", "contents": "dialog" }
,{ "trigger": " /did Modify dialog controls \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/did\">https://en.wikichip.org/wiki/mirc/commands/did</a>", "contents": "did" }
,{ "trigger": " /didtok Add list of values to a dialog control \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/didtok\">https://en.wikichip.org/wiki/mirc/commands/didtok</a>", "contents": "didtok" }
,{ "trigger": " /disable Disable a #group in all scripts \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/disable\">https://en.wikichip.org/wiki/mirc/commands/disable</a>", "contents": "disable" }
,{ "trigger": " /disconnect Disconnect from current server \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/disconnect\">https://en.wikichip.org/wiki/mirc/commands/disconnect</a>", "contents": "disconnect" }
,{ "trigger": " /dlevel Set default userlevel for everyone \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/dlevel\">https://en.wikichip.org/wiki/mirc/commands/dlevel</a>", "contents": "dlevel" }
,{ "trigger": " /dline Delete line from a @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/dline\">https://en.wikichip.org/wiki/mirc/commands/dline</a>", "contents": "dline" }
,{ "trigger": " /dll Call a function from a .DLL file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/dll\">https://en.wikichip.org/wiki/mirc/commands/dll</a>", "contents": "dll" }
,{ "trigger": " /dns Perform DNS lookup on a user/address \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/dns\">https://en.wikichip.org/wiki/mirc/commands/dns</a>", "contents": "dns" }
,{ "trigger": " /donotdisturb Allows to temporarily disable all visible notifications (sounds, tips, tray, etc) \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/donotdisturb\">https://en.wikichip.org/wiki/mirc/commands/donotdisturb</a>", "contents": "donotdisturb" }
,{ "trigger": " /dqwindow Enable/Disable/Show/Hide Dedicated query window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/dqwindow\">https://en.wikichip.org/wiki/mirc/commands/dqwindow</a>", "contents": "dqwindow" }
,{ "trigger": " /drawcopy Copy part of picture to different position in @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/drawcopy\">https://en.wikichip.org/wiki/mirc/commands/drawcopy</a>", "contents": "drawcopy" }
,{ "trigger": " /drawdot Draw dot in @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/drawdot\">https://en.wikichip.org/wiki/mirc/commands/drawdot</a>", "contents": "drawdot" }
,{ "trigger": " /drawfill Draw and fill an area in @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/drawfill\">https://en.wikichip.org/wiki/mirc/commands/drawfill</a>", "contents": "drawfill" }
,{ "trigger": " /drawline Draw line in @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/drawline\">https://en.wikichip.org/wiki/mirc/commands/drawline</a>", "contents": "drawline" }
,{ "trigger": " /drawpic Draw picture in @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/drawpic\">https://en.wikichip.org/wiki/mirc/commands/drawpic</a>", "contents": "drawpic" }
,{ "trigger": " /drawrect Draw rectangle in @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/drawrect\">https://en.wikichip.org/wiki/mirc/commands/drawrect</a>", "contents": "drawrect" }
,{ "trigger": " /drawreplace Replace color1 with color2 in @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/drawreplace\">https://en.wikichip.org/wiki/mirc/commands/drawreplace</a>", "contents": "drawreplace" }
,{ "trigger": " /drawrot Rotate area of bitmap in @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/drawrot\">https://en.wikichip.org/wiki/mirc/commands/drawrot</a>", "contents": "drawrot" }
,{ "trigger": " /drawsave Save picture in @window to a file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/drawsave\">https://en.wikichip.org/wiki/mirc/commands/drawsave</a>", "contents": "drawsave" }
,{ "trigger": " /drawscroll Scroll region in @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/drawscroll\">https://en.wikichip.org/wiki/mirc/commands/drawscroll</a>", "contents": "drawscroll" }
,{ "trigger": " /drawsize Extend bitmap size of @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/drawsize\">https://en.wikichip.org/wiki/mirc/commands/drawsize</a>", "contents": "drawsize" }
,{ "trigger": " /drawtext Draw text inside @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/drawtext\">https://en.wikichip.org/wiki/mirc/commands/drawtext</a>", "contents": "drawtext" }
,{ "trigger": " /ebeeps Enable/Disable 'event beeps' sound \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ebeeps\">https://en.wikichip.org/wiki/mirc/commands/ebeeps</a>", "contents": "ebeeps" }
,{ "trigger": " /echo Print text to a channel or @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/echo\">https://en.wikichip.org/wiki/mirc/commands/echo</a>", "contents": "echo" }
,{ "trigger": " /editbox Set text inside of editbox to a value \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/editbox\">https://en.wikichip.org/wiki/mirc/commands/editbox</a>", "contents": "editbox" }
,{ "trigger": " /else Logical construct used in IF statements \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/else\">https://en.wikichip.org/wiki/mirc/commands/else</a>", "contents": "else" }
,{ "trigger": " /elseif Logical construct used in IF statements \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/elseif\">https://en.wikichip.org/wiki/mirc/commands/elseif</a>", "contents": "elseif" }
,{ "trigger": " /emailaddr Modify email address shown in connect dialog \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/emailaddr\">https://en.wikichip.org/wiki/mirc/commands/emailaddr</a>", "contents": "emailaddr" }
,{ "trigger": " /enable Enable a #group in all scripts \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/enable\">https://en.wikichip.org/wiki/mirc/commands/enable</a>", "contents": "enable" }
,{ "trigger": " /events Enable/Disable remote events processing \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/events\">https://en.wikichip.org/wiki/mirc/commands/events</a>", "contents": "events" }
,{ "trigger": " /exit Exit mIRC \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/exit\">https://en.wikichip.org/wiki/mirc/commands/exit</a>", "contents": "exit" }
,{ "trigger": " /fclose Close file open window triggered from /fopen \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/fclose\">https://en.wikichip.org/wiki/mirc/commands/fclose</a>", "contents": "fclose" }
,{ "trigger": " /filter Scan src for *matchtext* and output it to dst \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/filter\">https://en.wikichip.org/wiki/mirc/commands/filter</a>", "contents": "filter" }
,{ "trigger": " /findtext Search active window for text \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/findtext\">https://en.wikichip.org/wiki/mirc/commands/findtext</a>", "contents": "findtext" }
,{ "trigger": " /finger Send finger request to nick \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/finger\">https://en.wikichip.org/wiki/mirc/commands/finger</a>", "contents": "finger" }
,{ "trigger": " /firewall Set mIRC firewall settings \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/firewall\">https://en.wikichip.org/wiki/mirc/commands/firewall</a>", "contents": "firewall" }
,{ "trigger": " /flash Flash mIRC titlebar/tray \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/flash\">https://en.wikichip.org/wiki/mirc/commands/flash</a>", "contents": "flash" }
,{ "trigger": " /flist List all or matching files that are /fopen \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/flist\">https://en.wikichip.org/wiki/mirc/commands/flist</a>", "contents": "flist" }
,{ "trigger": " /flood Set mIRC flood settings \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/flood\">https://en.wikichip.org/wiki/mirc/commands/flood</a>", "contents": "flood" }
,{ "trigger": " /flush Clear user list of invalid nicknames \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/flush\">https://en.wikichip.org/wiki/mirc/commands/flush</a>", "contents": "flush" }
,{ "trigger": " /flushini Flush INI file to hard disk \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/flushini\">https://en.wikichip.org/wiki/mirc/commands/flushini</a>", "contents": "flushini" }
,{ "trigger": " /fnord Easter Egg: Echos \"Nothing to see here\" \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/fnord\">https://en.wikichip.org/wiki/mirc/commands/fnord</a>", "contents": "fnord" }
,{ "trigger": " /font Set font of current window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/font\">https://en.wikichip.org/wiki/mirc/commands/font</a>", "contents": "font" }
,{ "trigger": " /fopen Open a filename with a handle \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/fopen\">https://en.wikichip.org/wiki/mirc/commands/fopen</a>", "contents": "fopen" }
,{ "trigger": " /fseek Set pointer in fopen handle to a position \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/fseek\">https://en.wikichip.org/wiki/mirc/commands/fseek</a>", "contents": "fseek" }
,{ "trigger": " /fsend Display or set dcc send on/off \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/fsend\">https://en.wikichip.org/wiki/mirc/commands/fsend</a>", "contents": "fsend" }
,{ "trigger": " /fserve Initiate DCC fileserver with user \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/fserve\">https://en.wikichip.org/wiki/mirc/commands/fserve</a>", "contents": "fserve" }
,{ "trigger": " /fullname Change fullname shown in connect dialog \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/fullname\">https://en.wikichip.org/wiki/mirc/commands/fullname</a>", "contents": "fullname" }
,{ "trigger": " /fupdate Set delay for window/channel text refresh \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/fupdate\">https://en.wikichip.org/wiki/mirc/commands/fupdate</a>", "contents": "fupdate" }
,{ "trigger": " /fwrite Write text or binvar to a file fopen handle \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/fwrite\">https://en.wikichip.org/wiki/mirc/commands/fwrite</a>", "contents": "fwrite" }
,{ "trigger": " /ghide Hides a previously loaded agent \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ghide\">https://en.wikichip.org/wiki/mirc/commands/ghide</a>", "contents": "ghide" }
,{ "trigger": " /gload Load an agent \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/gload\">https://en.wikichip.org/wiki/mirc/commands/gload</a>", "contents": "gload" }
,{ "trigger": " /gmove Moves an agent \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/gmove\">https://en.wikichip.org/wiki/mirc/commands/gmove</a>", "contents": "gmove" }
,{ "trigger": " /gopts Set options of a loaded agent \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/gopts\">https://en.wikichip.org/wiki/mirc/commands/gopts</a>", "contents": "gopts" }
,{ "trigger": " /goto Jump to a section in code or loop \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/goto\">https://en.wikichip.org/wiki/mirc/commands/goto</a>", "contents": "goto" }
,{ "trigger": " /gplay Make agent play an animation \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/gplay\">https://en.wikichip.org/wiki/mirc/commands/gplay</a>", "contents": "gplay" }
,{ "trigger": " /gpoint Make agent point to position \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/gpoint\">https://en.wikichip.org/wiki/mirc/commands/gpoint</a>", "contents": "gpoint" }
,{ "trigger": " /gqreq Enable/Disable agent script queueing \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/gqreq\">https://en.wikichip.org/wiki/mirc/commands/gqreq</a>", "contents": "gqreq" }
,{ "trigger": " /groups Display a list of #groups \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/groups\">https://en.wikichip.org/wiki/mirc/commands/groups</a>", "contents": "groups" }
,{ "trigger": " /gshow Display an agent \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/gshow\">https://en.wikichip.org/wiki/mirc/commands/gshow</a>", "contents": "gshow" }
,{ "trigger": " /gsize Resize an agent \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/gsize\">https://en.wikichip.org/wiki/mirc/commands/gsize</a>", "contents": "gsize" }
,{ "trigger": " /gstop Stop and remove all script queue from agent \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/gstop\">https://en.wikichip.org/wiki/mirc/commands/gstop</a>", "contents": "gstop" }
,{ "trigger": " /gtalk Make agent speak text \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/gtalk\">https://en.wikichip.org/wiki/mirc/commands/gtalk</a>", "contents": "gtalk" }
,{ "trigger": " /gunload Unload an agent \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/gunload\">https://en.wikichip.org/wiki/mirc/commands/gunload</a>", "contents": "gunload" }
,{ "trigger": " /guser Look up address of nick and add to userlist \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/guser\">https://en.wikichip.org/wiki/mirc/commands/guser</a>", "contents": "guser" }
,{ "trigger": " /hadd Insert key/value pair to hash table \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/hadd\">https://en.wikichip.org/wiki/mirc/commands/hadd</a>", "contents": "hadd" }
,{ "trigger": " /halt Immediately stop further processing script \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/halt\">https://en.wikichip.org/wiki/mirc/commands/halt</a>", "contents": "halt" }
,{ "trigger": " /haltdef Stop default processing of an event \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/haltdef\">https://en.wikichip.org/wiki/mirc/commands/haltdef</a>", "contents": "haltdef" }
,{ "trigger": " /hdec Decrement value in a hash table \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/hdec\">https://en.wikichip.org/wiki/mirc/commands/hdec</a>", "contents": "hdec" }
,{ "trigger": " /hdel Delete key/value pair in hash table \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/hdel\">https://en.wikichip.org/wiki/mirc/commands/hdel</a>", "contents": "hdel" }
,{ "trigger": " /help Display mIRC helpfile \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/help\">https://en.wikichip.org/wiki/mirc/commands/help</a>", "contents": "help" }
,{ "trigger": " /hfree Free/Destroy a hash table \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/hfree\">https://en.wikichip.org/wiki/mirc/commands/hfree</a>", "contents": "hfree" }
,{ "trigger": " /hinc Increment value in a hash table \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/hinc\">https://en.wikichip.org/wiki/mirc/commands/hinc</a>", "contents": "hinc" }
,{ "trigger": " /hload Load text file into already created hash table \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/hload\">https://en.wikichip.org/wiki/mirc/commands/hload</a>", "contents": "hload" }
,{ "trigger": " /hmake Create a hash table \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/hmake\">https://en.wikichip.org/wiki/mirc/commands/hmake</a>", "contents": "hmake" }
,{ "trigger": " /hop Part and join channel \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/hop\">https://en.wikichip.org/wiki/mirc/commands/hop</a>", "contents": "hop" }
,{ "trigger": " /hotlink Override popups menu on right clicking word \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/hotlink\">https://en.wikichip.org/wiki/mirc/commands/hotlink</a>", "contents": "hotlink" }
,{ "trigger": " /hsave Save a hash table to a file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/hsave\">https://en.wikichip.org/wiki/mirc/commands/hsave</a>", "contents": "hsave" }
,{ "trigger": " /ial Set Internal-Address-List on/off \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ial\">https://en.wikichip.org/wiki/mirc/commands/ial</a>", "contents": "ial" }
,{ "trigger": " /ialclear Clear Interal-Address-List data \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ialclear\">https://en.wikichip.org/wiki/mirc/commands/ialclear</a>", "contents": "ialclear" }
,{ "trigger": " /ialfill Fills IAL by sending /WHO #chan to the server and processing the WHO reply \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ialfill\">https://en.wikichip.org/wiki/mirc/commands/ialfill</a>", "contents": "ialfill" }
,{ "trigger": " /ialmark Mark an IAL entry with a value \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ialmark\">https://en.wikichip.org/wiki/mirc/commands/ialmark</a>", "contents": "ialmark" }
,{ "trigger": " /identd Enable/Disable built-in identd server \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/identd\">https://en.wikichip.org/wiki/mirc/commands/identd</a>", "contents": "identd" }
,{ "trigger": " /if Logical condition operation used in scripts \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/if\">https://en.wikichip.org/wiki/mirc/commands/if</a>", "contents": "if" }
,{ "trigger": " /ignore Ignore a user/address \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ignore\">https://en.wikichip.org/wiki/mirc/commands/ignore</a>", "contents": "ignore" }
,{ "trigger": " /iline Insert line into @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/iline\">https://en.wikichip.org/wiki/mirc/commands/iline</a>", "contents": "iline" }
,{ "trigger": " /inc Increment variable by N amount \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/inc\">https://en.wikichip.org/wiki/mirc/commands/inc</a>", "contents": "inc" }
,{ "trigger": " /iuser Set or remove info line in userlist \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/iuser\">https://en.wikichip.org/wiki/mirc/commands/iuser</a>", "contents": "iuser" }
,{ "trigger": " /join Join a channel \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/join\">https://en.wikichip.org/wiki/mirc/commands/join</a>", "contents": "join" }
,{ "trigger": " /langdll Return the currently loaded language dll \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://forums.mirc.com/ubbthreads.php/topics/272687/language-files-translations\">https://forums.mirc.com/ubbthreads.php/topics/272687/language-files-translations</a>", "contents": "langdll" }
,{ "trigger": " /leave Leave/part a channel (same as /part) \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/leave\">https://en.wikichip.org/wiki/mirc/commands/leave</a>", "contents": "leave" }
,{ "trigger": " /linesep Print line separator at a specified target \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/linesep\">https://en.wikichip.org/wiki/mirc/commands/linesep</a>", "contents": "linesep" }
,{ "trigger": " /links Display servers that are linked to current server \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/links\">https://en.wikichip.org/wiki/mirc/commands/links</a>", "contents": "links" }
,{ "trigger": " /list Display channel list \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/list\">https://en.wikichip.org/wiki/mirc/commands/list</a>", "contents": "list" }
,{ "trigger": " /load Load a script file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/load\">https://en.wikichip.org/wiki/mirc/commands/load</a>", "contents": "load" }
,{ "trigger": " /loadbuf Load buffer from filename to channel/@window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/loadbuf\">https://en.wikichip.org/wiki/mirc/commands/loadbuf</a>", "contents": "loadbuf" }
,{ "trigger": " /localinfo Looks up and sets local settings \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/localinfo\">https://en.wikichip.org/wiki/mirc/commands/localinfo</a>", "contents": "localinfo" }
,{ "trigger": " /log Turn on/off logging to a file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/log\">https://en.wikichip.org/wiki/mirc/commands/log</a>", "contents": "log" }
,{ "trigger": " /logview Display text file in mIRC \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/logview\">https://en.wikichip.org/wiki/mirc/commands/logview</a>", "contents": "logview" }
,{ "trigger": " /markasread Marks the specified window name as read or all windows on a server connection. \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://www.mirc.com/help/html/index.html?mirc_commands.html#cmd_markasread\">https://www.mirc.com/help/html/index.html?mirc_commands.html#cmd_markasread</a>", "contents": "markasread" }
,{ "trigger": " /mdi Arrange MDI windows in tile or cascade \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/mdi\">https://en.wikichip.org/wiki/mirc/commands/mdi</a>", "contents": "mdi" }
,{ "trigger": " /me Send action to channel/person \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/me\">https://en.wikichip.org/wiki/mirc/commands/me</a>", "contents": "me" }
,{ "trigger": " /menubar Turn on/off or display menubar status \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/menubar\">https://en.wikichip.org/wiki/mirc/commands/menubar</a>", "contents": "menubar" }
,{ "trigger": " /mkdir Creates a new directory \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/mkdir\">https://en.wikichip.org/wiki/mirc/commands/mkdir</a>", "contents": "mkdir" }
,{ "trigger": " /mnick Change main nickname \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/mnick\">https://en.wikichip.org/wiki/mirc/commands/mnick</a>", "contents": "mnick" }
,{ "trigger": " /mode Change mode for nick/channel \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/mode\">https://en.wikichip.org/wiki/mirc/commands/mode</a>", "contents": "mode" }
,{ "trigger": " /msg Send message to channel/person \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/msg\">https://en.wikichip.org/wiki/mirc/commands/msg</a>", "contents": "msg" }
,{ "trigger": " /noop Discard/no operation \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/noop\">https://en.wikichip.org/wiki/mirc/commands/noop</a>", "contents": "noop" }
,{ "trigger": " /notice Send private message to nickname without opening a query window for either party \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/notice\">https://en.wikichip.org/wiki/mirc/commands/notice</a>", "contents": "notice" }
,{ "trigger": " /notify Manage the notify feature \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/notify\">https://en.wikichip.org/wiki/mirc/commands/notify</a>", "contents": "notify" }
,{ "trigger": " /omsg Broadcast message to OPs on chans you are an OP \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/omsg\">https://en.wikichip.org/wiki/mirc/commands/omsg</a>", "contents": "omsg" }
,{ "trigger": " /onotice Broadcast notice to OPs on chans you are an OP \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/onotice\">https://en.wikichip.org/wiki/mirc/commands/onotice</a>", "contents": "onotice" }
,{ "trigger": " /parseline Inject text as if they are being sent/received \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/parseline\">https://en.wikichip.org/wiki/mirc/commands/parseline</a>", "contents": "parseline" }
,{ "trigger": " /part Leave/part a channel \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/part\">https://en.wikichip.org/wiki/mirc/commands/part</a>", "contents": "part" }
,{ "trigger": " /partall Leave/part all channels \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/partall\">https://en.wikichip.org/wiki/mirc/commands/partall</a>", "contents": "partall" }
,{ "trigger": " /pdcc Send DCC packets without waiting for acks \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/pdcc\">https://en.wikichip.org/wiki/mirc/commands/pdcc</a>", "contents": "pdcc" }
,{ "trigger": " /perform Enable/Disable perform section in options \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/perform\">https://en.wikichip.org/wiki/mirc/commands/perform</a>", "contents": "perform" }
,{ "trigger": " /play Output contents of a file to channel/user \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/play\">https://en.wikichip.org/wiki/mirc/commands/play</a>", "contents": "play" }
,{ "trigger": " /playctrl Open Play Central window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/playctrl\">https://en.wikichip.org/wiki/mirc/commands/playctrl</a>", "contents": "playctrl" }
,{ "trigger": " /pop Perform delayed op on a user \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/pop\">https://en.wikichip.org/wiki/mirc/commands/pop</a>", "contents": "pop" }
,{ "trigger": " /privmsg Send private message to server with no restriction \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/privmsg\">https://en.wikichip.org/wiki/mirc/commands/privmsg</a>", "contents": "privmsg" }
,{ "trigger": " /protect Manage the built-in protect list \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/protect\">https://en.wikichip.org/wiki/mirc/commands/protect</a>", "contents": "protect" }
,{ "trigger": " /proxy Change firewall settings \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/proxy\">https://en.wikichip.org/wiki/mirc/commands/proxy</a>", "contents": "proxy" }
,{ "trigger": " /pvoice Perform delayed voice on a user \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/pvoice\">https://en.wikichip.org/wiki/mirc/commands/pvoice</a>", "contents": "pvoice" }
,{ "trigger": " /qme Send action to all query windows \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/qme\">https://en.wikichip.org/wiki/mirc/commands/qme</a>", "contents": "qme" }
,{ "trigger": " /qmsg Send message to all query windows \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/qmsg\">https://en.wikichip.org/wiki/mirc/commands/qmsg</a>", "contents": "qmsg" }
,{ "trigger": " /query Open query window for online/offline user \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/query\">https://en.wikichip.org/wiki/mirc/commands/query</a>", "contents": "query" }
,{ "trigger": " /queryrn Change nickname of open query window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/queryrn\">https://en.wikichip.org/wiki/mirc/commands/queryrn</a>", "contents": "queryrn" }
,{ "trigger": " /quit Disconnect from IRC \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/quit\">https://en.wikichip.org/wiki/mirc/commands/quit</a>", "contents": "quit" }
,{ "trigger": " /quote Send raw message to server (use /raw instead) \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/quote\">https://en.wikichip.org/wiki/mirc/commands/quote</a>", "contents": "quote" }
,{ "trigger": " /raw Send a raw message to server \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/raw\">https://en.wikichip.org/wiki/mirc/commands/raw</a>", "contents": "raw" }
,{ "trigger": " /registration Open the mIRC registration (enter serial #) \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/registration\">https://en.wikichip.org/wiki/mirc/commands/registration</a>", "contents": "registration" }
,{ "trigger": " /reload Reload a script file without triggering load event \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/reload\">https://en.wikichip.org/wiki/mirc/commands/reload</a>", "contents": "reload" }
,{ "trigger": " /remini Delete section or item from INI file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/remini\">https://en.wikichip.org/wiki/mirc/commands/remini</a>", "contents": "remini" }
,{ "trigger": " /remote Toggle remote, CTCPS, and raw events processing \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/remote\">https://en.wikichip.org/wiki/mirc/commands/remote</a>", "contents": "remote" }
,{ "trigger": " /remove Delete a file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/remove\">https://en.wikichip.org/wiki/mirc/commands/remove</a>", "contents": "remove" }
,{ "trigger": " /rename Rename a file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/rename\">https://en.wikichip.org/wiki/mirc/commands/rename</a>", "contents": "rename" }
,{ "trigger": " /renwin Rename a @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/renwin\">https://en.wikichip.org/wiki/mirc/commands/renwin</a>", "contents": "renwin" }
,{ "trigger": " /reseterror Reset error catches with :error label \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/reseterror\">https://en.wikichip.org/wiki/mirc/commands/reseterror</a>", "contents": "reseterror" }
,{ "trigger": " /resetidle Reset $idle to 0 \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/resetidle\">https://en.wikichip.org/wiki/mirc/commands/resetidle</a>", "contents": "resetidle" }
,{ "trigger": " /return Return a value and exit subroutine \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/return\">https://en.wikichip.org/wiki/mirc/commands/return</a>", "contents": "return" }
,{ "trigger": " /returnex Return a value (if exist) and exit subroutine \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/returnex\">https://en.wikichip.org/wiki/mirc/commands/returnex</a>", "contents": "returnex" }
,{ "trigger": " /rlevel Remove users with specified level from userlist \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/rlevel\">https://en.wikichip.org/wiki/mirc/commands/rlevel</a>", "contents": "rlevel" }
,{ "trigger": " /rline Replace line in @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/rline\">https://en.wikichip.org/wiki/mirc/commands/rline</a>", "contents": "rline" }
,{ "trigger": " /rmdir Delete empty directory (error if nonempty) \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/rmdir\">https://en.wikichip.org/wiki/mirc/commands/rmdir</a>", "contents": "rmdir" }
,{ "trigger": " /run Execute a file with default application \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/run\">https://en.wikichip.org/wiki/mirc/commands/run</a>", "contents": "run" }
,{ "trigger": " /ruser Remove a user or level from a user \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ruser\">https://en.wikichip.org/wiki/mirc/commands/ruser</a>", "contents": "ruser" }
,{ "trigger": " /save Save popups/users/variables to file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/save\">https://en.wikichip.org/wiki/mirc/commands/save</a>", "contents": "save" }
,{ "trigger": " /savebuf Save buffer to a file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/savebuf\">https://en.wikichip.org/wiki/mirc/commands/savebuf</a>", "contents": "savebuf" }
,{ "trigger": " /saveini Save or overwrite ini file to disk \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/saveini\">https://en.wikichip.org/wiki/mirc/commands/saveini</a>", "contents": "saveini" }
,{ "trigger": " /say Send message to current channel/window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/say\">https://en.wikichip.org/wiki/mirc/commands/say</a>", "contents": "say" }
,{ "trigger": " /scid Set associated context of script to cid \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/scid\">https://en.wikichip.org/wiki/mirc/commands/scid</a>", "contents": "scid" }
,{ "trigger": " /scon Set associated context of script to Nth window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/scon\">https://en.wikichip.org/wiki/mirc/commands/scon</a>", "contents": "scon" }
,{ "trigger": " /server Connect to a server \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/server\">https://en.wikichip.org/wiki/mirc/commands/server</a>", "contents": "server" }
,{ "trigger": " /set Set a %variable to a value \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/set\">https://en.wikichip.org/wiki/mirc/commands/set</a>", "contents": "set" }
,{ "trigger": " /setlayer Set transparency of a window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/setlayer\">https://en.wikichip.org/wiki/mirc/commands/setlayer</a>", "contents": "setlayer" }
,{ "trigger": " /showmirc Manipulate main mIRC window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/showmirc\">https://en.wikichip.org/wiki/mirc/commands/showmirc</a>", "contents": "showmirc" }
,{ "trigger": " /signal Send signal to all loaded scripts \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/signal\">https://en.wikichip.org/wiki/mirc/commands/signal</a>", "contents": "signal" }
,{ "trigger": " /sline Select line(s) in @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/sline\">https://en.wikichip.org/wiki/mirc/commands/sline</a>", "contents": "sline" }
,{ "trigger": " /sockaccept Accept a connection to a /socklisten port \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/sockaccept\">https://en.wikichip.org/wiki/mirc/commands/sockaccept</a>", "contents": "sockaccept" }
,{ "trigger": " /sockclose Close a connection of /socklisten \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/sockclose\">https://en.wikichip.org/wiki/mirc/commands/sockclose</a>", "contents": "sockclose" }
,{ "trigger": " /socklist Display list all open sockets \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/socklist\">https://en.wikichip.org/wiki/mirc/commands/socklist</a>", "contents": "socklist" }
,{ "trigger": " /socklisten Listen on a port for connections \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/socklisten\">https://en.wikichip.org/wiki/mirc/commands/socklisten</a>", "contents": "socklisten" }
,{ "trigger": " /sockmark Assign data to a socket for later reference \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/sockmark\">https://en.wikichip.org/wiki/mirc/commands/sockmark</a>", "contents": "sockmark" }
,{ "trigger": " /sockopen Open a connection to ip/host:port \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/sockopen\">https://en.wikichip.org/wiki/mirc/commands/sockopen</a>", "contents": "sockopen" }
,{ "trigger": " /sockpause Pause or restarted socket when reading data \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/sockpause\">https://en.wikichip.org/wiki/mirc/commands/sockpause</a>", "contents": "sockpause" }
,{ "trigger": " /sockread Read bytes from socket into variable \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/sockread\">https://en.wikichip.org/wiki/mirc/commands/sockread</a>", "contents": "sockread" }
,{ "trigger": " /sockrename Rename an existing socket connection \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/sockrename\">https://en.wikichip.org/wiki/mirc/commands/sockrename</a>", "contents": "sockrename" }
,{ "trigger": " /sockudp Send UDP data to ip/host:port of a /sockopen \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/sockudp\">https://en.wikichip.org/wiki/mirc/commands/sockudp</a>", "contents": "sockudp" }
,{ "trigger": " /sockwrite Send TCP data to ip/host:port of a /sockopen \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/sockwrite\">https://en.wikichip.org/wiki/mirc/commands/sockwrite</a>", "contents": "sockwrite" }
,{ "trigger": " /sound Send sound to nick/channel \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/sound\">https://en.wikichip.org/wiki/mirc/commands/sound</a>", "contents": "sound" }
,{ "trigger": " /speak Speak text audibly \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/speak\">https://en.wikichip.org/wiki/mirc/commands/speak</a>", "contents": "speak" }
,{ "trigger": " /splay Play an audio file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/splay\">https://en.wikichip.org/wiki/mirc/commands/splay</a>", "contents": "splay" }
,{ "trigger": " /sreq Modify mIRC DCC send options \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/sreq\">https://en.wikichip.org/wiki/mirc/commands/sreq</a>", "contents": "sreq" }
,{ "trigger": " /strip Strip control-codes from text \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/strip\">https://en.wikichip.org/wiki/mirc/commands/strip</a>", "contents": "strip" }
,{ "trigger": " /switchbar Set switchbar on/off or display current status \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/switchbar\">https://en.wikichip.org/wiki/mirc/commands/switchbar</a>", "contents": "switchbar" }
,{ "trigger": " /timer Create a timer to execute code \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/timer\">https://en.wikichip.org/wiki/mirc/commands/timer</a>", "contents": "timer" }
,{ "trigger": " /timers Show current timers \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/timers\">https://en.wikichip.org/wiki/mirc/commands/timers</a>", "contents": "timers" }
,{ "trigger": " /timestamp Enable/Disable timestamps or set format \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/timestamp\">https://en.wikichip.org/wiki/mirc/commands/timestamp</a>", "contents": "timestamp" }
,{ "trigger": " /tip Change text of active balloon tip or close \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/tip\">https://en.wikichip.org/wiki/mirc/commands/tip</a>", "contents": "tip" }
,{ "trigger": " /tips Enable/Disable tips options \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/tips\">https://en.wikichip.org/wiki/mirc/commands/tips</a>", "contents": "tips" }
,{ "trigger": " /titlebar Change titlebar of mIRC window or @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/titlebar\">https://en.wikichip.org/wiki/mirc/commands/titlebar</a>", "contents": "titlebar" }
,{ "trigger": " /tnick Change IRC nick without changing main/alt nick \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/tnick\">https://en.wikichip.org/wiki/mirc/commands/tnick</a>", "contents": "tnick" }
,{ "trigger": " /tokenize Create tokenize values for $1, $2, etc. \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/tokenize\">https://en.wikichip.org/wiki/mirc/commands/tokenize</a>", "contents": "tokenize" }
,{ "trigger": " /toolbar Modify toolbar \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/toolbar\">https://en.wikichip.org/wiki/mirc/commands/toolbar</a>", "contents": "toolbar" }
,{ "trigger": " /topic Change or display the current topic for a #channel \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/topic\">https://en.wikichip.org/wiki/mirc/commands/topic</a>", "contents": "topic" }
,{ "trigger": " /tray Modify tray settings \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/tray\">https://en.wikichip.org/wiki/mirc/commands/tray</a>", "contents": "tray" }
,{ "trigger": " /treebar Enable/Disable treebar \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/treebar\">https://en.wikichip.org/wiki/mirc/commands/treebar</a>", "contents": "treebar" }
,{ "trigger": " /ulist Display list levels of users based on criteria \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/ulist\">https://en.wikichip.org/wiki/mirc/commands/ulist</a>", "contents": "ulist" }
,{ "trigger": " /unload Unload a script \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/unload\">https://en.wikichip.org/wiki/mirc/commands/unload</a>", "contents": "unload" }
,{ "trigger": " /unset Unset/delete a %variable \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/unset\">https://en.wikichip.org/wiki/mirc/commands/unset</a>", "contents": "unset" }
,{ "trigger": " /unsetall Unset/delete all %variables \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/unsetall\">https://en.wikichip.org/wiki/mirc/commands/unsetall</a>", "contents": "unsetall" }
,{ "trigger": " /updatenl Force update of IAL \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/updatenl\">https://en.wikichip.org/wiki/mirc/commands/updatenl</a>", "contents": "updatenl" }
,{ "trigger": " /url Enable/Disable URL catcher or open URL \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/url\">https://en.wikichip.org/wiki/mirc/commands/url</a>", "contents": "url" }
,{ "trigger": " /username Modify current username or display current \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/username\">https://en.wikichip.org/wiki/mirc/commands/username</a>", "contents": "username" }
,{ "trigger": " /uwho Lookup and display userinfo in address book \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/uwho\">https://en.wikichip.org/wiki/mirc/commands/uwho</a>", "contents": "uwho" }
,{ "trigger": " /var Create/replace local scope variables \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/var\">https://en.wikichip.org/wiki/mirc/commands/var</a>", "contents": "var" }
,{ "trigger": " /vcadd Add voice command for Speech Software \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/vcadd\">https://en.wikichip.org/wiki/mirc/commands/vcadd</a>", "contents": "vcadd" }
,{ "trigger": " /vcmd Enable voice commands for Speech Software \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/vcmd\">https://en.wikichip.org/wiki/mirc/commands/vcmd</a>", "contents": "vcmd" }
,{ "trigger": " /vcrem Remove voice comand from voice command list \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/vcrem\">https://en.wikichip.org/wiki/mirc/commands/vcrem</a>", "contents": "vcrem" }
,{ "trigger": " /vmsg Send a message to all voiced users on a channel \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/vmsg\">https://en.wikichip.org/wiki/mirc/commands/vmsg</a>", "contents": "vmsg" }
,{ "trigger": " /vnotice Send a notice to all voiced users on a channel \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/vnotice\">https://en.wikichip.org/wiki/mirc/commands/vnotice</a>", "contents": "vnotice" }
,{ "trigger": " /vol Set volume on system \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/vol\">https://en.wikichip.org/wiki/mirc/commands/vol</a>", "contents": "vol" }
,{ "trigger": " /wallchops Send notice to all ops on a channel \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/wallchops\">https://en.wikichip.org/wiki/mirc/commands/wallchops</a>", "contents": "wallchops" }
,{ "trigger": " /wallvoices Send notice to all voices on a channel \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/wallvoices\">https://en.wikichip.org/wiki/mirc/commands/wallvoices</a>", "contents": "wallvoices" }
,{ "trigger": " /while Loop block of code until condition \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/while\">https://en.wikichip.org/wiki/mirc/commands/while</a>", "contents": "while" }
,{ "trigger": " /window Create or manipulate custom @window \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/window\">https://en.wikichip.org/wiki/mirc/commands/window</a>", "contents": "window" }
,{ "trigger": " /winhelp Open Microsoft online help files (.chm/.hlp) \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/winhelp\">https://en.wikichip.org/wiki/mirc/commands/winhelp</a>", "contents": "winhelp" }
,{ "trigger": " /write Write to a file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/write\">https://en.wikichip.org/wiki/mirc/commands/write</a>", "contents": "write" }
,{ "trigger": " /writeini Write to a section in an ini file \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/writeini\">https://en.wikichip.org/wiki/mirc/commands/writeini</a>", "contents": "writeini" }
,{ "trigger": " /xyzzy Easter Egg: Prints \"Nothing happens\" \t/", "kind": ["function","/","Command"], "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/commands/xyzzy\">https://en.wikichip.org/wiki/mirc/commands/xyzzy</a>", "contents": "xyzzy" }
// ###########################################################################################################################
// mIRC Identifiers
// ###########################################################################################################################
,{ "trigger": " $abook() Get info about users in nick list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$abook()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$abook\">https://en.wikichip.org/wiki/mirc/identifiers/$abook</a>" }
,{ "trigger": " $abs() Get absolute value of number \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$abs()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$abs\">https://en.wikichip.org/wiki/mirc/identifiers/$abs</a>" }
,{ "trigger": " $acos() Get arccosine of number \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$acos()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$acos\">https://en.wikichip.org/wiki/mirc/identifiers/$acos</a>" }
,{ "trigger": " $active Get full name of current active window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$active", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$active\">https://en.wikichip.org/wiki/mirc/identifiers/$active</a>" }
,{ "trigger": " $activecid Get connection id of current active window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$activecid", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$activecid\">https://en.wikichip.org/wiki/mirc/identifiers/$activecid</a>" }
,{ "trigger": " $activewid Get window id of current active window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$activewid", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$activewid\">https://en.wikichip.org/wiki/mirc/identifiers/$activewid</a>" }
,{ "trigger": " $adate Get current date in month/day/year format \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$adate", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$adate\">https://en.wikichip.org/wiki/mirc/identifiers/$adate</a>" }
,{ "trigger": " $address Get user@host of user \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$address", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$address\">https://en.wikichip.org/wiki/mirc/identifiers/$address</a>" }
,{ "trigger": " $addtok() Add token to a list of tokens if doesnt exist \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$addtok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$addtok\">https://en.wikichip.org/wiki/mirc/identifiers/$addtok</a>" }
,{ "trigger": " $addtokcs() Add token to a list of tokens (case sensitive) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$addtokcs()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$addtokcs\">https://en.wikichip.org/wiki/mirc/identifiers/$addtokcs</a>" }
,{ "trigger": " $agent() Get filename of Nth available agent \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$agent()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$agent\">https://en.wikichip.org/wiki/mirc/identifiers/$agent</a>" }
,{ "trigger": " $agentname Get name of agent \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$agentname", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$agentname\">https://en.wikichip.org/wiki/mirc/identifiers/$agentname</a>" }
,{ "trigger": " $agentstat Get status of user agent \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$agentstat", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$agentstat\">https://en.wikichip.org/wiki/mirc/identifiers/$agentstat</a>" }
,{ "trigger": " $agentver Get version of installed Microsoft Agent \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$agentver", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$agentver\">https://en.wikichip.org/wiki/mirc/identifiers/$agentver</a>" }
,{ "trigger": " $alias() Get filename of Nth loaded alias file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$alias()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$alias\">https://en.wikichip.org/wiki/mirc/identifiers/$alias</a>" }
,{ "trigger": " $and() Get AND operation of two numbers \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$and()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$and\">https://en.wikichip.org/wiki/mirc/identifiers/$and</a>" }
,{ "trigger": " $anick Get value of alternative nickname \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$anick", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$anick\">https://en.wikichip.org/wiki/mirc/identifiers/$anick</a>" }
,{ "trigger": " $ansi2mirc() Convert ANSI color codes to mIRC code \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ansi2mirc()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ansi2mirc\">https://en.wikichip.org/wiki/mirc/identifiers/$ansi2mirc</a>" }
,{ "trigger": " $aop() Get data from Auto-Op list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$aop()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$aop\">https://en.wikichip.org/wiki/mirc/identifiers/$aop</a>" }
,{ "trigger": " $appactive Get boolean $true/$false if mIRC is active \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$appactive", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$appactive\">https://en.wikichip.org/wiki/mirc/identifiers/$appactive</a>" }
,{ "trigger": " $appstate Get current state of mIRC (full, hidden, maximized, minimized, tray) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$appstate", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$appstate\">https://en.wikichip.org/wiki/mirc/identifiers/$appstate</a>" }
,{ "trigger": " $asc() Get unicode number of character \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$asc()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$asc\">https://en.wikichip.org/wiki/mirc/identifiers/$asc</a>" }
,{ "trigger": " $asctime Get time and date in a format \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$asctime", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$asctime\">https://en.wikichip.org/wiki/mirc/identifiers/$asctime</a>" }
,{ "trigger": " $asin() Get arcsine of N \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$asin()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$asin\">https://en.wikichip.org/wiki/mirc/identifiers/$asin</a>" }
,{ "trigger": " $atan() Get arctangent of N \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$atan()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$atan\">https://en.wikichip.org/wiki/mirc/identifiers/$atan</a>" }
,{ "trigger": " $atan2() Get arctangent of 2 short sides of right triangle \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$atan2()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$atan2\">https://en.wikichip.org/wiki/mirc/identifiers/$atan2</a>" }
,{ "trigger": " $auto() Replaced by $aop. $true if auto-op is enabled \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$auto()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$auto\">https://en.wikichip.org/wiki/mirc/identifiers/$auto</a>" }
,{ "trigger": " $avoice() Get data from Auto-Voice list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$avoice()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$avoice\">https://en.wikichip.org/wiki/mirc/identifiers/$avoice</a>" }
,{ "trigger": " $away Get boolean $true/false of own away status \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$away", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$away\">https://en.wikichip.org/wiki/mirc/identifiers/$away</a>" }
,{ "trigger": " $awaymsg Get current away message \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$awaymsg", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$awaymsg\">https://en.wikichip.org/wiki/mirc/identifiers/$awaymsg</a>" }
,{ "trigger": " $awaytime Get amount of time away has been set \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$awaytime", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$awaytime\">https://en.wikichip.org/wiki/mirc/identifiers/$awaytime</a>" }
,{ "trigger": " $banlist() Replaced by $ibl. Return Nth ban in ban list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$banlist()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$banlist\">https://en.wikichip.org/wiki/mirc/identifiers/$banlist</a>" }
,{ "trigger": " $banmask Get usr@addr of banned user in \"on\" events \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$banmask", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$banmask\">https://en.wikichip.org/wiki/mirc/identifiers/$banmask</a>" }
,{ "trigger": " $base() Get base-N of a number \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$base()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$base\">https://en.wikichip.org/wiki/mirc/identifiers/$base</a>" }
,{ "trigger": " $beta Get mIRC beta version or $null for non-beta \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$beta", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$beta\">https://en.wikichip.org/wiki/mirc/identifiers/$beta</a>" }
,{ "trigger": " $bfind() Searchs &binvar for a matching value \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$bfind()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$bfind\">https://en.wikichip.org/wiki/mirc/identifiers/$bfind</a>" }
,{ "trigger": " $bindip() Get info regarding available network adapter \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$bindip()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$bindip\">https://en.wikichip.org/wiki/mirc/identifiers/$bindip</a>" }
,{ "trigger": " $bitoff() Get N with the Bth bit set to 0 \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$bitoff()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$bitoff\">https://en.wikichip.org/wiki/mirc/identifiers/$bitoff</a>" }
,{ "trigger": " $biton() Get N with the Bth bit set to 1 \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$biton()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$biton\">https://en.wikichip.org/wiki/mirc/identifiers/$biton</a>" }
,{ "trigger": " $bits Get 32/16 bit version of mIRC application \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$bits", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$bits\">https://en.wikichip.org/wiki/mirc/identifiers/$bits</a>" }
,{ "trigger": " $bnick Get banned nick in \"on\" events \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$bnick", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$bnick\">https://en.wikichip.org/wiki/mirc/identifiers/$bnick</a>" }
,{ "trigger": " $bvar() Get contents of &binvar \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$bvar()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$bvar\">https://en.wikichip.org/wiki/mirc/identifiers/$bvar</a>" }
,{ "trigger": " $bytes() Format number into various byte forms \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$bytes()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$bytes\">https://en.wikichip.org/wiki/mirc/identifiers/$bytes</a>" }
,{ "trigger": " $calc() Perform math calculation \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$calc()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$calc\">https://en.wikichip.org/wiki/mirc/identifiers/$calc</a>" }
,{ "trigger": " $caller Get type of the caller (activex, dll, etc) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$caller", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$caller\">https://en.wikichip.org/wiki/mirc/identifiers/$caller</a>" }
,{ "trigger": " $cancel Returned when input box is cancelled \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$cancel", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$cancel\">https://en.wikichip.org/wiki/mirc/identifiers/$cancel</a>" }
,{ "trigger": " $cb Return contents of the Windows Clipboard \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$cb", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$cb\">https://en.wikichip.org/wiki/mirc/identifiers/$cb</a>" }
,{ "trigger": " $cbrt() Get cube root of N \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$cbrt()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$cbrt\">https://en.wikichip.org/wiki/mirc/identifiers/$cbrt</a>" }
,{ "trigger": " $cd Get current directory in fserve session \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$cd", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$cd\">https://en.wikichip.org/wiki/mirc/identifiers/$cd</a>" }
,{ "trigger": " $ceil() Get numerical value rounded to highest integer \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ceil()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ceil\">https://en.wikichip.org/wiki/mirc/identifiers/$ceil</a>" }
,{ "trigger": " $chan Get current channel in \"on\" events \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$chan", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$chan\">https://en.wikichip.org/wiki/mirc/identifiers/$chan</a>" }
,{ "trigger": " $chanmodes Get supported channel modes on a network \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$chanmodes", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$chanmodes\">https://en.wikichip.org/wiki/mirc/identifiers/$chanmodes</a>" }
,{ "trigger": " $chantypes Get supported channel prefixes on a network \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$chantypes", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$chantypes\">https://en.wikichip.org/wiki/mirc/identifiers/$chantypes</a>" }
,{ "trigger": " $chat() Get info on an open DCC Chat window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$chat()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$chat\">https://en.wikichip.org/wiki/mirc/identifiers/$chat</a>" }
,{ "trigger": " $chr() Get char of the specified unicode point number \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$chr()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$chr\">https://en.wikichip.org/wiki/mirc/identifiers/$chr</a>" }
,{ "trigger": " $cid Get current connection id of script request \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$cid", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$cid\">https://en.wikichip.org/wiki/mirc/identifiers/$cid</a>" }
,{ "trigger": " $clevel Get matching event level in \"on\" events \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$clevel", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$clevel\">https://en.wikichip.org/wiki/mirc/identifiers/$clevel</a>" }
,{ "trigger": " $click() Get click info when picture @window is clicked \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$click()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$click\">https://en.wikichip.org/wiki/mirc/identifiers/$click</a>" }
,{ "trigger": " $cmdbox Get boolean $true/$false if initiated from command editbox \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$cmdbox", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$cmdbox\">https://en.wikichip.org/wiki/mirc/identifiers/$cmdbox</a>" }
,{ "trigger": " $cmdline Get parameters passed to mIRC on launch \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$cmdline", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$cmdline\">https://en.wikichip.org/wiki/mirc/identifiers/$cmdline</a>" }
,{ "trigger": " $cnick() Get nick/address field in nick color list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$cnick()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$cnick\">https://en.wikichip.org/wiki/mirc/identifiers/$cnick</a>" }
,{ "trigger": " $codepage() List all available codepages and/or get information about a given codepage \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$codepage()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$codepage\">https://en.wikichip.org/wiki/mirc/identifiers/$codepage</a>" }
,{ "trigger": " $color() Get RGB value of color code or color code of event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$color()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$color\">https://en.wikichip.org/wiki/mirc/identifiers/$color</a>" }
,{ "trigger": " $colour() Get RGB value of color code or color code of event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$colour()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$colour\">https://en.wikichip.org/wiki/mirc/identifiers/$colour</a>" }
,{ "trigger": " $com() Get COM info or call a method in COM connection \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$com()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$com\">https://en.wikichip.org/wiki/mirc/identifiers/$com</a>" }
,{ "trigger": " $comcall() Multi-threaded version of $com that calls alias on finish \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$comcall()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$comcall\">https://en.wikichip.org/wiki/mirc/identifiers/$comcall</a>" }
,{ "trigger": " $comchan() Get common channels between users \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$comchan()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$comchan\">https://en.wikichip.org/wiki/mirc/identifiers/$comchan</a>" }
,{ "trigger": " $comchar Get command prefix character \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$comchar", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$comchar\">https://en.wikichip.org/wiki/mirc/identifiers/$comchar</a>" }
,{ "trigger": " $comerr Return 1 if error occured with COM object \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$comerr", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$comerr\">https://en.wikichip.org/wiki/mirc/identifiers/$comerr</a>" }
,{ "trigger": " $compact Return 1 if mIRC is in compact state \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$compact", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$compact\">https://en.wikichip.org/wiki/mirc/identifiers/$compact</a>" }
,{ "trigger": " $compress() Compress a file or binvar \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$compress()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$compress\">https://en.wikichip.org/wiki/mirc/identifiers/$compress</a>" }
,{ "trigger": " $comval() Get value of Nth COM object in collection \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$comval()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$comval\">https://en.wikichip.org/wiki/mirc/identifiers/$comval</a>" }
,{ "trigger": " $cos() Get cosine of an angle of N radians \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$cos()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$cos\">https://en.wikichip.org/wiki/mirc/identifiers/$cos</a>" }
,{ "trigger": " $cosh() Get hyperbolic cosine of an angle of N radians \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$cosh()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$cosh\">https://en.wikichip.org/wiki/mirc/identifiers/$cosh</a>" }
,{ "trigger": " $count() Count matching strings/substrings in another string \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$count()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$count\">https://en.wikichip.org/wiki/mirc/identifiers/$count</a>" }
,{ "trigger": " $cr Get carriage return \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$cr", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$cr\">https://en.wikichip.org/wiki/mirc/identifiers/$cr</a>" }
,{ "trigger": " $crc() Get 32-bit checksum of text, binvar, or file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$crc()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$crc\">https://en.wikichip.org/wiki/mirc/identifiers/$crc</a>" }
,{ "trigger": " $crc64() Get 64-bit checksum of text, binvar, or file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$crc64()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$crc64\">https://en.wikichip.org/wiki/mirc/identifiers/$crc64</a>" }
,{ "trigger": " $creq Get current parameters settings for DCC Chat \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$creq", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$creq\">https://en.wikichip.org/wiki/mirc/identifiers/$creq</a>" }
,{ "trigger": " $crlf Get carriage return line feed \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$crlf", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$crlf\">https://en.wikichip.org/wiki/mirc/identifiers/$crlf</a>" }
,{ "trigger": " $ctime Get number seconds elapsed since Jan 1, 1970 \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ctime", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ctime\">https://en.wikichip.org/wiki/mirc/identifiers/$ctime</a>" }
,{ "trigger": " $ctimer Get name of timer, if any, that triggered event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ctimer", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ctimer\">https://en.wikichip.org/wiki/mirc/identifiers/$ctimer</a>" }
,{ "trigger": " $ctrlenter Get boolean $true/$false depending on if CTRL+ENTER was pressed \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ctrlenter", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ctrlenter\">https://en.wikichip.org/wiki/mirc/identifiers/$ctrlenter</a>" }
,{ "trigger": " $date() Get current date in day/month/year format \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$date()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$date\">https://en.wikichip.org/wiki/mirc/identifiers/$date</a>" }
,{ "trigger": " $day Get full name of current day of week \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$day", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$day\">https://en.wikichip.org/wiki/mirc/identifiers/$day</a>" }
,{ "trigger": " $daylight Get seconds offset for daylight savings \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$daylight", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$daylight\">https://en.wikichip.org/wiki/mirc/identifiers/$daylight</a>" }
,{ "trigger": " $dbuh Get DBU per pixel height value for display \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dbuh", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dbuh\">https://en.wikichip.org/wiki/mirc/identifiers/$dbuh</a>" }
,{ "trigger": " $dbuw Get DBU per pixel width value for display \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dbuw", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dbuw\">https://en.wikichip.org/wiki/mirc/identifiers/$dbuw</a>" }
,{ "trigger": " $dccignore Get $true/$false depending on DCC ignore option \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dccignore", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dccignore\">https://en.wikichip.org/wiki/mirc/identifiers/$dccignore</a>" }
,{ "trigger": " $dccport Get the current port used by DCCServer \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dccport", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dccport\">https://en.wikichip.org/wiki/mirc/identifiers/$dccport</a>" }
,{ "trigger": " $dde() Get return value of service, topic, and item via XTYP_REQUEST \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dde()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dde\">https://en.wikichip.org/wiki/mirc/identifiers/$dde</a>" }
,{ "trigger": " $ddename Get name of current DDE service \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ddename", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ddename\">https://en.wikichip.org/wiki/mirc/identifiers/$ddename</a>" }
,{ "trigger": " $debug Get window name or filename of current connection's debug output target \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$debug", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$debug\">https://en.wikichip.org/wiki/mirc/identifiers/$debug</a>" }
,{ "trigger": " $decode() Decode literal text in vars or binvars \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$decode()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$decode\">https://en.wikichip.org/wiki/mirc/identifiers/$decode</a>" }
,{ "trigger": " $decompress() Decompress a file or binvar \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$decompress()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$decompress\">https://en.wikichip.org/wiki/mirc/identifiers/$decompress</a>" }
,{ "trigger": " $deltok() Delete Nth token from text \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$deltok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$deltok\">https://en.wikichip.org/wiki/mirc/identifiers/$deltok</a>" }
,{ "trigger": " $devent Get name of dialog inside \"on dialog\" event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$devent", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$devent\">https://en.wikichip.org/wiki/mirc/identifiers/$devent</a>" }
,{ "trigger": " $dialog() Create modal dialog or get properties of dialog \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dialog()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dialog\">https://en.wikichip.org/wiki/mirc/identifiers/$dialog</a>" }
,{ "trigger": " $did Get settings of controls in a dialog \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$did", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$did\">https://en.wikichip.org/wiki/mirc/identifiers/$did</a>" }
,{ "trigger": " $didreg() Get line that matched regex in dialog control \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$didreg()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$didreg\">https://en.wikichip.org/wiki/mirc/identifiers/$didreg</a>" }
,{ "trigger": " $didtok() Get tokenized list of items of dialog control \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$didtok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$didtok\">https://en.wikichip.org/wiki/mirc/identifiers/$didtok</a>" }
,{ "trigger": " $didwm() Get line that matched wildcard in dialog control \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$didwm()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$didwm\">https://en.wikichip.org/wiki/mirc/identifiers/$didwm</a>" }
,{ "trigger": " $dir Replaced by $sdir. Display select folder dialog \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dir", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dir\">https://en.wikichip.org/wiki/mirc/identifiers/$dir</a>" }
,{ "trigger": " $disk() Get info about hard disks \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$disk()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$disk\">https://en.wikichip.org/wiki/mirc/identifiers/$disk</a>" }
,{ "trigger": " $dlevel Get default user level \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dlevel", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dlevel\">https://en.wikichip.org/wiki/mirc/identifiers/$dlevel</a>" }
,{ "trigger": " $dll() Call a function of a dll and get return value \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dll()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dll\">https://en.wikichip.org/wiki/mirc/identifiers/$dll</a>" }
,{ "trigger": " $dllcall() Multithreaded $dll that calls alias on return \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dllcall()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dllcall\">https://en.wikichip.org/wiki/mirc/identifiers/$dllcall</a>" }
,{ "trigger": " $dname Get name of dialog that triggered \"ON dialog\" event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dname", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dname\">https://en.wikichip.org/wiki/mirc/identifiers/$dname</a>" }
,{ "trigger": " $dns() Get various properties of DNS in \"ON DNS\" event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dns()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dns\">https://en.wikichip.org/wiki/mirc/identifiers/$dns</a>" }
,{ "trigger": " $donotdisturb Get boolean $true/$false if mIRC is in donotdisturb \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$donotdisturb", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$donotdisturb\">https://en.wikichip.org/wiki/mirc/identifiers/$donotdisturb</a>" }
,{ "trigger": " $dqwindow Get state of message window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$dqwindow", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$dqwindow\">https://en.wikichip.org/wiki/mirc/identifiers/$dqwindow</a>" }
,{ "trigger": " $duration() Return timespan based on input seconds \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$duration()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$duration\">https://en.wikichip.org/wiki/mirc/identifiers/$duration</a>" }
,{ "trigger": " $ebeeps Get $true/$false depending if sound is enabled/disabled \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ebeeps", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ebeeps\">https://en.wikichip.org/wiki/mirc/identifiers/$ebeeps</a>" }
,{ "trigger": " $editbox() Get contents of editbox in any mIRC window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$editbox()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$editbox\">https://en.wikichip.org/wiki/mirc/identifiers/$editbox</a>" }
,{ "trigger": " $email Get email address in mIRC connect dialog \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$email", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$email\">https://en.wikichip.org/wiki/mirc/identifiers/$email</a>" }
,{ "trigger": " $emailaddr Get email address in mIRC connect dialog \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$emailaddr", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$emailaddr\">https://en.wikichip.org/wiki/mirc/identifiers/$emailaddr</a>" }
,{ "trigger": " $encode() Get encoded value of text, var, or binvar \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$encode()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$encode\">https://en.wikichip.org/wiki/mirc/identifiers/$encode</a>" }
,{ "trigger": " $envvar() Get Windows environment variable values \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$envvar()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$envvar\">https://en.wikichip.org/wiki/mirc/identifiers/$envvar</a>" }
,{ "trigger": " $error Catch errors in script execution \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$error", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$error\">https://en.wikichip.org/wiki/mirc/identifiers/$error</a>" }
,{ "trigger": " $eval() Evaluate code N times \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$eval()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$eval\">https://en.wikichip.org/wiki/mirc/identifiers/$eval</a>" }
,{ "trigger": " $evalnext() Evaluatee code N times (same as $eval) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$evalnext()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$evalnext\">https://en.wikichip.org/wiki/mirc/identifiers/$evalnext</a>" }
,{ "trigger": " $event Get event name of any tigerred \"on\" events. \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$event", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$event\">https://en.wikichip.org/wiki/mirc/identifiers/$event</a>" }
,{ "trigger": " $eventid Random unique value set inside mIRC events \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$eventid", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$eventid\">https://en.wikichip.org/wiki/mirc/identifiers/$eventid</a>" }
,{ "trigger": " $eventparms Get event-specific parameters passed by script parser to executed command. \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$eventparms", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$eventparms\">https://en.wikichip.org/wiki/mirc/identifiers/$eventparms</a>" }
,{ "trigger": " $exists() Get $true/$false depending if file or dir exists \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$exists()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$exists\">https://en.wikichip.org/wiki/mirc/identifiers/$exists</a>" }
,{ "trigger": " $exiting Get value determining if mIRC is exiting \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$exiting", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$exiting\">https://en.wikichip.org/wiki/mirc/identifiers/$exiting</a>" }
,{ "trigger": " $factorial() Get the factorial of integer N \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$factorial()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$factorial\">https://en.wikichip.org/wiki/mirc/identifiers/$factorial</a>" }
,{ "trigger": " $false Value returned for boolean returns in scripts \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$false", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$false\">https://en.wikichip.org/wiki/mirc/identifiers/$false</a>" }
,{ "trigger": " $feof Returns 1 if end of file was reached from last file access attempt \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$feof", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$feof\">https://en.wikichip.org/wiki/mirc/identifiers/$feof</a>" }
,{ "trigger": " $ferr Returns 1 if file error occurred from last file access attempt \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ferr", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ferr\">https://en.wikichip.org/wiki/mirc/identifiers/$ferr</a>" }
,{ "trigger": " $fgetc() Get next character from open file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fgetc()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fgetc\">https://en.wikichip.org/wiki/mirc/identifiers/$fgetc</a>" }
,{ "trigger": " $fibonacci() Get the Nth term in the Fibonacci Sequence \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fibonacci()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fibonacci\">https://en.wikichip.org/wiki/mirc/identifiers/$fibonacci</a>" }
,{ "trigger": " $file Get properties of a file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$file", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$file\">https://en.wikichip.org/wiki/mirc/identifiers/$file</a>" }
,{ "trigger": " $filename Get file accessed from various events \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$filename", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$filename\">https://en.wikichip.org/wiki/mirc/identifiers/$filename</a>" }
,{ "trigger": " $filtered Get number of matching lines found by latest filter \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$filtered", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$filtered\">https://en.wikichip.org/wiki/mirc/identifiers/$filtered</a>" }
,{ "trigger": " $finddir() Search for directory with word or wildcard \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$finddir()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$finddir\">https://en.wikichip.org/wiki/mirc/identifiers/$finddir</a>" }
,{ "trigger": " $finddirn Returns Nth position of found dir inside $finddir \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$finddirn", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$finddirn\">https://en.wikichip.org/wiki/mirc/identifiers/$finddirn</a>" }
,{ "trigger": " $findfile() Search for a file with word or wildcard \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$findfile()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$findfile\">https://en.wikichip.org/wiki/mirc/identifiers/$findfile</a>" }
,{ "trigger": " $findfilen Returns Nth position of found file inside $findfile \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$findfilen", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$findfilen\">https://en.wikichip.org/wiki/mirc/identifiers/$findfilen</a>" }
,{ "trigger": " $findtok() Returns position of Nth matching token in text \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$findtok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$findtok\">https://en.wikichip.org/wiki/mirc/identifiers/$findtok</a>" }
,{ "trigger": " $findtokcs() Returns position of Nth matching token (case sensitive) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$findtokcs()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$findtokcs\">https://en.wikichip.org/wiki/mirc/identifiers/$findtokcs</a>" }
,{ "trigger": " $fline() Returns the number of the Nth line matching expression in window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fline()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fline\">https://en.wikichip.org/wiki/mirc/identifiers/$fline</a>" }
,{ "trigger": " $flinen Returns the number of the matching line when using $fline.text property \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$flinen", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$flinen\">https://en.wikichip.org/wiki/mirc/identifiers/$flinen</a>" }
,{ "trigger": " $floor() Get numerical value rounded to lowest integer \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$floor()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$floor\">https://en.wikichip.org/wiki/mirc/identifiers/$floor</a>" }
,{ "trigger": " $font() Get Nth font available on the system \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$font()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$font\">https://en.wikichip.org/wiki/mirc/identifiers/$font</a>" }
,{ "trigger": " $fopen() Get info about an open file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fopen()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fopen\">https://en.wikichip.org/wiki/mirc/identifiers/$fopen</a>" }
,{ "trigger": " $fread() Returns next $crlf delmited line in open file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fread()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fread\">https://en.wikichip.org/wiki/mirc/identifiers/$fread</a>" }
,{ "trigger": " $freadex() Returns the total content of a file from the pointer \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$freadex()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$freadex\">https://en.wikichip.org/wiki/mirc/identifiers/$freadex</a>" }
,{ "trigger": " $fromeditbox Returns $true/$false depending if alias was called from editbox \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fromeditbox", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fromeditbox\">https://en.wikichip.org/wiki/mirc/identifiers/$fromeditbox</a>" }
,{ "trigger": " $fserv() Get info on open Fserve windows \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fserv()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fserv\">https://en.wikichip.org/wiki/mirc/identifiers/$fserv</a>" }
,{ "trigger": " $fserve() Get info on open Fserve windows \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fserve()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fserve\">https://en.wikichip.org/wiki/mirc/identifiers/$fserve</a>" }
,{ "trigger": " $fulladdress Get nick!user@host of user triggering an event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fulladdress", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fulladdress\">https://en.wikichip.org/wiki/mirc/identifiers/$fulladdress</a>" }
,{ "trigger": " $fulldate Get full date in format: Day Month Date hh:mm:ss Year \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fulldate", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fulldate\">https://en.wikichip.org/wiki/mirc/identifiers/$fulldate</a>" }
,{ "trigger": " $fullname Get full name set in mIRC connect dialog \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fullname", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fullname\">https://en.wikichip.org/wiki/mirc/identifiers/$fullname</a>" }
,{ "trigger": " $fullscreen Returns 1 if running in full screen, 0 if not \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fullscreen", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fullscreen\">https://en.wikichip.org/wiki/mirc/identifiers/$fullscreen</a>" }
,{ "trigger": " $fupdate Returns current integer 0-100 setting for /fupdate command \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$fupdate", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$fupdate\">https://en.wikichip.org/wiki/mirc/identifiers/$fupdate</a>" }
,{ "trigger": " $gcd() Returns the Greatest Common Denominator for 2 or more integers \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$gcd()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$gcd\">https://en.wikichip.org/wiki/mirc/identifiers/$gcd</a>" }
,{ "trigger": " $get() Get info on open DCC Get window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$get()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$get\">https://en.wikichip.org/wiki/mirc/identifiers/$get</a>" }
,{ "trigger": " $getdir() Get default or specified filespec DCC get directory \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$getdir()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$getdir\">https://en.wikichip.org/wiki/mirc/identifiers/$getdir</a>" }
,{ "trigger": " $getdot() Get RGB color value of specific pixel from picwin \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$getdot()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$getdot\">https://en.wikichip.org/wiki/mirc/identifiers/$getdot</a>" }
,{ "trigger": " $gettok() Get Nth token based on a delimited $asc token \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$gettok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$gettok\">https://en.wikichip.org/wiki/mirc/identifiers/$gettok</a>" }
,{ "trigger": " $gmt Get GMT time in $ctime format \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$gmt", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$gmt\">https://en.wikichip.org/wiki/mirc/identifiers/$gmt</a>" }
,{ "trigger": " $group() Get name or status of a #group in a script \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$group()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$group\">https://en.wikichip.org/wiki/mirc/identifiers/$group</a>" }
,{ "trigger": " $halted Returns $true if previous event used halt or haltdef, else $false \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$halted", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$halted\">https://en.wikichip.org/wiki/mirc/identifiers/$halted</a>" }
,{ "trigger": " $hash() Get a hash of supplied text \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hash()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hash\">https://en.wikichip.org/wiki/mirc/identifiers/$hash</a>" }
,{ "trigger": " $height() Get the height of text in pixel in a font \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$height()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$height\">https://en.wikichip.org/wiki/mirc/identifiers/$height</a>" }
,{ "trigger": " $hfile() Replaced by $sfile. Display file dialog \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hfile()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hfile\">https://en.wikichip.org/wiki/mirc/identifiers/$hfile</a>" }
,{ "trigger": " $hfind() Search hash table for Nth item in match text \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hfind()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hfind\">https://en.wikichip.org/wiki/mirc/identifiers/$hfind</a>" }
,{ "trigger": " $hget() Get info about hash table \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hget()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hget\">https://en.wikichip.org/wiki/mirc/identifiers/$hget</a>" }
,{ "trigger": " $highlight Get number of line that matched regex in dialog control \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$highlight", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$highlight\">https://en.wikichip.org/wiki/mirc/identifiers/$highlight</a>" }
,{ "trigger": " $hmac() Get HMAC based on supplied key \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hmac()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hmac\">https://en.wikichip.org/wiki/mirc/identifiers/$hmac</a>" }
,{ "trigger": " $hmatch() Search hash table for Nth item of wildcard text \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hmatch()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hmatch\">https://en.wikichip.org/wiki/mirc/identifiers/$hmatch</a>" }
,{ "trigger": " $hnick Get nick triggered by \"ON HELP\" event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hnick", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hnick\">https://en.wikichip.org/wiki/mirc/identifiers/$hnick</a>" }
,{ "trigger": " $host Get own local hostname \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$host", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$host\">https://en.wikichip.org/wiki/mirc/identifiers/$host</a>" }
,{ "trigger": " $hotline Get line of text triggered during \"ON HOTLINK\" \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hotline", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hotline\">https://en.wikichip.org/wiki/mirc/identifiers/$hotline</a>" }
,{ "trigger": " $hotlinepos Get line and text location during \"ON HOTLINK\" event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hotlinepos", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hotlinepos\">https://en.wikichip.org/wiki/mirc/identifiers/$hotlinepos</a>" }
,{ "trigger": " $hotlink() Get info about what triggered \"ON HOTLINK\" event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hotlink()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hotlink\">https://en.wikichip.org/wiki/mirc/identifiers/$hotlink</a>" }
,{ "trigger": " $hotp() Get HOTP based on parameters \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hotp()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hotp\">https://en.wikichip.org/wiki/mirc/identifiers/$hotp</a>" }
,{ "trigger": " $hregex() Replaced by $hfind. Search hash table for regex match \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hregex()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hregex\">https://en.wikichip.org/wiki/mirc/identifiers/$hregex</a>" }
,{ "trigger": " $hypot() Get hypotenuse for 2 sides of right triangle \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$hypot()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$hypot\">https://en.wikichip.org/wiki/mirc/identifiers/$hypot</a>" }
,{ "trigger": " $iaddress Get IP address in \"ON DNS\" event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$iaddress", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$iaddress\">https://en.wikichip.org/wiki/mirc/identifiers/$iaddress</a>" }
,{ "trigger": " $ial Get Nth matching address in IAL \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ial", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ial\">https://en.wikichip.org/wiki/mirc/identifiers/$ial</a>" }
,{ "trigger": " $ialchan() Get Nth matching address in a channel in IAL \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ialchan()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ialchan\">https://en.wikichip.org/wiki/mirc/identifiers/$ialchan</a>" }
,{ "trigger": " $ibl() Get Nth address in internal ban list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ibl()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ibl\">https://en.wikichip.org/wiki/mirc/identifiers/$ibl</a>" }
,{ "trigger": " $idle Get current idle time \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$idle", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$idle\">https://en.wikichip.org/wiki/mirc/identifiers/$idle</a>" }
,{ "trigger": " $iel() Get Nth address in internal exception list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$iel()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$iel\">https://en.wikichip.org/wiki/mirc/identifiers/$iel</a>" }
,{ "trigger": " $ifmatch Replaced by $v1. Get first part of last conditional statement \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ifmatch", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ifmatch\">https://en.wikichip.org/wiki/mirc/identifiers/$ifmatch</a>" }
,{ "trigger": " $ifmatch2 Replaced by $v2. Get second part of last conditional statement \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ifmatch2", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ifmatch2\">https://en.wikichip.org/wiki/mirc/identifiers/$ifmatch2</a>" }
,{ "trigger": " $ignore Get Nth address in ignore list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ignore", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ignore\">https://en.wikichip.org/wiki/mirc/identifiers/$ignore</a>" }
,{ "trigger": " $iif() Get $true/$false based on a dition \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$iif()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$iif\">https://en.wikichip.org/wiki/mirc/identifiers/$iif</a>" }
,{ "trigger": " $iil() Get Nth address in internal invite list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$iil()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$iil\">https://en.wikichip.org/wiki/mirc/identifiers/$iil</a>" }
,{ "trigger": " $inellipse() Return $true if specified point is inside ellipse \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$inellipse()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$inellipse\">https://en.wikichip.org/wiki/mirc/identifiers/$inellipse</a>" }
,{ "trigger": " $ini() Get name/Nth position of topic/item in a file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ini()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ini\">https://en.wikichip.org/wiki/mirc/identifiers/$ini</a>" }
,{ "trigger": " $initopic() Replaced by $ini. Get name/Nth position of topic/item in a file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$initopic()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$initopic\">https://en.wikichip.org/wiki/mirc/identifiers/$initopic</a>" }
,{ "trigger": " $inmidi Returns whether a midi file is playing \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$inmidi", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$inmidi\">https://en.wikichip.org/wiki/mirc/identifiers/$inmidi</a>" }
,{ "trigger": " $inmode Value that can be returned by $chan().banlist \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$inmode", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$inmode\">https://en.wikichip.org/wiki/mirc/identifiers/$inmode</a>" }
,{ "trigger": " $inmp3 Replaced by $insong. Returns whether an mp3 file is playing or get mp3 info \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$inmp3", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$inmp3\">https://en.wikichip.org/wiki/mirc/identifiers/$inmp3</a>" }
,{ "trigger": " $inpaste Returns $true if user typed ctrl+v or shift+insert to paste into editbox \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$inpaste", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$inpaste\">https://en.wikichip.org/wiki/mirc/identifiers/$inpaste</a>" }
,{ "trigger": " $inpoly() Returns $true if the specified point is inside polygon \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$inpoly()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$inpoly\">https://en.wikichip.org/wiki/mirc/identifiers/$inpoly</a>" }
,{ "trigger": " $input() Get user input. Replaced deprecated $? command \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$input()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$input\">https://en.wikichip.org/wiki/mirc/identifiers/$input</a>" }
,{ "trigger": " $inrect() Returns $true if the specified point is inside triangle \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$inrect()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$inrect\">https://en.wikichip.org/wiki/mirc/identifiers/$inrect</a>" }
,{ "trigger": " $inroundrect() Returns $true if the specified point is inside rounded rectangle \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$inroundrect()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$inroundrect\">https://en.wikichip.org/wiki/mirc/identifiers/$inroundrect</a>" }
,{ "trigger": " $insong Returns whether an mp3, wma, or ogg file is playing \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$insong", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$insong\">https://en.wikichip.org/wiki/mirc/identifiers/$insong</a>" }
,{ "trigger": " $instok() Insert token into the Nth position in text even if it exist \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$instok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$instok\">https://en.wikichip.org/wiki/mirc/identifiers/$instok</a>" }
,{ "trigger": " $int() Return integer part of a floating point number with no rounding \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$int()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$int\">https://en.wikichip.org/wiki/mirc/identifiers/$int</a>" }
,{ "trigger": " $intersect() Returns point at which two lines/rays insersect \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$intersect()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$intersect\">https://en.wikichip.org/wiki/mirc/identifiers/$intersect</a>" }
,{ "trigger": " $inwave Returns whether a wav file is playing \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$inwave", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$inwave\">https://en.wikichip.org/wiki/mirc/identifiers/$inwave</a>" }
,{ "trigger": " $inwho Returned by $chan().ial or $chan().inwho in /who reply and this is the first /who \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$inwho", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$inwho\">https://en.wikichip.org/wiki/mirc/identifiers/$inwho</a>" }
,{ "trigger": " $ip Get own ip address \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ip", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ip\">https://en.wikichip.org/wiki/mirc/identifiers/$ip</a>" }
,{ "trigger": " $iptype() Get IP version \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$iptype()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$iptype\">https://en.wikichip.org/wiki/mirc/identifiers/$iptype</a>" }
,{ "trigger": " $iql() Get Nth address in the internal quiet list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$iql()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$iql\">https://en.wikichip.org/wiki/mirc/identifiers/$iql</a>" }
,{ "trigger": " $isadmin Returns boolean $true or $false depending if mIRC is running as elevated admin \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$isadmin", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$isadmin\">https://en.wikichip.org/wiki/mirc/identifiers/$isadmin</a>" }
,{ "trigger": " $isalias() Get info about alias \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$isalias()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$isalias\">https://en.wikichip.org/wiki/mirc/identifiers/$isalias</a>" }
,{ "trigger": " $isbit() Returns 1 if Nth bit is turned on \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$isbit()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$isbit\">https://en.wikichip.org/wiki/mirc/identifiers/$isbit</a>" }
,{ "trigger": " $isdde() Returns $true if the specified dde name is in use \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$isdde()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$isdde\">https://en.wikichip.org/wiki/mirc/identifiers/$isdde</a>" }
,{ "trigger": " $isdir() Returns $true if the specified directory exists \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$isdir()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$isdir\">https://en.wikichip.org/wiki/mirc/identifiers/$isdir</a>" }
,{ "trigger": " $isfile() Returns $true if specified file exists \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$isfile()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$isfile\">https://en.wikichip.org/wiki/mirc/identifiers/$isfile</a>" }
,{ "trigger": " $isid Returns $true if custom alias is called as an identifier \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$isid", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$isid\">https://en.wikichip.org/wiki/mirc/identifiers/$isid</a>" }
,{ "trigger": " $islower() Returns $true if text is all lower case \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$islower()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$islower\">https://en.wikichip.org/wiki/mirc/identifiers/$islower</a>" }
,{ "trigger": " $isnum() Returns $true if text is a number (same as isnumber) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$isnum()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$isnum\">https://en.wikichip.org/wiki/mirc/identifiers/$isnum</a>" }
,{ "trigger": " $isnumber() Returns $true if text is a number (same as isnum) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$isnumber()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$isnumber\">https://en.wikichip.org/wiki/mirc/identifiers/$isnumber</a>" }
,{ "trigger": " $istok() Returns $true if a matching token exists \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$istok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$istok\">https://en.wikichip.org/wiki/mirc/identifiers/$istok</a>" }
,{ "trigger": " $isupper() Returns $true if text is all upper case \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$isupper()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$isupper\">https://en.wikichip.org/wiki/mirc/identifiers/$isupper</a>" }
,{ "trigger": " $isutf() Get integer value determining if text is invalid utf8, plain text, or valid utf8 \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$isutf()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$isutf\">https://en.wikichip.org/wiki/mirc/identifiers/$isutf</a>" }
,{ "trigger": " $keychar Fired during ON KEYDOWN or KEYUP event in @window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$keychar", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$keychar\">https://en.wikichip.org/wiki/mirc/identifiers/$keychar</a>" }
,{ "trigger": " $keylparam Filled during ON KEYDOWN,KEYUP, or CHAR event in @window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$keylparam", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$keylparam\">https://en.wikichip.org/wiki/mirc/identifiers/$keylparam</a>" }
,{ "trigger": " $keyrpt Fired during ON KEYDOWN or KEYUP event, returns $true if key is held down \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$keyrpt", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$keyrpt\">https://en.wikichip.org/wiki/mirc/identifiers/$keyrpt</a>" }
,{ "trigger": " $keyval Returns key code of key being pressed inside ON KEYDOWN or KEYUP even \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$keyval", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$keyval\">https://en.wikichip.org/wiki/mirc/identifiers/$keyval</a>" }
,{ "trigger": " $knick Get nick of user who has been kicked from a channel in an event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$knick", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$knick\">https://en.wikichip.org/wiki/mirc/identifiers/$knick</a>" }
,{ "trigger": " $lactive Get full name of last window that was active \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$lactive", "details": "For more information $see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$lactive\">https://en.wikichip.org/wiki/mirc/identifiers/$lactive</a>" }
,{ "trigger": " $lactivecid Get connected id related to last active window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$lactivecid", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$lactivecid\">https://en.wikichip.org/wiki/mirc/identifiers/$lactivecid</a>" }
,{ "trigger": " $lactivewid Get window id of last window that was active \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$lactivewid", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$lactivewid\">https://en.wikichip.org/wiki/mirc/identifiers/$lactivewid</a>" }
,{ "trigger": " $langdll Return the currently loaded language dll \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$langdll", "details": "For more information see: <a href=\"https://forums.mirc.com/ubbthreads.php/topics/272687/language-files-translations\">https://forums.mirc.com/ubbthreads.php/topics/272687/language-files-translations</a>" }
,{ "trigger": " $lcm() Returns the Least Common Multiple for 2 or more integers \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$lcm()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$lcm\">https://en.wikichip.org/wiki/mirc/identifiers/$lcm</a>" }
,{ "trigger": " $left() Substring characters from the left \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$left()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$left\">https://en.wikichip.org/wiki/mirc/identifiers/$left</a>" }
,{ "trigger": " $leftwin Get name of the last @window the mouse left \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$leftwin", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$leftwin\">https://en.wikichip.org/wiki/mirc/identifiers/$leftwin</a>" }
,{ "trigger": " $leftwincid Get connection id of the last @window the mouse left \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$leftwincid", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$leftwincid\">https://en.wikichip.org/wiki/mirc/identifiers/$leftwincid</a>" }
,{ "trigger": " $leftwinwid Get window id of the last @window the mouse left \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$leftwinwid", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$leftwinwid\">https://en.wikichip.org/wiki/mirc/identifiers/$leftwinwid</a>" }
,{ "trigger": " $len() Get character length of text \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$len()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$len\">https://en.wikichip.org/wiki/mirc/identifiers/$len</a>" }
,{ "trigger": " $level() Get user level of the specified user@host or address \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$level()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$level\">https://en.wikichip.org/wiki/mirc/identifiers/$level</a>" }
,{ "trigger": " $lf Get linefeed character ($chr(10)) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$lf", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$lf\">https://en.wikichip.org/wiki/mirc/identifiers/$lf</a>" }
,{ "trigger": " $line() Returns Nth line in a window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$line()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$line\">https://en.wikichip.org/wiki/mirc/identifiers/$line</a>" }
,{ "trigger": " $lines() Returns total number lines in text file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$lines()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$lines\">https://en.wikichip.org/wiki/mirc/identifiers/$lines</a>" }
,{ "trigger": " $link() Returns Nth item in the server Links window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$link()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$link\">https://en.wikichip.org/wiki/mirc/identifiers/$link</a>" }
,{ "trigger": " $lock() Returns $true if a given setting is Locked in mIRC settings dialog \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$lock()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$lock\">https://en.wikichip.org/wiki/mirc/identifiers/$lock</a>" }
,{ "trigger": " $locked Returns $true if mIRC is locked \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$locked", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$locked\">https://en.wikichip.org/wiki/mirc/identifiers/$locked</a>" }
,{ "trigger": " $lof Get bytes size info about specified file. Same as $file().size \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$lof", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$lof\">https://en.wikichip.org/wiki/mirc/identifiers/$lof</a>" }
,{ "trigger": " $log() Get natural logarithm (base e) of a number \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$log()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$log\">https://en.wikichip.org/wiki/mirc/identifiers/$log</a>" }
,{ "trigger": " $log2() Returns the common logarithm (base 2) of a number \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$log2()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$log2\">https://en.wikichip.org/wiki/mirc/identifiers/$log2</a>" }
,{ "trigger": " $log10() Get common logarithm (base10) of a number \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$log10()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$log10\">https://en.wikichip.org/wiki/mirc/identifiers/$log10</a>" }
,{ "trigger": " $logdir Get directory of log files \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$logdir", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$logdir\">https://en.wikichip.org/wiki/mirc/identifiers/$logdir</a>" }
,{ "trigger": " $logstamp Get current time based on the logging timestamp format defined in mIRC Options \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$logstamp", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$logstamp\">https://en.wikichip.org/wiki/mirc/identifiers/$logstamp</a>" }
,{ "trigger": " $logstampfmt Get logging timestamp format as defined in mIRC Options \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$logstampfmt", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$logstampfmt\">https://en.wikichip.org/wiki/mirc/identifiers/$logstampfmt</a>" }
,{ "trigger": " $longfn() Returns long pathname or filename version of a short filename \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$longfn()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$longfn\">https://en.wikichip.org/wiki/mirc/identifiers/$longfn</a>" }
,{ "trigger": " $longip() Convert IP address into long value and vice-versa \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$longip()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$longip\">https://en.wikichip.org/wiki/mirc/identifiers/$longip</a>" }
,{ "trigger": " $lower() Convert text to lowercase \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$lower()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$lower\">https://en.wikichip.org/wiki/mirc/identifiers/$lower</a>" }
,{ "trigger": " $ltimer Get name of last timer created \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ltimer", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ltimer\">https://en.wikichip.org/wiki/mirc/identifiers/$ltimer</a>" }
,{ "trigger": " $maddress Get address that was matched for event, or info about the user list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$maddress", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$maddress\">https://en.wikichip.org/wiki/mirc/identifiers/$maddress</a>" }
,{ "trigger": " $mask() Get address with a mask of specified type \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mask()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mask\">https://en.wikichip.org/wiki/mirc/identifiers/$mask</a>" }
,{ "trigger": " $matchkey Get matchtext used in an event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$matchkey", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$matchkey\">https://en.wikichip.org/wiki/mirc/identifiers/$matchkey</a>" }
,{ "trigger": " $matchtok() Get tokens that contain the specified string \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$matchtok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$matchtok\">https://en.wikichip.org/wiki/mirc/identifiers/$matchtok</a>" }
,{ "trigger": " $matchtokcs() Get tokens that contact the specified string (case sensitive) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$matchtokcs()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$matchtokcs\">https://en.wikichip.org/wiki/mirc/identifiers/$matchtokcs</a>" }
,{ "trigger": " $max Get maximum from a list of tokens/short-cut to getting first token \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$max", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$max\">https://en.wikichip.org/wiki/mirc/identifiers/$max</a>" }
,{ "trigger": " $maxlenl Get maximum number of chars that can safely be used in a statement in a script \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$maxlenl", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$maxlenl\">https://en.wikichip.org/wiki/mirc/identifiers/$maxlenl</a>" }
,{ "trigger": " $maxlenm Get maximum number of chars that can safely be used for medium string in a script \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$maxlenm", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$maxlenm\">https://en.wikichip.org/wiki/mirc/identifiers/$maxlenm</a>" }
,{ "trigger": " $maxlens Get maximum number of chars that can safely be used for small string in a script \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$maxlens", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$maxlens\">https://en.wikichip.org/wiki/mirc/identifiers/$maxlens</a>" }
,{ "trigger": " $md5() Get MD5 hash value for specified data \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$md5()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$md5\">https://en.wikichip.org/wiki/mirc/identifiers/$md5</a>" }
,{ "trigger": " $me Get your current nickname \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$me", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$me\">https://en.wikichip.org/wiki/mirc/identifiers/$me</a>" }
,{ "trigger": " $menu Return the name of menu in use \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$menu", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$menu\">https://en.wikichip.org/wiki/mirc/identifiers/$menu</a>" }
,{ "trigger": " $menubar Returns $true of menubar is enabled \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$menubar", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$menubar\">https://en.wikichip.org/wiki/mirc/identifiers/$menubar</a>" }
,{ "trigger": " $menucontext Get the context in which popups is created \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$menucontext", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$menucontext\">https://en.wikichip.org/wiki/mirc/identifiers/$menucontext</a>" }
,{ "trigger": " $menutype Return the name/type of menu in use (same as $menu) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$menutype", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$menutype\">https://en.wikichip.org/wiki/mirc/identifiers/$menutype</a>" }
,{ "trigger": " $mid() Get substring of a string \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mid()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mid\">https://en.wikichip.org/wiki/mirc/identifiers/$mid</a>" }
,{ "trigger": " $mididir Replaced by $sound(midi). Return directory specified in Sound Requests mIRC Options \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mididir", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mididir\">https://en.wikichip.org/wiki/mirc/identifiers/$mididir</a>" }
,{ "trigger": " $min Get minimum list of tokens/short-cut to returning last token \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$min", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$min\">https://en.wikichip.org/wiki/mirc/identifiers/$min</a>" }
,{ "trigger": " $mircdir Get folder where mIRC stores main settings \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mircdir", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mircdir\">https://en.wikichip.org/wiki/mirc/identifiers/$mircdir</a>" }
,{ "trigger": " $mircexe Get complete filepath to the executable currently used by mIRC \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mircexe", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mircexe\">https://en.wikichip.org/wiki/mirc/identifiers/$mircexe</a>" }
,{ "trigger": " $mircini Get complete filepath to the mirc.ini file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mircini", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mircini\">https://en.wikichip.org/wiki/mirc/identifiers/$mircini</a>" }
,{ "trigger": " $mircpid Get process ID of current mIRC executable \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mircpid", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mircpid\">https://en.wikichip.org/wiki/mirc/identifiers/$mircpid</a>" }
,{ "trigger": " $mkfn() Make sure text string is a valid filename by replacing invalid characters \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mkfn()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mkfn\">https://en.wikichip.org/wiki/mirc/identifiers/$mkfn</a>" }
,{ "trigger": " $mklogfn() Returns filename that would be used for such a nick as a log file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mklogfn()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mklogfn\">https://en.wikichip.org/wiki/mirc/identifiers/$mklogfn</a>" }
,{ "trigger": " $mknickfn() Create a valid filename from a nickname by removing invalid characters \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mknickfn()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mknickfn\">https://en.wikichip.org/wiki/mirc/identifiers/$mknickfn</a>" }
,{ "trigger": " $mnick Get the value of your main name, which is set in mIRC options dialog \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mnick", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mnick\">https://en.wikichip.org/wiki/mirc/identifiers/$mnick</a>" }
,{ "trigger": " $mode() Returns the Nth nick affected by a channel mode change \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mode()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mode\">https://en.wikichip.org/wiki/mirc/identifiers/$mode</a>" }
,{ "trigger": " $modefirst Returns $true if the channel event is the first to trigger \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$modefirst", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$modefirst\">https://en.wikichip.org/wiki/mirc/identifiers/$modefirst</a>" }
,{ "trigger": " $modelast Returns $true if the channel event is the last to trigger \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$modelast", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$modelast\">https://en.wikichip.org/wiki/mirc/identifiers/$modelast</a>" }
,{ "trigger": " $modespl Returns the max number of channel modes you can set at once \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$modespl", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$modespl\">https://en.wikichip.org/wiki/mirc/identifiers/$modespl</a>" }
,{ "trigger": " $modinv() Returns the Multiplicative Modular Inverse for an integer \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$modinv()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$modinv\">https://en.wikichip.org/wiki/mirc/identifiers/$modinv</a>" }
,{ "trigger": " $mouse Get information about mouse and its buttons \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mouse", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mouse\">https://en.wikichip.org/wiki/mirc/identifiers/$mouse</a>" }
,{ "trigger": " $mp3() Replaced by $sound. Get various info about an mp3 file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mp3()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mp3\">https://en.wikichip.org/wiki/mirc/identifiers/$mp3</a>" }
,{ "trigger": " $mp3dir Replaced by $sound(mp3). Get directory specified in Sound Requests mIRC Options. \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$mp3dir", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$mp3dir\">https://en.wikichip.org/wiki/mirc/identifiers/$mp3dir</a>" }
,{ "trigger": " $msfile() Open dialog to select one or more files \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$msfile()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$msfile\">https://en.wikichip.org/wiki/mirc/identifiers/$msfile</a>" }
,{ "trigger": " $msgstamp Available if server-time or znc.in/server-time support was detected on connect \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$msgstamp", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$msgstamp\">https://en.wikichip.org/wiki/mirc/identifiers/$msgstamp</a>" }
,{ "trigger": " $msgtags Returns @ prefixed tags which are removed from incoming messages \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$msgtags", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$msgtags\">https://en.wikichip.org/wiki/mirc/identifiers/$msgtags</a>" }
,{ "trigger": " $naddress Replaced by $dns. Get the address being resolved in an ON DNS event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$naddress", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$naddress\">https://en.wikichip.org/wiki/mirc/identifiers/$naddress</a>" }
,{ "trigger": " $network Get current network mIRC is connected to \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$network", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$network\">https://en.wikichip.org/wiki/mirc/identifiers/$network</a>" }
,{ "trigger": " $newnick Get new nick in ON NICK event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$newnick", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$newnick\">https://en.wikichip.org/wiki/mirc/identifiers/$newnick</a>" }
,{ "trigger": " $nhnick() Get Nth nick that is not a halfop/helper on channel \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$nhnick()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$nhnick\">https://en.wikichip.org/wiki/mirc/identifiers/$nhnick</a>" }
,{ "trigger": " $nick Get nick of associated event or retrieve Nth nick in a channel \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$nick", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$nick\">https://en.wikichip.org/wiki/mirc/identifiers/$nick</a>" }
,{ "trigger": " =$nick Special identifier to send message to dcc chat or fserve window (equals prefix) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$=nick()" }
,{ "trigger": " $nickmode Get list of nick modes supported on a server \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$nickmode", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$nickmode\">https://en.wikichip.org/wiki/mirc/identifiers/$nickmode</a>" }
,{ "trigger": " $no Returned from an $input box when No button was clicked \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$no", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$no\">https://en.wikichip.org/wiki/mirc/identifiers/$no</a>" }
,{ "trigger": " $nofile() Get directory portion from of full path \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$nofile()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$nofile\">https://en.wikichip.org/wiki/mirc/identifiers/$nofile</a>" }
,{ "trigger": " $nonstdmsg Gets set to $true when \"on OPEN/TEXT/ACTION/NOTICE/SNOTICE/CTCP\" event is fired \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$nonstdmsg", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$nonstdmsg\">https://en.wikichip.org/wiki/mirc/identifiers/$nonstdmsg</a>" }
,{ "trigger": " $nopath Get filename portion from a full path \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$nopath", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$nopath\">https://en.wikichip.org/wiki/mirc/identifiers/$nopath</a>" }
,{ "trigger": " $nopnick() Replaced by $nick. Get Nth non-op nick on a channel \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$nopnick()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$nopnick\">https://en.wikichip.org/wiki/mirc/identifiers/$nopnick</a>" }
,{ "trigger": " $noqt() Get text string with double quotes removed \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$noqt()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$noqt\">https://en.wikichip.org/wiki/mirc/identifiers/$noqt</a>" }
,{ "trigger": " $not() Get binary NOT of a number \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$not()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$not\">https://en.wikichip.org/wiki/mirc/identifiers/$not</a>" }
,{ "trigger": " $notags() Returns text stripped from all possible tags for spoken text in /gtalk \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$notags()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$notags\">https://en.wikichip.org/wiki/mirc/identifiers/$notags</a>" }
,{ "trigger": " $notify Get info about a nick in notify list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$notify", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$notify\">https://en.wikichip.org/wiki/mirc/identifiers/$notify</a>" }
,{ "trigger": " $null Null \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$null", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$null\">https://en.wikichip.org/wiki/mirc/identifiers/$null</a>" }
,{ "trigger": " $numbits() Returns the bit length of N, the number of bits in the base-2 representation of N \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$numbits()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$numbits\">https://en.wikichip.org/wiki/mirc/identifiers/$numbits</a>" }
,{ "trigger": " $numeric Returns numeric value for a raw event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$numeric", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$numeric\">https://en.wikichip.org/wiki/mirc/identifiers/$numeric</a>" }
,{ "trigger": " $numtok() Returns the number of tokens in a list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$numtok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$numtok\">https://en.wikichip.org/wiki/mirc/identifiers/$numtok</a>" }
,{ "trigger": " $nvnick() Replaced by $nick. Returns Nth nickname that is not a voice in a channel \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$nvnick()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$nvnick\">https://en.wikichip.org/wiki/mirc/identifiers/$nvnick</a>" }
,{ "trigger": " $ok Returned from an $input box when Ok button was clicked \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ok", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ok\">https://en.wikichip.org/wiki/mirc/identifiers/$ok</a>" }
,{ "trigger": " $online Get number of seconds elapsed in the Timer dialog \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$online", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$online\">https://en.wikichip.org/wiki/mirc/identifiers/$online</a>" }
,{ "trigger": " $onlineserver Get the current server online time. Same as $online \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$onlineserver", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$onlineserver\">https://en.wikichip.org/wiki/mirc/identifiers/$onlineserver</a>" }
,{ "trigger": " $onlinetotal Returns total online time \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$onlinetotal", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$onlinetotal\">https://en.wikichip.org/wiki/mirc/identifiers/$onlinetotal</a>" }
,{ "trigger": " $onpoly() Returns $true if two polygons overlap \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$onpoly()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$onpoly\">https://en.wikichip.org/wiki/mirc/identifiers/$onpoly</a>" }
,{ "trigger": " $opnick Returns nick of person who was opped/deoped during ON OP event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$opnick", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$opnick\">https://en.wikichip.org/wiki/mirc/identifiers/$opnick</a>" }
,{ "trigger": " $or() Returns binary OR of 2 numbers \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$or()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$or\">https://en.wikichip.org/wiki/mirc/identifiers/$or</a>" }
,{ "trigger": " $ord() Gets st, nd, rd, or th for a number. EG: 1st, 2nd, 3rd, etc \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ord()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ord\">https://en.wikichip.org/wiki/mirc/identifiers/$ord</a>" }
,{ "trigger": " $os Get name of operating system running \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$os", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$os\">https://en.wikichip.org/wiki/mirc/identifiers/$os</a>" }
,{ "trigger": " $parms Non tokenize version of $1-, effectively preserving spaces \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$parms", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$parms\">https://en.wikichip.org/wiki/mirc/identifiers/$parms</a>" }
,{ "trigger": " $parseem Filled during \"on PARSELINE\" and returns $true if message is an echo message \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$parseem", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$parseem\">https://en.wikichip.org/wiki/mirc/identifiers/$parseem</a>" }
,{ "trigger": " $parseline Return the line involved in the ON PARSELINE event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$parseline", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$parseline\">https://en.wikichip.org/wiki/mirc/identifiers/$parseline</a>" }
,{ "trigger": " $parsetype Return either IN or OUT in the ON PARSELINE event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$parsetype", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$parsetype\">https://en.wikichip.org/wiki/mirc/identifiers/$parsetype</a>" }
,{ "trigger": " $parseutf Returns $true if mIRC is going to utf encode/decode during the ON PARSELINE event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$parseutf", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$parseutf\">https://en.wikichip.org/wiki/mirc/identifiers/$parseutf</a>" }
,{ "trigger": " $passivedcc Returns $true if passive DCC option is enabled \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$passivedcc", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$passivedcc\">https://en.wikichip.org/wiki/mirc/identifiers/$passivedcc</a>" }
,{ "trigger": " $pi Returns the value of pi to 20 decimal places \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$pi", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$pi\">https://en.wikichip.org/wiki/mirc/identifiers/$pi</a>" }
,{ "trigger": " $pic() Get picture size of .bmp, .jpg, or .png \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$pic()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$pic\">https://en.wikichip.org/wiki/mirc/identifiers/$pic</a>" }
,{ "trigger": " $play() Returns info about queued /play request \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$play()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$play\">https://en.wikichip.org/wiki/mirc/identifiers/$play</a>" }
,{ "trigger": " $pnick Return channel or nick you are /playing to \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$pnick", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$pnick\">https://en.wikichip.org/wiki/mirc/identifiers/$pnick</a>" }
,{ "trigger": " $port Get port number of the currently connected server \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$port", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$port\">https://en.wikichip.org/wiki/mirc/identifiers/$port</a>" }
,{ "trigger": " $portable Returns $true if mIRC is running in portable mode \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$portable", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$portable\">https://en.wikichip.org/wiki/mirc/identifiers/$portable</a>" }
,{ "trigger": " $portfree() Returns $true if the specified network port is free \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$portfree()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$portfree\">https://en.wikichip.org/wiki/mirc/identifiers/$portfree</a>" }
,{ "trigger": " $pos() Returns case-insensitive position of the Nth substring with a string \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$pos()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$pos\">https://en.wikichip.org/wiki/mirc/identifiers/$pos</a>" }
,{ "trigger": " $poscs() Returns case-sensitive position of the Nth substring with a string \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$poscs()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$poscs\">https://en.wikichip.org/wiki/mirc/identifiers/$poscs</a>" }
,{ "trigger": " $powmod() Performs integer exponentiation over a modulus \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$powmod()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$powmod\">https://en.wikichip.org/wiki/mirc/identifiers/$powmod</a>" }
,{ "trigger": " $prefix Get list of channel nick prefixes supported on active network \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$prefix", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$prefix\">https://en.wikichip.org/wiki/mirc/identifiers/$prefix</a>" }
,{ "trigger": " $prop Returns name of the property passed to alias \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$prop", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$prop\">https://en.wikichip.org/wiki/mirc/identifiers/$prop</a>" }
,{ "trigger": " $protect Return $true if the protect feature is enabled \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$protect", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$protect\">https://en.wikichip.org/wiki/mirc/identifiers/$protect</a>" }
,{ "trigger": " $puttok() Replaced the Nth delimited token in a list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$puttok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$puttok\">https://en.wikichip.org/wiki/mirc/identifiers/$puttok</a>" }
,{ "trigger": " $qt() Returns the text string enclosed with double-quotes \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$qt()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$qt\">https://en.wikichip.org/wiki/mirc/identifiers/$qt</a>" }
,{ "trigger": " $query() Returns the name of the Nth query window opened \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$query()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$query\">https://en.wikichip.org/wiki/mirc/identifiers/$query</a>" }
,{ "trigger": " $r() Shortcut for $rand. Get random number between two numbers \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$r()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$r\">https://en.wikichip.org/wiki/mirc/identifiers/$r</a>" }
,{ "trigger": " $raddress Replaced by $dns().addr. Get resolved address of /dns request \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$raddress", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$raddress\">https://en.wikichip.org/wiki/mirc/identifiers/$raddress</a>" }
,{ "trigger": " $rand() Get random integer between two numbers \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$rand()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$rand\">https://en.wikichip.org/wiki/mirc/identifiers/$rand</a>" }
,{ "trigger": " $rands() Get cryptographically secure random integer from specific range \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$rands()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$rands\">https://en.wikichip.org/wiki/mirc/identifiers/$rands</a>" }
,{ "trigger": " $rawbytes Return raw line for IRC server event prior to parsing/decoding \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$rawbytes", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$rawbytes\">https://en.wikichip.org/wiki/mirc/identifiers/$rawbytes</a>" }
,{ "trigger": " $rawmsg Return raw server line inside an event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$rawmsg", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$rawmsg\">https://en.wikichip.org/wiki/mirc/identifiers/$rawmsg</a>" }
,{ "trigger": " $read() Return a line from a disk file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$read()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$read\">https://en.wikichip.org/wiki/mirc/identifiers/$read</a>" }
,{ "trigger": " $readini() Read a topic from an ini file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$readini()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$readini\">https://en.wikichip.org/wiki/mirc/identifiers/$readini</a>" }
,{ "trigger": " $readn Return the number of the line matched by last $read \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$readn", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$readn\">https://en.wikichip.org/wiki/mirc/identifiers/$readn</a>" }
,{ "trigger": " $regbr Replaced by $regml. Return the Nth backreference from a regex match \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$regbr", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$regbr\">https://en.wikichip.org/wiki/mirc/identifiers/$regbr</a>" }
,{ "trigger": " $regerrstr Returns the PCRE error string for the last regex call \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$regerrstr", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$regerrstr\">https://en.wikichip.org/wiki/mirc/identifiers/$regerrstr</a>" }
,{ "trigger": " $regex() Returns the number of strings which matched the regex \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$regex()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$regex\">https://en.wikichip.org/wiki/mirc/identifiers/$regex</a>" }
,{ "trigger": " $regml() Returns the Nth backreference from a regex match \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$regml()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$regml\">https://en.wikichip.org/wiki/mirc/identifiers/$regml</a>" }
,{ "trigger": " $regmlex() Returns the Mth backreference of the Nth match from a regex match \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$regmlex()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$regmlex\">https://en.wikichip.org/wiki/mirc/identifiers/$regmlex</a>" }
,{ "trigger": " $regsub() Regex substitute/replace \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$regsub()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$regsub\">https://en.wikichip.org/wiki/mirc/identifiers/$regsub</a>" }
,{ "trigger": " $regsubex() Regex substitute/replaace while allowing markers in teh replaacement \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$regsubex()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$regsubex\">https://en.wikichip.org/wiki/mirc/identifiers/$regsubex</a>" }
,{ "trigger": " $remote Returns bitwise integer indicating if CTCPS/EVENT/RAWS are enabled \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$remote", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$remote\">https://en.wikichip.org/wiki/mirc/identifiers/$remote</a>" }
,{ "trigger": " $remove() Remove string from another string \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$remove()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$remove\">https://en.wikichip.org/wiki/mirc/identifiers/$remove</a>" }
,{ "trigger": " $removecs() Remove string from another string (case-sensitive) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$removecs()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$removecs\">https://en.wikichip.org/wiki/mirc/identifiers/$removecs</a>" }
,{ "trigger": " $remtok() Removes the Nth matching token in text \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$remtok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$remtok\">https://en.wikichip.org/wiki/mirc/identifiers/$remtok</a>" }
,{ "trigger": " $remtokcs() Remotes the Nth matching token in text (case-sensitive) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$remtokcs()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$remtokcs\">https://en.wikichip.org/wiki/mirc/identifiers/$remtokcs</a>" }
,{ "trigger": " $replace() Replace text in string \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$replace()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$replace\">https://en.wikichip.org/wiki/mirc/identifiers/$replace</a>" }
,{ "trigger": " $replacecs() Replace text in string (case-sensitive) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$replacecs()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$replacecs\">https://en.wikichip.org/wiki/mirc/identifiers/$replacecs</a>" }
,{ "trigger": " $replacex() Replace text in string skipping what's already been replaced \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$replacex()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$replacex\">https://en.wikichip.org/wiki/mirc/identifiers/$replacex</a>" }
,{ "trigger": " $replacexcs() Replace text in string skipping what's already been replaced (case-sensitive) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$replacexcs()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$replacexcs\">https://en.wikichip.org/wiki/mirc/identifiers/$replacexcs</a>" }
,{ "trigger": " $reptok() Replace the Nth matching token in text \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$reptok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$reptok\">https://en.wikichip.org/wiki/mirc/identifiers/$reptok</a>" }
,{ "trigger": " $reptokcs() Replace the Nth matching token in text (case-sensitive) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$reptokcs()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$reptokcs\">https://en.wikichip.org/wiki/mirc/identifiers/$reptokcs</a>" }
,{ "trigger": " $result Returns value passed to last /return or /returnx command in an alias \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$result", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$result\">https://en.wikichip.org/wiki/mirc/identifiers/$result</a>" }
,{ "trigger": " $rgb() Convert between R,G,B vs color number, or return system colors \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$rgb()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$rgb\">https://en.wikichip.org/wiki/mirc/identifiers/$rgb</a>" }
,{ "trigger": " $right() Return characters from the right side of a string \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$right()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$right\">https://en.wikichip.org/wiki/mirc/identifiers/$right</a>" }
,{ "trigger": " $rnick() Replaced by $nick. Returns regular nick on a channel \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$rnick()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$rnick\">https://en.wikichip.org/wiki/mirc/identifiers/$rnick</a>" }
,{ "trigger": " $round() Returns floating point number rounded to a number of decimal \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$round()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$round\">https://en.wikichip.org/wiki/mirc/identifiers/$round</a>" }
,{ "trigger": " $samepath() Evaluate whether two file paths resolve to the same \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$samepath()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$samepath\">https://en.wikichip.org/wiki/mirc/identifiers/$samepath</a>" }
,{ "trigger": " $scid() Get server id for a connection, or details about a connection id \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$scid()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$scid\">https://en.wikichip.org/wiki/mirc/identifiers/$scid</a>" }
,{ "trigger": " $scon() Get server id for a connection, or details. Works on the Nth connection \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$scon()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$scon\">https://en.wikichip.org/wiki/mirc/identifiers/$scon</a>" }
,{ "trigger": " $script Get filename of the Nth loaded script \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$script", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$script\">https://en.wikichip.org/wiki/mirc/identifiers/$script</a>" }
,{ "trigger": " $scriptdir Get directory of the Nth loaded script \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$scriptdir", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$scriptdir\">https://en.wikichip.org/wiki/mirc/identifiers/$scriptdir</a>" }
,{ "trigger": " $scriptline Returns the number of the line in the current script \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$scriptline", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$scriptline\">https://en.wikichip.org/wiki/mirc/identifiers/$scriptline</a>" }
,{ "trigger": " $sdir() Display select folder dialog and returns selected folder \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sdir()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sdir\">https://en.wikichip.org/wiki/mirc/identifiers/$sdir</a>" }
,{ "trigger": " $send() Get info on open DCC Send windows \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$send()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$send\">https://en.wikichip.org/wiki/mirc/identifiers/$send</a>" }
,{ "trigger": " $server() Get current server connection related to current window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$server()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$server\">https://en.wikichip.org/wiki/mirc/identifiers/$server</a>" }
,{ "trigger": " $serverip Get current server IP address \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$serverip", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$serverip\">https://en.wikichip.org/wiki/mirc/identifiers/$serverip</a>" }
,{ "trigger": " $servertarget Returns original address used to connect to the server \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$servertarget", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$servertarget\">https://en.wikichip.org/wiki/mirc/identifiers/$servertarget</a>" }
,{ "trigger": " $sfile() Display select file dialog and returns selected file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sfile()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sfile\">https://en.wikichip.org/wiki/mirc/identifiers/$sfile</a>" }
,{ "trigger": " $sha1() Get SHA1 hash of text, binvar, or file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sha1()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sha1\">https://en.wikichip.org/wiki/mirc/identifiers/$sha1</a>" }
,{ "trigger": " $sha256() Get SHA256 hash of text, binvar, or file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sha256()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sha256\">https://en.wikichip.org/wiki/mirc/identifiers/$sha256</a>" }
,{ "trigger": " $sha384() Get SHA384 hash of text, binvar, or file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sha384()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sha384\">https://en.wikichip.org/wiki/mirc/identifiers/$sha384</a>" }
,{ "trigger": " $sha512() Get SHA512 hash of text, binvar, or file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sha512()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sha512\">https://en.wikichip.org/wiki/mirc/identifiers/$sha512</a>" }
,{ "trigger": " $shortfn() Get short version of a file filename \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$shortfn()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$shortfn\">https://en.wikichip.org/wiki/mirc/identifiers/$shortfn</a>" }
,{ "trigger": " $show Returns $true if the alias is called silently with a dot \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$show", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$show\">https://en.wikichip.org/wiki/mirc/identifiers/$show</a>" }
,{ "trigger": " $signal Returns name of signal that triggered SIGNAL event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$signal", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$signal\">https://en.wikichip.org/wiki/mirc/identifiers/$signal</a>" }
,{ "trigger": " $sin() Returns sine of an angle of N radians \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sin()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sin\">https://en.wikichip.org/wiki/mirc/identifiers/$sin</a>" }
,{ "trigger": " $sinh() Returns hyperbolic sine of an angle of N radians \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sinh()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sinh\">https://en.wikichip.org/wiki/mirc/identifiers/$sinh</a>" }
,{ "trigger": " $site Returns portion of $address after @ \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$site", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$site\">https://en.wikichip.org/wiki/mirc/identifiers/$site</a>" }
,{ "trigger": " $sline() Returns the Nth selected line in a listbox \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sline()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sline\">https://en.wikichip.org/wiki/mirc/identifiers/$sline</a>" }
,{ "trigger": " $snick() Returns the Nth selected nick in a channel \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$snick()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$snick\">https://en.wikichip.org/wiki/mirc/identifiers/$snick</a>" }
,{ "trigger": " $snicks Returns CSV string of all selected nicks in channel list box \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$snicks", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$snicks\">https://en.wikichip.org/wiki/mirc/identifiers/$snicks</a>" }
,{ "trigger": " $snotify Returns the currently selected nick in notify list box \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$snotify", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$snotify\">https://en.wikichip.org/wiki/mirc/identifiers/$snotify</a>" }
,{ "trigger": " $sock() Returns info about currently opened sockets \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sock()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sock\">https://en.wikichip.org/wiki/mirc/identifiers/$sock</a>" }
,{ "trigger": " $sockbr Returns number of bytes read from the last /sockread command \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sockbr", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sockbr\">https://en.wikichip.org/wiki/mirc/identifiers/$sockbr</a>" }
,{ "trigger": " $sockerr Returns the sock error number if an error occurred \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sockerr", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sockerr\">https://en.wikichip.org/wiki/mirc/identifiers/$sockerr</a>" }
,{ "trigger": " $sockname Returns name of the socket in the current socket event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sockname", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sockname\">https://en.wikichip.org/wiki/mirc/identifiers/$sockname</a>" }
,{ "trigger": " $sorttok() Sorts tokens in text \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sorttok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sorttok\">https://en.wikichip.org/wiki/mirc/identifiers/$sorttok</a>" }
,{ "trigger": " $sorttokcs() Sorts tokens in text (case-sensitive) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sorttokcs()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sorttokcs\">https://en.wikichip.org/wiki/mirc/identifiers/$sorttokcs</a>" }
,{ "trigger": " $sound() Get info about sound files \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sound()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sound\">https://en.wikichip.org/wiki/mirc/identifiers/$sound</a>" }
,{ "trigger": " $speak() Returns Nth line currently queue via /speak command \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$speak()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$speak\">https://en.wikichip.org/wiki/mirc/identifiers/$speak</a>" }
,{ "trigger": " $sqrt Returns square root \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sqrt", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sqrt\">https://en.wikichip.org/wiki/mirc/identifiers/$sqrt</a>" }
,{ "trigger": " $sreq() Returns current parameter settings for DCC Sends \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sreq()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sreq\">https://en.wikichip.org/wiki/mirc/identifiers/$sreq</a>" }
,{ "trigger": " $ssl Returns $true if connected via SSL \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ssl", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ssl\">https://en.wikichip.org/wiki/mirc/identifiers/$ssl</a>" }
,{ "trigger": " $sslcertsha1 Returns the SHA1 fingerprint of the client cert \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sslcertsha1", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sslcertsha1\">https://en.wikichip.org/wiki/mirc/identifiers/$sslcertsha1</a>" }
,{ "trigger": " $sslcertsha256 Returns the SHA256 fingerprint of the client cert \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sslcertsha256", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sslcertsha256\">https://en.wikichip.org/wiki/mirc/identifiers/$sslcertsha256</a>" }
,{ "trigger": " $sslcertvalid Returns $true if the IRC network's SSL certificate is valid \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sslcertvalid", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sslcertvalid\">https://en.wikichip.org/wiki/mirc/identifiers/$sslcertvalid</a>" }
,{ "trigger": " $ssldll Return filename to SSL dll used by mIRC \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ssldll", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ssldll\">https://en.wikichip.org/wiki/mirc/identifiers/$ssldll</a>" }
,{ "trigger": " $sslhash() Returns SSL certificates for the active connection or $null if none \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sslhash()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sslhash\">https://en.wikichip.org/wiki/mirc/identifiers/$sslhash</a>" }
,{ "trigger": " $ssllibdll Returns filename to lib used for SSL \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ssllibdll", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ssllibdll\">https://en.wikichip.org/wiki/mirc/identifiers/$ssllibdll</a>" }
,{ "trigger": " $sslready Returns $true if capable of using SSL \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sslready", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sslready\">https://en.wikichip.org/wiki/mirc/identifiers/$sslready</a>" }
,{ "trigger": " $sslversion Returns version of the SSL lib in use \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sslversion", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sslversion\">https://en.wikichip.org/wiki/mirc/identifiers/$sslversion</a>" }
,{ "trigger": " $starting Return 1 in the ON START event if mIRC is starting \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$starting", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$starting\">https://en.wikichip.org/wiki/mirc/identifiers/$starting</a>" }
,{ "trigger": " $status Returns server connection status \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$status", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$status\">https://en.wikichip.org/wiki/mirc/identifiers/$status</a>" }
,{ "trigger": " $str() Duplicate specified string N times \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$str()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$str\">https://en.wikichip.org/wiki/mirc/identifiers/$str</a>" }
,{ "trigger": " $strip() Strip colors and other control codes from text \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$strip()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$strip\">https://en.wikichip.org/wiki/mirc/identifiers/$strip</a>" }
,{ "trigger": " $stripped Returns number of control codes stripped from a message \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$stripped", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$stripped\">https://en.wikichip.org/wiki/mirc/identifiers/$stripped</a>" }
,{ "trigger": " $style() Used inside menu definition to created checked or disabled menu item \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$style()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$style\">https://en.wikichip.org/wiki/mirc/identifiers/$style</a>" }
,{ "trigger": " $submenu() Can be used in popups definition to dynamically create a popup \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$submenu()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$submenu\">https://en.wikichip.org/wiki/mirc/identifiers/$submenu</a>" }
,{ "trigger": " $switchbar Returns $true if switchbar is enabled \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$switchbar", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$switchbar\">https://en.wikichip.org/wiki/mirc/identifiers/$switchbar</a>" }
,{ "trigger": " $sysdir() Returns system folders for the current user \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$sysdir()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$sysdir\">https://en.wikichip.org/wiki/mirc/identifiers/$sysdir</a>" }
,{ "trigger": " $tan() Returns the tangent of an angle of N radians \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$tan()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$tan\">https://en.wikichip.org/wiki/mirc/identifiers/$tan</a>" }
,{ "trigger": " $tanh() Returns the hyperbolic tangent of an angle of N radians \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$tanh()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$tanh\">https://en.wikichip.org/wiki/mirc/identifiers/$tanh</a>" }
,{ "trigger": " $target Returns target of an event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$target", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$target\">https://en.wikichip.org/wiki/mirc/identifiers/$target</a>" }
,{ "trigger": " $tempfn Return temporary filename in $mircdir using filename masked used by /write \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$tempfn", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$tempfn\">https://en.wikichip.org/wiki/mirc/identifiers/$tempfn</a>" }
,{ "trigger": " $ticks Get number of milliseconds since system was started \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ticks", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ticks\">https://en.wikichip.org/wiki/mirc/identifiers/$ticks</a>" }
,{ "trigger": " $ticksqpc Get high-resolution passage of time in milliseconds since machine was started \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ticksqpc", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ticksqpc\">https://en.wikichip.org/wiki/mirc/identifiers/$ticksqpc</a>" }
,{ "trigger": " $time Return current time in hour:minute:second format \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$time", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$time\">https://en.wikichip.org/wiki/mirc/identifiers/$time</a>" }
,{ "trigger": " $timeout Can be returned by $input \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$timeout", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$timeout\">https://en.wikichip.org/wiki/mirc/identifiers/$timeout</a>" }
,{ "trigger": " $timer() Return info about specified timer \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$timer()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$timer\">https://en.wikichip.org/wiki/mirc/identifiers/$timer</a>" }
,{ "trigger": " $timestamp Return the current time based on event timestamp format \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$timestamp", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$timestamp\">https://en.wikichip.org/wiki/mirc/identifiers/$timestamp</a>" }
,{ "trigger": " $timestampfmt Returns current timestamp format defined in mIRC options \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$timestampfmt", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$timestampfmt\">https://en.wikichip.org/wiki/mirc/identifiers/$timestampfmt</a>" }
,{ "trigger": " $timezone Return current timezone setting in seconds \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$timezone", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$timezone\">https://en.wikichip.org/wiki/mirc/identifiers/$timezone</a>" }
,{ "trigger": " $tip() Allow you to create scripted tips independent of normal tip events \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$tip()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$tip\">https://en.wikichip.org/wiki/mirc/identifiers/$tip</a>" }
,{ "trigger": " $tips Return $true if tips are on \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$tips", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$tips\">https://en.wikichip.org/wiki/mirc/identifiers/$tips</a>" }
,{ "trigger": " $titlebar Return current mIRC titlebar \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$titlebar", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$titlebar\">https://en.wikichip.org/wiki/mirc/identifiers/$titlebar</a>" }
,{ "trigger": " $token Replaced by $gettok. Get Nth token in delimited list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$token", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$token\">https://en.wikichip.org/wiki/mirc/identifiers/$token</a>" }
,{ "trigger": " $toolbar() Returns $true if toolbar is enabled \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$toolbar()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$toolbar\">https://en.wikichip.org/wiki/mirc/identifiers/$toolbar</a>" }
,{ "trigger": " $totp() Get TOTP based on specified parameters \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$totp()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$totp\">https://en.wikichip.org/wiki/mirc/identifiers/$totp</a>" }
,{ "trigger": " $treebar Gives current state of treebar \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$treebar", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$treebar\">https://en.wikichip.org/wiki/mirc/identifiers/$treebar</a>" }
,{ "trigger": " $true Result of successful comparison between values \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$true", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$true\">https://en.wikichip.org/wiki/mirc/identifiers/$true</a>" }
,{ "trigger": " $trust() Returns items in the DCC trust list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$trust()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$trust\">https://en.wikichip.org/wiki/mirc/identifiers/$trust</a>" }
,{ "trigger": " $ulevel Return matching user level for triggered events \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ulevel", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ulevel\">https://en.wikichip.org/wiki/mirc/identifiers/$ulevel</a>" }
,{ "trigger": " $ulist() Return the Nth address in Users list that matches address or level \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$ulist()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$ulist\">https://en.wikichip.org/wiki/mirc/identifiers/$ulist</a>" }
,{ "trigger": " $unsafe() Delay evaluation of text (ex: in timers) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$unsafe()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$unsafe\">https://en.wikichip.org/wiki/mirc/identifiers/$unsafe</a>" }
,{ "trigger": " $upper() Return text in upper case \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$upper()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$upper\">https://en.wikichip.org/wiki/mirc/identifiers/$upper</a>" }
,{ "trigger": " $uptime() Return the number of milliseconds since indicated event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$uptime()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$uptime\">https://en.wikichip.org/wiki/mirc/identifiers/$uptime</a>" }
,{ "trigger": " $url() Returns current URL in main browser, or get info about URL in URL list window \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$url()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$url\">https://en.wikichip.org/wiki/mirc/identifiers/$url</a>" }
,{ "trigger": " $urlget() Sends HEAD/GET/POST/PUT/PATCH/DELETE to an http server and returns an ID \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$urlget()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$urlget\">https://en.wikichip.org/wiki/mirc/identifiers/$urlget</a>" }
,{ "trigger": " $usermode Returns current usermode on IRC server \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$usermode", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$usermode\">https://en.wikichip.org/wiki/mirc/identifiers/$usermode</a>" }
,{ "trigger": " $utfdecode() Returns text decoded to UTF8 \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$utfdecode()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$utfdecode\">https://en.wikichip.org/wiki/mirc/identifiers/$utfdecode</a>" }
,{ "trigger": " $utfencode() Returns text encoded to UTF8 \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$utfencode()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$utfencode\">https://en.wikichip.org/wiki/mirc/identifiers/$utfencode</a>" }
,{ "trigger": " $v1 Return the left-hand parameter used in conditional statement (ex: $v1 == $v2) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$v1", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$v1\">https://en.wikichip.org/wiki/mirc/identifiers/$v1</a>" }
,{ "trigger": " $v2 Return the right-hand parameter used in conditional statement (ex: $v1 == $v2) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$v2", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$v2\">https://en.wikichip.org/wiki/mirc/identifiers/$v2</a>" }
,{ "trigger": " $var() Get info about the Nth matching variable \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$var()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$var\">https://en.wikichip.org/wiki/mirc/identifiers/$var</a>" }
,{ "trigger": " $vc() Get commands in voice command list, same as $vcmd \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$vc()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$vc\">https://en.wikichip.org/wiki/mirc/identifiers/$vc</a>" }
,{ "trigger": " $vcmd() Get commands in voice command list \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$vcmd()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$vcmd\">https://en.wikichip.org/wiki/mirc/identifiers/$vcmd</a>" }
,{ "trigger": " $vcmdstat Get current status of voice command listener \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$vcmdstat", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$vcmdstat\">https://en.wikichip.org/wiki/mirc/identifiers/$vcmdstat</a>" }
,{ "trigger": " $vcmdver Retrieve version of installed Speech Recognition software \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$vcmdver", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$vcmdver\">https://en.wikichip.org/wiki/mirc/identifiers/$vcmdver</a>" }
,{ "trigger": " $version Get current version of mIRC \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$version", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$version\">https://en.wikichip.org/wiki/mirc/identifiers/$version</a>" }
,{ "trigger": " $vnick Return nick who was voice/devoiced in ON VOICE or ON DEVOICE event \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$vnick", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$vnick\">https://en.wikichip.org/wiki/mirc/identifiers/$vnick</a>" }
,{ "trigger": " $vol() Get current volume \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$vol()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$vol\">https://en.wikichip.org/wiki/mirc/identifiers/$vol</a>" }
,{ "trigger": " $wavedir Replaced by $sound. Get directory specified in Sound Request dialog for wav file \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$wavedir", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$wavedir\">https://en.wikichip.org/wiki/mirc/identifiers/$wavedir</a>" }
,{ "trigger": " $wid Return the window id for the current script \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$wid", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$wid\">https://en.wikichip.org/wiki/mirc/identifiers/$wid</a>" }
,{ "trigger": " $width() Get width of text in pixel in the specified font \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$width()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$width\">https://en.wikichip.org/wiki/mirc/identifiers/$width</a>" }
,{ "trigger": " $wildsite Return address of user who triggered an event in format *!*@host \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$wildsite", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$wildsite\">https://en.wikichip.org/wiki/mirc/identifiers/$wildsite</a>" }
,{ "trigger": " $wildtok() Return the Nth token that matches in wildcard string \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$wildtok()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$wildtok\">https://en.wikichip.org/wiki/mirc/identifiers/$wildtok</a>" }
,{ "trigger": " $wildtokcs() Return the Nth token that matches wildcard string (case-sensitive) \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$wildtokcs()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$wildtokcs\">https://en.wikichip.org/wiki/mirc/identifiers/$wildtokcs</a>" }
,{ "trigger": " $window Get info about window for the current connection \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$window", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$window\">https://en.wikichip.org/wiki/mirc/identifiers/$window</a>" }
,{ "trigger": " $wrap() Returns the Nth line in text wrapped to the specified width in the specific font \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$wrap()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$wrap\">https://en.wikichip.org/wiki/mirc/identifiers/$wrap</a>" }
,{ "trigger": " $xor() Returns the binary XOR of 2 numbers \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$xor()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$xor\">https://en.wikichip.org/wiki/mirc/identifiers/$xor</a>" }
,{ "trigger": " $yes Returned when YES has been clicked in an $input prompt \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$yes", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$yes\">https://en.wikichip.org/wiki/mirc/identifiers/$yes</a>" }
,{ "trigger": " $zip() Creates/tests/extracts/lists zip using optional AES-256 encryption \t$", "kind": ["snippet","$", "Identifier"], "contents": "\\$zip()", "details": "For more information see: <a href=\"https://en.wikichip.org/wiki/mirc/identifiers/$zip\">https://en.wikichip.org/wiki/mirc/identifiers/$zip</a>" }
]
}