A few WinTin Tips for Total Beginners

[u:3rl2gnkd]ClearQueue Command in Aliases[/u:3rl2gnkd]
The command '|' in Sloth clears your command queue. This command can save your life.
For example:
You are fighting a kobold.
You enter the 'kick' command several times.
The kobold is about to kill you. You want to flee.
You type 'flee'.
Instead of fleeing, you kick the kobold and it kills you.
But, had you typed '|' and then 'flee'
The mud would have known that you wanted to forget all about the
kick that you entered. And you would have fled.
Here are some simple aliases using the '|' command.
#alias {fl} {|;flee}
#alias {cureme} {|;cast 'cure light' myname}
#alias {rr} {|;recite recall}
[u:3rl2gnkd]Anchoring Your Triggers[/u:3rl2gnkd]
You should anchor your triggers (actions) as much as possible.
For example:
Someone gossips 'You are hungry'
Your trigger goes off and you try to eat.
This means your trigger was not anchored.
Putting the symbol '^' in front of the trigger part of the action will anchor it.
Like this:
#action {^You are hungry.}{get food pack;eat food;burp}
Now the action will only occur, if the words "You are hungry" appear at the very beginning the of the line. In other words, the trigger will not go off by accident.
[u:3rl2gnkd]Single Action Triggers[/u:3rl2gnkd]
Sometimes you only want a trigger to go off once.
The way to do this is put {O} (capital letter o, not zero) at the end of the action.
like this: #action {^You are hungry}{eat food}{O}
Usually with single trigger Actions you will want to make an alias that sets the trigger anytime you want.
For example, you want to sit your character at Sork to wait for the Crimson Dragon. But you want to take a toilet break while your waiting on it. You can set a single action trigger that will make you get on the dragon, and then get off when it arrives. The trigger will then turn itself off, so that you don't get on the dragon by mistake the next time you are in the room.
Try this:
#alias {trigcrimson}{#action {^A Crimson Dragon}{enter crimson;rest}{O}}
Now, if you want to go to the toilet while waiting for the Crimson Dragon, you just buy a ticket, go to the departure spot, and type trigcrimson.
You can make a permanent action that makes you stand and exit upon arrival, since you will almost never want to stay on.
Cheers
The command '|' in Sloth clears your command queue. This command can save your life.
For example:
You are fighting a kobold.
You enter the 'kick' command several times.
The kobold is about to kill you. You want to flee.
You type 'flee'.
Instead of fleeing, you kick the kobold and it kills you.
But, had you typed '|' and then 'flee'
The mud would have known that you wanted to forget all about the
kick that you entered. And you would have fled.
Here are some simple aliases using the '|' command.
#alias {fl} {|;flee}
#alias {cureme} {|;cast 'cure light' myname}
#alias {rr} {|;recite recall}
[u:3rl2gnkd]Anchoring Your Triggers[/u:3rl2gnkd]
You should anchor your triggers (actions) as much as possible.
For example:
Someone gossips 'You are hungry'
Your trigger goes off and you try to eat.
This means your trigger was not anchored.
Putting the symbol '^' in front of the trigger part of the action will anchor it.
Like this:
#action {^You are hungry.}{get food pack;eat food;burp}
Now the action will only occur, if the words "You are hungry" appear at the very beginning the of the line. In other words, the trigger will not go off by accident.
[u:3rl2gnkd]Single Action Triggers[/u:3rl2gnkd]
Sometimes you only want a trigger to go off once.
The way to do this is put {O} (capital letter o, not zero) at the end of the action.
like this: #action {^You are hungry}{eat food}{O}
Usually with single trigger Actions you will want to make an alias that sets the trigger anytime you want.
For example, you want to sit your character at Sork to wait for the Crimson Dragon. But you want to take a toilet break while your waiting on it. You can set a single action trigger that will make you get on the dragon, and then get off when it arrives. The trigger will then turn itself off, so that you don't get on the dragon by mistake the next time you are in the room.
Try this:
#alias {trigcrimson}{#action {^A Crimson Dragon}{enter crimson;rest}{O}}
Now, if you want to go to the toilet while waiting for the Crimson Dragon, you just buy a ticket, go to the departure spot, and type trigcrimson.
You can make a permanent action that makes you stand and exit upon arrival, since you will almost never want to stay on.
Cheers