MMOCoin

Likes Likes:  0
Results 1 to 5 of 5

Thread: Gm tags

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Senior Sergeant
    *Alexz*'s Avatar
    Join Date
    Aug 2008
    Posts
    107
    Post Thanks / Like
    Rep Power
    18
    Reputation
    33

    Custom Gm Tags

    Want a title in to be displayed before your name?
    How to use:
    Change GMname == 'Yourname')to your name
    Change <Desired Tag> to the tag you want =P

    Note:
    This only works for gms



    Code:
    local ChatMsg = "#n"
    -- local Space = " "
    
    function ChatSystem(event, player, message, type, language)
    	if (message:find(ChatMsg.." ") == 1) then
    		local text = message:gsub(ChatMsg.." ", "") 
    				local plrs = GetPlayersInWorld()
    				for k, v in pairs(plrs) do
    								local GMname = player:GetName()
    								if (GMname == 'Yourname') then 
    									v:SendBroadcastMessage("|cFF00FFFF<Desired Tag>|cffffff00["..player:GetName().."]: |cFF00FFFF"..text.."")
    								end
    			end
    		return 0
    	end	
    end
    
    RegisterServerHook(16, "ChatSystem")
    Last edited by *Alexz*; 13-06-10 at 08:29 AM. Reason: Renamed topic



  2. Related Threads - Scroll Down after related threads if you are only interested to view replies for above post/thread

 

 

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •