code:
if (Message == "/whatever")
{
Wnd.MessageSend("Whatever")
}
In this code, "/whatever" is sent as a message and "Whatever" is also sent as a message. But, in the code, "/whatever" is not:
code:
if (Message == "/whatever")
{
return "whatever"
}
How can I modify the first code to
not send "/whatever", like in the second code?