MUSHclient supports the use of XML on the clipboard for copying and pasting triggers, aliases, timers and so on.
This example shows how to go about using that.
Create a trigger in the trigger configuration list:
Close the trigger window, and then in the trigger *list* window you will see a "copy" button. Click that:
On your clipboard is now a copy of the trigger in XML format, like this:
<triggers>
<trigger
custom_colour="2"
enabled="y"
group="eat_drink"
match="You are thirsty."
name="thirst_trigger"
sequence="100"
>
<send>get flask bag
drink flask
put flask bag</send>
</trigger>
</triggers>
You can now paste that into a different MUSHclient world, or email it to someone, paste it into a plugin, or post it onto the forum. |