Mmucl Procedure

Name

writemud - write a string to the mud

Synopsis

writemud string

Description

Writemud takes a string as an argument. Writemud checks string for ;'s and uses them to separate string into separate 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.

Example

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.

alias annoy {writemud {bonk %1;kick %1;spit %1;wabbit %1}}

Really annoy another player with souls. For an added kick call it in a loop. =)

See Also

mudputs


Home