_Added in 1.9.7_ *$prefixemote* Returns the emote message prefix format from [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] -> [[Messages_Options#Message-prefix-Emote|Prefix Emote]]. *Example*
; Replace $pnick in $prefixemote with Bob instead of $nick.
on *:ACTION:*:#:echo # $replace($prefixemote, $ $+ pnick, Bob) $1
----------------------------------------------------------------------------- *$prefixemote(channel, nick, [prefix])* Replaces and formats emote message prefix from [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] -> [[Messages_Options#Message-prefix-Emote|Prefix Emote]]. *Parameters* table(ktable). |*Parameter*|*Description*| | channel | Channel where the nick is. | | nick | The nick to lookup. | | [prefix] | A custom channelnick prefix. (optional) | *Example*
; Format your own nick on current channel.
//echo -ag $prefixemote(#, $me)

; Formar your own nick using your nick color.
//echo -ag $prefixemote(#, $chr(3) $+ $nick(#,$me).color $+ $me $+ $chr(3))

; Formar your own nick using your rgb nick color.
//echo -ag $prefixemote(#, $chr(4) $+ $nick(#,$me).rgbcolor $+ $me $+ $chr(3))