[release] fake gm icon in chat, not very good but it works like a charm ^^ menu

User Tag List

Page 3 of 5 FirstFirst 12345 LastLast
Results 31 to 45 of 63
  1. #31
    Opirity1's Avatar Banned
    Reputation
    158
    Join Date
    Apr 2007
    Posts
    1,222
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    dont be so harsh.


    its serverside and its private server only ,

    example, this would be awesome on toxic wow


    <GM>: I need to investigate your account
    noob.: OK NAME: OOLMAN PASS: LOOLMAN


    anywya , u have to get this thread moved

    [release] fake gm icon in chat, not very good but it works like a charm ^^
  2. #32
    Moskva's Avatar Member
    Reputation
    31
    Join Date
    Dec 2007
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm kind of in a mood.

    Most people stopped coding addons like that a year ago+ for a reason. The entire functionality can be easily well-replicated either with just a lua and toc file:

    FakeGM/core.lua
    Code:
    FAKE_GM_ON = false
    local Old_SendChatMessage = SendChatMessage
    SendChatMessage = function(msg, ...)
        if FAKE_GM_ON == true then
            msg = "|TInterfaceChatFrameUI-ChatIcon-Blizz.blp:0:2:0:-3|t " .. msg
        end
        Old_SendChatMessage(msg, ...)
    end
    SlashCmdList["FAKEGM"] = function()
        if FAKE_GM_ON == true then
            FAKE_GM_ON = false
            DEFAULT_CHAT_FRAME:AddMessage("Fake GM disabled.")
        else
            FAKE_GM_ON = enabled
            DEFAULT_CHAT_FRAME:AddMessage("Fake GM enabled.")
        end
    end
    SLASH_FAKEGM1 = "/fakegm"
    SLASH_FAKEGM2 = "/gmtoggle"
    FakeGM/FakeGM.toc
    Code:
    ## Interface: 24000
    ## Title: Fake GM
    core.lua
    (toggle with /fakegm or /gmtoggle)
    or the entire thing could be replicated in a macro that you run before each time you'd like to start.

    Code:
    /script local SCM=SendChatMessage SendChatMessage=function(t,...)if(FGM)then t="124TInterfaceChatFrameUI-ChatIcon-Blizz.blp:0:2:0:-3124t "..t end SCM(t,...) end SlashCmdList["FGM"]=function()if(FGM)then FGM=nil else FGM=true end end SLASH_FGM1="/fgm"
    Entire thing comes in under macro max length (251 chars), still has a toggle slash command (/fgm); only difference is that you have to run it before you do /fgm if you haven't since the last time you've reloaded UI (or started game, etc.), and that you don't get a chat message notification of it being enabled/disabled.

    Haven't tested any of this, but I can't see any syntax errors.

    Basically, my point is: badly hacked up gigantic bloated badly-coded mod is bad.
    19+3 lines of relatively, extremely-low-impact code that could even be made further elegant with a few seconds of cleanup is good.

    K? Enjoy your UI using like, 150KB less memory.
    (oh, and the formatting on the GM icon in chat thing was taken directly from ChatFrame.lua, so its positioning should be spot-on)

    Like I said, I'm in kind of a mood.

    edit: forgot /script i'm a half-retard. still 251 chars.

  3. #33
    H3llf!re's Avatar Member
    Reputation
    122
    Join Date
    Aug 2008
    Posts
    111
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Moskva View Post
    K? Enjoy your UI using like, 150KB less memory.
    okay your code is definitely better (mine has 11kb not 150kb btw its a total myth that addons could really slow down wow (except load screen) mobmap has far more then 5mb...)
    but its like i sayed i made it just 4 fun and basically just for me so i didnt care about the quality/compression of the code.
    so i need a signature?

  4. #34
    shadowbladex's Avatar Member
    Reputation
    145
    Join Date
    Apr 2007
    Posts
    948
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lmao.. i got a lot of accounts on private servers with this. Nice.


  5. #35
    forsaken95's Avatar Member
    Reputation
    7
    Join Date
    Mar 2008
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol it doesn't work for me... Ive writed /gmon but it doesnt worked...

  6. #36
    H3llf!re's Avatar Member
    Reputation
    122
    Join Date
    Aug 2008
    Posts
    111
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @orsaken95: u must have done anything wrong. /gmon MUST work even if u have colorme (forgot to tell u that u have to turn of cm if u've got it) it might be that u get an error when u try to speak or that the message will be blocked by the server or u get a dc.... but /gmon must work! did u pit the addon in the addon folder? have u restartet wow after that?
    so i need a signature?

  7. #37
    forsaken95's Avatar Member
    Reputation
    7
    Join Date
    Mar 2008
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I puted (sry for bad english) it to the addons map... but i doesnt work :S. And i restarted wow. if is write /gmon its say /help for a few commands
    Last edited by forsaken95; 09-22-2008 at 09:46 AM.

  8. #38
    Aelus's Avatar Active Member
    Reputation
    72
    Join Date
    Jan 2007
    Posts
    687
    Thanks G/R
    0/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I love how people actually think sometimes this stuff works on real. And if it did that it would even be shared/free



  9. #39
    H3llf!re's Avatar Member
    Reputation
    122
    Join Date
    Aug 2008
    Posts
    111
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by forsaken95 View Post
    I puted (sry for bad english) it to the addons map... but i doesnt work :S. And i restarted wow. if is write /gmon its say /help for a few commands
    if the help page is displayed it means that the addon isnt loaded. it must be in wow/interface/addon perhaps its unchecked (addon menu on char select)
    so i need a signature?

  10. #40
    blizzlock's Avatar Member
    Reputation
    9
    Join Date
    Jan 2008
    Posts
    71
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its Not Working It Just Turns My Text Yellow.

  11. #41
    H3llf!re's Avatar Member
    Reputation
    122
    Join Date
    Aug 2008
    Posts
    111
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by blizzlock View Post
    Its Not Working It Just Turns My Text Yellow.
    u must write /gmon and then /gm
    so i need a signature?

  12. #42
    MarkoTheHunter's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Rolf nice it works... when i typed hello like all of the ppl say hello gm xD

  13. #43
    spikerlol's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It works, but when a person was about to give me their account info, I told them that their stats were fixed. I dont have the heart for scamming people =(.

  14. #44
    dontblink438's Avatar Active Member
    Reputation
    22
    Join Date
    Aug 2008
    Posts
    223
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol nice addon, now i can just go around and mess with my friends lol

  15. #45
    ArmoredFish's Avatar Member
    Reputation
    28
    Join Date
    Nov 2007
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    LOL I used this on a toxic, and all I said in /1 durotar was how was everyone doing, and incredibly, everyone beleived I was a GM and they were all really nice to me. So I started to just do a /s chat in org and I had tons of people around be asking me about bugs and stuff and then I got a ban oh well tons more to go to +rep

Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. Not very good, anyway here it is guitar solo
    By azzclown in forum Screenshot & Video Showoff
    Replies: 4
    Last Post: 06-10-2009, 05:21 AM
  2. my general chat not working
    By kratos5794 in forum World of Warcraft General
    Replies: 0
    Last Post: 10-25-2007, 09:55 PM
All times are GMT -5. The time now is 05:05 PM. 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