View Single Post
04/09/14, 01:29 AM   #8
Tajin
 
Tajin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 29
I've seen different suffixes, not just ^n so I use this:
Lua Code:
  1. local function ParseChat(id, channel, fromName, text)
  2.     i = string.find(fromName,"^",0,true)
  3.     if i ~= nil then
  4.         fromName = string.sub(fromName,0,i-1)
  5.     end
  6. ...
  Reply With Quote