$prefixuser » History » Revision 4
Revision 3 (Per Amundsen, 08/09/2015 02:48 AM) → Revision 4/11 (Per Amundsen, 08/24/2015 01:14 AM)
_Added in 1.9.7_
*$prefixuser*
Returns the user message prefix format from [[Options_Dialog|Options]] -> [[Options_Messages|Messages]].
*Example*
<pre>
; Replace $pnick in $prefixuser with Bob instead of $nick.
on *:TEXT:*:#:echo # $replace($prefixuser, $ $+ pnick, Bob) $1-
</pre>
-----------------------------------------------------------------------------
*$prefixuser(channel, nick, [prefix])*
Replaces and formats variables from [Options_Dialog|Options]] -> [[Options_Messages|Messages]].
*Parameters*
channel - Channel where the nick is.
nick - The nick to lookup.
[prefix] - A custom channelnick prefix. (optional)
*Example*
<pre>
; Format your own nick on current channel.
//echo -ag $prefixuser(#, $me)
</pre>