View Single Post
03-05-14, 11:11 AM   #2
GnomTEC
A Defias Bandit
 
GnomTEC's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 3
I remove the Space from the name i got from GetRealmName(), this seems to be the same what Blizzard does.
Ofcourse nobody can say what funny ideas they have next, perhaps changing case unpredictable.

At the moment i use following in my code (which you have then to concatenate with the player's name):

Lua Code:
  1. string.gsub(GetRealmName(), "%s+", "")

PS: to get player and realm from sender i use following:

Lua Code:
  1. player, realm = strsplit( "-", sender, 2 )
__________________
GnomTEC - Gnomische Technologie für ein freies Gnomeregan
(GnomTEC - Gnomish technology for a free Gnomeregan)

Last edited by GnomTEC : 03-05-14 at 11:14 AM.
  Reply With Quote