First of all, you need an action. Actions are the same thing as exits, except instead of opening to other rooms they link to a dead-end which you can link to called $nothing.
So, you use the @action command to make an action (all of these functions have in-game syntax help for you with how to do these things), and this will be your command.
@link the action to $nothing
Now, there are two "success" functions:
@succ, and @osucc. They execute to the person, and the whole room (@osucc does the room, minus the person, while @succ is just the person).
In the programming area under MPI tutorials there are _many_ in-depth tutorials.
First of all, you need an action. Actions are the same thing as exits, except instead of opening to other rooms they link to a dead-end which you can link to called $nothing.
So, you use the @action command to make an action (all of these functions have in-game syntax help for you with how to do these things), and this will be your command.
@link the action to $nothing
Now, there are two "success" functions:
@succ, and @osucc. They execute to the person, and the whole room (@osucc does the room, minus the person, while @succ is just the person).
In the programming area under MPI tutorials there are _many_ in-depth tutorials.