[Beta] GM Chat Addon menu

User Tag List

Poll: Do you want a better version of this?

Be advised that this is a public poll: other users can see the choice(s) you selected.

Page 1 of 2 12 LastLast
Results 1 to 15 of 28
  1. #1
    hp94's Avatar Legendary
    Reputation
    742
    Join Date
    Nov 2009
    Posts
    587
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Beta] GM Chat Addon

    Deleted as per request.
    Last edited by hp94; 12-15-2010 at 04:24 PM.

    [Beta] GM Chat Addon
  2. #2
    Zoidberg's Avatar Elite User
    Reputation
    391
    Join Date
    Mar 2007
    Posts
    1,636
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks nice, it's in the wrong section though, since it's an addon.
    /moved. (Left a temporary redirect in bots and programs section).

    Abra su mente a la realidad.
    Do NOT contact me about trading section stuff. Contact a section MOD instead.

  3. #3
    hp94's Avatar Legendary
    Reputation
    742
    Join Date
    Nov 2009
    Posts
    587
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zoidberg View Post
    Looks nice, it's in the wrong section though, since it's an addon.
    /moved. (Left a temporary redirect in bots and programs section).
    Oh, geez, it's 4:30 in the morning here, I'm just kinda tired =(. Don't worry, I'll get my grammar and logic back in the morning.

  4. #4
    Barrt73Rus's Avatar Banned
    Reputation
    171
    Join Date
    May 2009
    Posts
    1,272
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    screenshots?
    and upload 3 files in 1 archive

  5. #5
    nightcracker's Avatar Contributor
    Reputation
    102
    Join Date
    Jan 2008
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lua is a name, not an acronym, so it's Lua and not LUA.

    And bro, are you kidding me? Your whole 20kB addon can be an one-liner...
    Code:
    local gm = GMChatFrame_OnEvent
    function GMChatFrame_OnEvent(self, event, arg1, arg2, arg3, arg4, arg5, _, ...)
    	gm(self, event, arg1, arg2, arg3, arg4, arg5, "GM", ...)
    end
    And here as a macro:
    Code:
    /run local g=GMChatFrame_OnEvent;function GMChatFrame_OnEvent(s,e,a1,a2,a3,a4,a5,_,...)g(s,e,a1,a2,a3,a4,a5,"GM",...)end

  6. #6
    hp94's Avatar Legendary
    Reputation
    742
    Join Date
    Nov 2009
    Posts
    587
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Deleted as per request.
    Last edited by hp94; 12-15-2010 at 04:25 PM.

  7. #7
    Willzy's Avatar Banned
    Reputation
    22
    Join Date
    Jul 2010
    Posts
    389
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hp94 View Post
    Ah, but if I recall, that only works if Blizzards own GMChatUI is loaded, which it isn't, unless you talk to a real GM first.

    EDIT: I got a screenshot for people that want to see:

    WoWScrnShot_092710_142817.jpg picture by 8u3jc - Photobucket
    WoWScrnShot_092710_143515.jpg picture by 8u3jc - Photobucket

    EDIT: I also couldn't get your version to work... Have you tried it? Or am I missing a step?

    HP, what server is that? I'd like to join it.

  8. #8
    hp94's Avatar Legendary
    Reputation
    742
    Join Date
    Nov 2009
    Posts
    587
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Willzy View Post

    HP, what server is that? I'd like to join it.
    Torthreldrin, all my characters are on it.

  9. #9
    nightcracker's Avatar Contributor
    Reputation
    102
    Join Date
    Jan 2008
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Woops forgot LoadAddOn().

    Code:
    /run LoadAddOn"Blizzard_GMChatUI"local g=GMChatFrame_OnEvent;function GMChatFrame_OnEvent(s,e,a1,a2,a3,a4,a5,_,...)g(s,e,a1,a2,a3,a4,a5,"GM",...)end

  10. #10
    hp94's Avatar Legendary
    Reputation
    742
    Join Date
    Nov 2009
    Posts
    587
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Deleted as per request.
    Last edited by hp94; 12-15-2010 at 04:25 PM.

  11. #11
    nightcracker's Avatar Contributor
    Reputation
    102
    Join Date
    Jan 2008
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I used a diff program on the original GMChatUI and your addon. The differences were minimal but critical. There were no XML changes, only Lua changes.

    You also made some stupid errors. Like this:
    Code:
    local ListOfGMs = {Immortalmage};
    This is equal to the following since Immortalmage is a variable not yet set to anything.
    Code:
    local ListOfGMs = {nil};
    The next diff was the following line:
    Code:
    if ( event == "CHAT_MSG_WHISPER" ) then
    instead of
    Code:
    if ( event == "CHAT_MSG_WHISPER" and arg6 == "GM" ) then
    Simple, you removed the check wether we are GM or not, I did this with a pre-hook in my macro.

    The next diff was a non-important one, removing the check for CHAT_SHOW_ICONS, doesn't matter.

    The next diff was forgotten in my macro, it was the addition of this line:
    Code:
    table.insert(self.lastGM,arg2);
    This is used only for the setting of the /r tell target, no space for it in my macro.

    The next diff was a non-important one, replacing GM_CHAT_STATUS_READY_DESCRIPTION with "An Administrative Game Master must speak with you".

    The next diff was a critical one not added in my macro, the removal of the GMChatFrame_IsGM check. I'm going to add that.

    So my macro after this change:
    Code:
    /run LoadAddOn"Blizzard_GMChatUI"function GMChatFrame_IsGM()return 1 end;local g=GMChatFrame_OnEvent;function GMChatFrame_OnEvent(s,e,a1,a2,a3,a4,a5,_,...)g(s,e,a1,a2,a3,a4,a5,"GM",...)end

  12. #12
    hp94's Avatar Legendary
    Reputation
    742
    Join Date
    Nov 2009
    Posts
    587
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Deleted as per request.
    Last edited by hp94; 12-15-2010 at 04:26 PM.

  13. #13
    Willzy's Avatar Banned
    Reputation
    22
    Join Date
    Jul 2010
    Posts
    389
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hp94 View Post
    Torthreldrin, all my characters are on it.
    I mean the one in the picture where you're a GM.

  14. #14
    hp94's Avatar Legendary
    Reputation
    742
    Join Date
    Nov 2009
    Posts
    587
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Deleted as per request.
    Last edited by hp94; 12-15-2010 at 04:26 PM.

  15. #15
    Willzy's Avatar Banned
    Reputation
    22
    Join Date
    Jul 2010
    Posts
    389
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hp94 View Post
    It's a live server. It's called Torthreldrin.

    I'm not a private server GM - the point of the Addon is to make it look like you're talking to a GM.

    Ooooh, my bad, thanks anyway.

Page 1 of 2 12 LastLast

Similar Threads

  1. Protected LUA Code and Chat Addons
    By Ultraviolence in forum WoW UI, Macros and Talent Specs
    Replies: 0
    Last Post: 04-20-2010, 12:01 AM
  2. ColorMe! 4 beta - good chat exploit addon
    By vvvat in forum World of Warcraft Exploits
    Replies: 14
    Last Post: 05-20-2008, 09:47 AM
  3. [Chat Addon]Prat 2.0 -- Really Awesome
    By Icicle in forum World of Warcraft Guides
    Replies: 3
    Last Post: 02-16-2008, 08:39 AM
  4. [addon] lf chat addon
    By jabbah in forum WoW UI, Macros and Talent Specs
    Replies: 6
    Last Post: 02-12-2008, 06:12 AM
  5. Great chat addon for botters and afkers
    By Scilent in forum World of Warcraft Guides
    Replies: 7
    Last Post: 11-28-2007, 07:14 PM
All times are GMT -5. The time now is 04:48 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search