writemud - write a string to the mud
writemud string
Writemud takes a string as an argument. Writemud checks string for ;'s and uses them to seperate string into seperate commands which are then sent to the mud. This is useful in aliases, actions, and procedures when you want to send a sequence of commands.
writemud "get potion from bag;drink potion;put potion in
	bag" 
	  The string is split up into three different commands and
	  sent to the mud. This saves you the trouble of doing a
	  mudputs for each command.