Thread Tools Display Modes
04/14/14, 06:09 PM   #1
Nameious
Join Date: Apr 2014
Posts: 29
Names with ^M and ^F

Anyone notice this? I can see it in subtitles. It stands for Male and Female as each time its a male with ^M and ^F for females. Its not game breaking, but rather annoying. Is this a addon issue or a UI bug within the game?
  Reply With Quote
04/14/14, 09:11 PM   #2
Seerah
Fishing Trainer
 
Seerah's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 648
Subtitles is an addon, no? It's an addon issue because they're not parsing those codes out of the name. (Those aren't the only suffixes added, btw.)
  Reply With Quote
04/15/14, 01:08 AM   #3
Nameious
Join Date: Apr 2014
Posts: 29
No you right click chat and select NPC. Anyways I see it in HUD aswell.
  Reply With Quote
04/15/14, 06:32 AM   #4
wilson0x4d
Premium Member
 
wilson0x4d's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 6
As Seerah noted... It's an add-on issue and means names are displayed/used without being parsed first.

If you see this happening in a default game UI (without any Add-Ons loaded) then you should open a bug report with ZeniMax support, the game should not be displaying unparsed names. Otherwise you may want to try and figure out which Add-On is misbehaving and contact the author(s) for a fix.
  Reply With Quote
04/15/14, 06:51 AM   #5
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by Nameious View Post
Anyone notice this? I can see it in subtitles. It stands for Male and Female as each time its a male with ^M and ^F for females. Its not game breaking, but rather annoying. Is this a addon issue or a UI bug within the game?
Do you use pChat addon? If you do, try to update it to the latest version. In the changelog he has the following line for version 1.4.1:
- Fixed NPC names displaying ^F and ^M
  Reply With Quote
04/16/14, 10:25 AM   #6
Nameious
Join Date: Apr 2014
Posts: 29
Originally Posted by Garkin View Post
Do you use pChat addon? If you do, try to update it to the latest version. In the changelog he has the following line for version 1.4.1:
This as indeed the case.. I missed an update somewhere.
  Reply With Quote
04/19/14, 01:04 PM   #7
Bl4ckSh33p
 
Bl4ckSh33p's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 20
The German client has this "issue" almost everywhere. Zonenames, Charnames, Itemnames.. all have extra text added. I wrote a few lines to remove them and my brother created a function for it. If you have an addon with this issue you should be able to fix it with this code:

Code:
ESNT_sauber = function(test)
 	if test then
		local pos = string.find (test, "^", 1, true) 
		if pos then
			test = string.sub (test, 1, pos-1)
		end
	return test	
	end
end
Just call this function with your string as parameter (test). This should remove all parts behind "^" and just display the name.
  Reply With Quote
04/24/14, 01:14 PM   #8
archpoet
Cunning Linguist
 
archpoet's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 19
http://en.wiktionary.org/wiki/Append...rol_characters
  Reply With Quote
04/24/14, 02:02 PM   #9
Seerah
Fishing Trainer
 
Seerah's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 648
That's not what these characters are for, but thanks for the link.
  Reply With Quote

ESOUI » AddOns » AddOn Help/Support » Names with ^M and ^F


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off