Project

General

Profile

Ialmark » History » Version 8

Per Amundsen, 02/16/2023 12:51 PM

1 1 Per Amundsen
_Added in 1.9.9_
2
3 2 Per Amundsen
*/ialmark [-nrw] <nick> [name] [text]*
4 1 Per Amundsen
5
Marks the IAL entry for a nickname with the specified text.
6
7 7 Per Amundsen
_See also [[$ialmark]], [[$ial]], [[/ial]], [[/ialfill]], [[on CHGIAL]]._._
8 3 Per Amundsen
9 2 Per Amundsen
*Switches*
10
11 8 Per Amundsen
table(ktable).
12
|*Switch*|*Description*|
13
| -n | Indicates [name] is defined, If -n is not Defined, the default name 'default' is used. |
14
| -r | Removes the mark. |
15
| -w | Indicates [name] is a [[Scripting_Wildcards<notextile>|</notextile>wildcard]]. |
16
| -W | Indicates <nick> is a [[Scripting_Wildcards<notextile>|</notextile>wildcard]]. *(AdiIRC only)* |
17 1 Per Amundsen
18 5 Per Amundsen
*Parameters*
19 2 Per Amundsen
20 8 Per Amundsen
table(ktable).
21
|*Parameter*|*Description*|
22
| <nick> | Nick to mark. |
23
| [name] | Name of the mark. |
24
| [Text] | Text to mark. |
25 1 Per Amundsen
26
*Example*
27
28
<pre>
29
; Mark the nick 'Nick' with the text 'Hello World'.
30
/ialmark Nick Hello World
31
32
; Print the mark.
33
//echo -ag $ial(Nick).mark
34 3 Per Amundsen
35
; Sets a mark for the nick 'nick' with the name 'markname' and the text 'mark text'.
36
/ialmark -n nick markname mark text
37
38
; Retrieve the mark text for the name 'markname'.
39
//echo -ag $ialmark(nick, markname)
40 1 Per Amundsen
</pre>