generated from Jaysyn/ModuleTemplate
28 lines
1010 B
Plaintext
28 lines
1010 B
Plaintext
void main()
|
|
{
|
|
string sText;
|
|
int nRandom = d10(1);
|
|
if (nRandom == 1){
|
|
sText = "May the blessings of Helm be upon you.";}
|
|
else if (nRandom == 2){
|
|
sText = "Ever watchful, ever vigilant.";}
|
|
else if (nRandom == 3){
|
|
sText = "Walk the righteous path and you never need fear evil.";}
|
|
else if (nRandom == 4){
|
|
sText = "Steer clear of distraction and idleness.";}
|
|
else if (nRandom == 5){
|
|
sText = "The wise man knows that a long journey begins with a single step.";}
|
|
else if (nRandom == 6){
|
|
sText = "Lord Dhelt rules with wisdom and justice.";}
|
|
else if (nRandom == 7){
|
|
sText = "I am sorry, but I am on duty.";}
|
|
else if (nRandom == 8) {
|
|
sText = "Careful planning always defeats rushed actions in the end.";}
|
|
else if (nRandom == 9){
|
|
sText = "Demonstrate excellence and purity of loyalty in your role as a guardian and protector.";}
|
|
else if (nRandom == 10){
|
|
sText = "The eyes of the Watcher are always upon us.";}
|
|
ActionSpeakString (sText, TALKVOLUME_TALK);
|
|
}
|
|
|