Hello, I was messing around trying to do the 'otherworld' glitch on private servers and I discovered it didn't really work as expected.
The macro suggested for disconnecting yourself didn't work, however it had the interesting side effect of letting you speak in a different colour than default.
Here is the (modified) macro. I removed the unimportant parts.
Code:
/run if(not scm) then scm = SendChatMessage; end; function SendChatMessage(msg,type,lang,chan) scm("\124cFF7F00FF\124Hitem:19:0:0:0:0:0 :0: \124h" ..msg.. "\124h\124r",type,lang,chan);end;
The relevant part of this macro is the \124cFF7F00FF
This macro will turn all of your next chat messages Purple (everyone loves purple!) after you press it. It lasts until you log out.
This is because 7F00FF is the hex code for Purple. Simply replace this hex code with whatever colour you want!
Here is a nice chart with lots of different hex codes on it:
Web Color Chart - Hexadecimal - by VisiBone
Each hex code is 6 characters, make sure you get the whole thing! They are the 6 numbers in each coloured box, but there are 3 on each line for space purposes.
For example, the code for Red from that chart looks like
so that would be FF0000. Sticking that into our macro:
Code:
/run if(not scm) then scm = SendChatMessage; end; function SendChatMessage(msg,type,lang,chan) scm("\124cFFFF000\124Hitem:19:0:0:0:0:0 :0: \124h" ..msg.. "\124h\124r",type,lang,chan);end;
Enjoy!
P.S. I tested this on Mangos, maybe it works on other servers too.