Thread Tools Display Modes
04/15/14, 06:51 AM   #1
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   #2
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   #3
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   #4
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   #5
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
04/24/14, 02:08 PM   #6
archpoet
Cunning Linguist
 
archpoet's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 19
Originally Posted by Seerah View Post
That's not what these characters are for, but thanks for the link.
Oh, hmm.. it seemed likely considering ^M^F is CarriageReturn,ACK.

However, if Bl4ckSh33p's function is actually stripping them.. then they are the string representations rather than the control characters themselves.
  Reply With Quote
04/24/14, 06:54 PM   #7
Nameious
Join Date: Apr 2014
Posts: 29
I'm actually having this issue again, but not sure which is causing it. Possibly FTC? I'll have to check my addons and see which it is. It seems to only happen on named mobs IE bosses and I'll see IE Molag Bal^^ and ect. Honestly my addon library is vast this might take awhile.
  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