Garble your chat messages menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 30
  1. #1
    Saiket's Avatar Contributor
    Reputation
    146
    Join Date
    Jul 2007
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Garble your chat messages

    Note: This doesn't seem to work on EU clients.

    I remember seeing a post about how to make chat "look funny" on here a while ago, but it wasn't described well and was hard or impossible to reproduce.

    I just found that any undisplayed ASCII character now turns into a "?" and gets displayed over top of the character following it (I think this is a new "feature" of the 2.2 patch). Here's what that looks like in chat:





    Garbled Text Macro:

    Naturally I wrote a macro to do it for me; here's the result. It takes any chat message and sends a garbled version wherever you want.
    Code:
    /run local t,p,m="WHISPER","Saiket","Can you read a word of this?"SendChatMessage(gsub(m,"[33-128]",function(c)return"\31"..c;end),t,nil,p)
    • "WHISPER" - The type of chat message, like "SAY" or "YELL". Possible values are listed at WoWWiki.
    • "Saiket" - If you're using the "WHISPER" chat type above, this specifies your whisper target. This example would send the tell to the character Saiket. If you use the "CHANNEL" chat type, this is the channel number to send to. Note that channel numbers should not have quotes around them. You can leave this alone for other chat types.
    • "Can you..." - The message you want to send.
    Note: All of the above fields must be surrounded in quotes like the example, except when specifying a channel number for the "CHANNEL" chat type.


    This may not be very useful, but I thought it was worth sharing.
    Last edited by Saiket; 12-08-2007 at 05:17 AM. Reason: Doesn't work on EU clients. Changed image hosts.

    Garble your chat messages
  2. #2
    s_t_f_u0's Avatar Member
    Reputation
    9
    Join Date
    May 2007
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    haha thats pretty sweet. Never seen somethin like that before. +rep

  3. #3
    illogic's Avatar Member
    Reputation
    22
    Join Date
    Sep 2007
    Posts
    215
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    wow real nice lol ima spam alot now!

  4. #4
    Skream's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    The spam is strong with this one, it is.
    lol +repzorz

  5. #5
    treyska's Avatar Drummer / Designer
    Reputation
    392
    Join Date
    Nov 2006
    Posts
    1,039
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    nice detailed explanation. +rep


  6. #6
    holydivah's Avatar Member
    Reputation
    1
    Join Date
    Jul 2007
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    I didn't know WoW's engine could recognize this code in macros.

    Couldn't you do this to a GM to confuse them?

    Would rep if I could.

  7. #7
    Saiket's Avatar Contributor
    Reputation
    146
    Join Date
    Jul 2007
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    Originally Posted by holydivah View Post
    Couldn't you do this to a GM to confuse them?
    You probably could, but that's assuming that GMs answer tickets from inside WoW. If they use some sort of special GM chat program, it might look different. Not much to worry about though, because it would most likely just look like normal text with no garbage to them. Worst case scenario would make your text look like "□C□h□a□t□ □M□e□s□s□a□g□e", although that's unlikely.

  8. #8
    psyco1999's Avatar Member
    Reputation
    2
    Join Date
    Sep 2007
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages



    /confirm

  9. #9
    Eratoc's Avatar Member Elite
    Reputation
    12
    Join Date
    Jul 2006
    Posts
    452
    Thanks G/R
    10/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    Awesome!
    +2rep.

    What program did you use for censuring?

  10. #10
    lolboll's Avatar Member
    Reputation
    1
    Join Date
    Mar 2007
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    how do i do to send it in a channel?

  11. #11
    Saiket's Avatar Contributor
    Reputation
    146
    Join Date
    Jul 2007
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    Originally Posted by Eratoc View Post
    What program did you use for censuring?
    I used GIMP 2.2 (it's free). I selected the entire name and used the Gaussian Blur filter in the Filters->Blur menu. Then in the Gaussian Blur popup, I set Horizontal Blur radius to 10 px and left Vertical Blur radius at 5 px.


    Originally Posted by lolboll View Post
    how do i do to send it in a channel?
    Set the chat type to "CHANNEL" and the whisper target to the channel number to send to. For example, the following version of the macro will send to channel two:
    Code:
    /run local t,p,m="CHANNEL",2,"WTS ..."SendChatMessage(gsub(m,"[33-128]",function(c)return"\31"..c;end),t,nil,p)
    Remember that channel numbers can change if you join or leave other channels, and that the numbers can vary from character to character. If Trade channel messages look like "[2. Trade] [Saiket]: WTS ...", you know that using the number 2 will send to the trade channel.

    Keep in mind that garbled item links will probably disconnect you. I haven't tested them, but be warned about garbling them.
    Last edited by Saiket; 10-04-2007 at 01:37 PM. Reason: The forum keeps removing "\"s. :(

  12. #12
    tazmansk's Avatar Member
    Reputation
    1
    Join Date
    Jun 2007
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    This dosent work for me for some reason...

    EU servers patch 2.2.0

    If this helps :

    /run local t,p,m="WHISPER","Zeuvz","Can you read a word of this?"SendChatMessage(gsub(m,"[33-128]",function(c)return"31"..c;end),t,nil,p)

  13. #13
    Rawrbomb's Avatar Member
    Reputation
    17
    Join Date
    May 2007
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    I gona have to try that heh

  14. #14
    GunOA's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    Doesn't work for me.

  15. #15
    Mikemaladar's Avatar Member
    Reputation
    1
    Join Date
    May 2007
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Garble your chat messages

    Doesn't work for me either.. Just sends it normally

Page 1 of 2 12 LastLast

Similar Threads

  1. Read Chat messages out-of-process
    By kajko in forum WoW Memory Editing
    Replies: 2
    Last Post: 05-06-2011, 10:55 AM
  2. hp94: Fake Your Chat Logs!
    By hp94 in forum World of Warcraft Exploits
    Replies: 53
    Last Post: 08-09-2010, 08:19 PM
  3. [Release] Guardians Fake-It! (Fake chat messages, Retail Version)
    By The-Guardian in forum World of Warcraft Bots and Programs
    Replies: 13
    Last Post: 08-07-2010, 11:51 PM
  4. Read Chat messages 3.2.0
    By The-Guardian in forum WoW Memory Editing
    Replies: 7
    Last Post: 08-10-2009, 01:30 PM
  5. Imitate any chat message through GMotD
    By Saiket in forum World of Warcraft Exploits
    Replies: 31
    Last Post: 09-19-2007, 03:20 PM
All times are GMT -5. The time now is 01:27 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search