Quote:
Originally Posted by Shendare
I like the idea of having the option for silent as well as visible saylink responses.
If one is not using silent saylinks, I also like the idea of being able to specify the text being said by the player when they click on the link, instead of making it always the text of the link itself.
"Hail, Player! Would you be interested in helping me with this [task]?"
*click [task]* "What task is that?"
...as opposed to:
*click [task]* "task"
- Shendare
|
I updated Saylinks again so this is now an option. If you wanted to set a saylink to do what Shendare is showing in this quote, you would do this:
Code:
my $task = quest::saylink("What task is that?", 0, "task");
quest::say("Hail, $name! Would you be interested in helping me with this [$task]?");
The 0 in the middle is the bool for being silent or not, so when making different responses from what the link shows, it only makes sense to set it as 0 so the player says the message.