As the other posters have said, this is not a bug, it is a feature. ;)
Imagine in your trigger you wanted to say something with < or > symbols in it, like this:
Say ("Woot! </send> I levelled!")
I know this might seem a strange thing to say, but imagine you wanted to.
Now the trigger parser needs to know the difference between the </send> at the end of the "send" text, and a </send> in the middle of it.
Thus it converts it to:
Say ("Woot! </send> I levelled!")
However if you try to paste the trigger back into MUSHclient (try it, on a different world) then it works symmetrically, and converts the special characters back again.
Since the converted text uses ampersands, they too have to be converted. Thus:
Say ("It is raining cats & dogs")
becomes:
Say ("It is raining cats & dogs")
Quote:
When I copy things into the website, should I edit things that are escaped?
You should leave them as is, or the triggers or whatever they are could become unusable.
However there is a "gotcha" with the forum (that does not apply to simply copying and pasting triggers at home).
If you use square brackets, or backslashes, and are using "forum codes" then
they should be escaped. You used the [code] tag in your original post. Imagine what would happen if you had wanted to say:
Say ("Woot! [code] I just levelled!")
The forum would interpret [code] as a forum tag.
To avoid this,
if you are posting on the forum you should "escape" out square brackets and backslashes. Fortunately MUSHclient gives you a menu item to do just that. See the Edit menu -> Convert Clipboard Forum Codes (Shift+Ctrl+Alt+Q).
So, for posting on the forum, and if you are using forum codes, do this:
- Copy the trigger/alias/timer using the Copy button
- Close the world configuration dialog, so you can use the normal MUSHclient menus
- Press Shift+Ctrl+Alt+Q to convert Forum Codes - you will get a dialog confirming how many were converted (it might be zero)
- In your forum posting, type [code]
- Paste in the converted trigger/alias/timer
- In your forum posting, type [/code]
- You are done!
So you would see, in my earlier example, while you are typing in the post:
Say ("Woot! \[code\] I just levelled!")
(I did it twice to show the idea, as doing it once is only visible when you are doing the posting).