Nice, I like the liger, especialy the note. couldyou please give me the basics of coding, like how to make an object do something when you do a certain action?
Comment
how to do somethin
Posted by:
DZeilat
2007-02-19
There are a few ways to do thing.
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.
Comment
how to do somethin
Posted by: DZeil at 2007-02-19There are a few ways to do thing.
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.