1. Is it possible to make a script that does the following:
Whenever I write anything, it will write the message character by character with delay of 0.5 second. So example:
"Hello" will become:
H <0,5s> e <0,5s> l <0,5s> l <0,5s> o <0,5s>
It should write it in same message, not new line for each character.
2. Second question:
I have this script here:
code:
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
return "msg = [ " + Message + " ]"
}
How would I make everything except the Message some color?