Hello,
Well I want to combine 2 macros I found:
Makes me write in a blue color/run if(not scm) then scm = SendChatMessage; end; function SendChatMessage(msg, type, lang, chan) scm("\124cff00B4FF\124Hitem:19:0:0:0:0:0:0:0\124h" ..msg.."\124h\124r", type, lang, chan);end;
Spaces so I write on the line under my name./run if (not scm) then scm = SendChatMessage; scmison = "yes" end function SendChatMessage(msg, type, lang, chan) if scmison=="no" then msg=msg; else for i=1,1 do msg = "\13"..msg; end end scm(msg, type, lang, chan) end
So basicly I want my text to be colored (blue in this case) and on the line under my name
like this:
[Name] says:
<GM>[Name] says: hey
also if it's possible it would be great if it was possible to say something before it jumps on the next line and even better if it could be in different colors
[Name] says: hey <-- White color on text
<GM>[Name] says: hey <-- Bluecolor on text
is this even possible?
I've tried colorme! and it didn't work quite as I wanted and I want to modify it alittle myself, but first I need some help from you guys
Edit:
Found a solution! If you put \n everything will start on the next line. Here is the finished macro:
/run if(not scm) then scm = SendChatMessage; end; function SendChatMessage(msg, type, lang, chan) scm("\n\124cff00B4FF\ <GM>\124cffFFFFFF\ "..msg.."\124r", type, lang, chan);end;