What to do with triggers?
Triggers allow you to perform actions when specific text is read from the game.
- Some popular triggers are:
- auto-looting (looting of corpses immediately following a mob/npc death)
- auto-feeding (eatting and drinking as soon as you are hungry/thirsty)
- auto-healing (perform a healing ability when you are injured)
- Usage can involve variables:
- $1, $2, $3 are provided to allow you to specify variable names.
- For example, if you want to slap anyone who talks, your trigger text
could be "$1 says" and the trigger action would be "slap $1".
- Another example: if you wanted to be a wimp, your trigger text
could be "hits you" and the trigger action would be "flee;flee;flee;flee;flee",
almost a guarantee that you'd flee within 5 attempts.