Random Saying Module
BRIGADOON-0004
Emit a random saying when the object is touched,
Loading...
Searching...
No Matches
sayings_module.lsl
Go to the documentation of this file.
1
9
list
public_sayings
=
10
[
11
"Do not let rash words unbalance the scales of your life."
,
12
"Kind words will do more to balance your life than a fistful of gold."
,
13
"We need kindness and love more than we need the pot of gold at the end of the rainbow."
,
14
"Be sure that you know the difference between hearing a tall story and hearing the truth."
,
15
"Truth and knowledge are the best sword and shield you can have in life."
,
16
"Even though it is only here, be thankful that the River Wizard holds back the ills of the world."
,
17
"The highway of life has many branches and exits for people to follow. Enjoy the company of your friends while you travel together."
,
18
"Your friends are some of the strongest protections against your enemies."
,
19
"The enemy of your enemies may be a good ally for now, but that does not make them your friend."
,
20
"Even if they are the words of the Oracle, do not accept advice without seriously considering its value."
,
21
"Living a long unhappy life is not as good as living a happy life, even if it be shorter."
,
22
"The one that seems the friendliest, is not always your friend in their heart."
,
23
"You will succed in your quest, but not so for all of your companions. Take heart though as they will achieve great glory."
,
24
"Your quest is not what it seems. It is time to consider your path in life and those with whom you travel."
,
25
"Do not sleep near those that eat the stew. It has too much cabbage and will bring them excessive flatuence."
,
26
"The mirror on the wall told me that you are not the fairest of them all, but don't worry what it says because that mirror is cracked."
,
27
"Do not ask if how good is your dancing if you are easily offended, because your dancing is terrible."
,
28
"Are they really your friend, if they always expect you to visit them, but they never find the time to visit you?"
,
29
"The more you like a person the more attactive they seem. The less you like them, the less attractive they seem."
,
30
"Those plants with eyes never sleep! A girl can't even go for a midnight skinny dip in the river anymore."
,
31
"Kind people are the best kind of people. Have you been kind today?"
,
32
"Do you think I have nothing better to do than talk to you all the time?"
,
33
"If you ever get to OSGrid on your adventures, visit the Hermes region."
,
34
"If you think everyone likes you, you are deluded. If some like you and some don't, that's normal. If everyone hates you, it's you!"
,
35
"Each of the River Wizard's statues will tell you something. Be prepared, because it may not be what you want to hear."
,
36
"If someone says they have all the answers, you should immediately run away because you now know this is not a person to be trusted."
,
37
"Simple-minded people always want simple answers, no matter how complex the problem."
,
38
"For ease of maintenance, these sayings should be in a Notecard, rather than hard-coded into the script."
,
39
"I'm busy chatting up the Green Wizard at the moment. Come back later and I will give you important information."
,
40
"Have you noticed that all of the River Wizard's statues are female? Why is that? I would rather look at a male statue, than those two bimbos."
,
41
"Eating the spores of the big mushroom improves male libido, but don't put lead in your pencil, if you have no one to write to."
,
42
"Watch out for those damn plants with eyes! They see and hear EVERYTHING! That's how the Water Wizard knows about everthing that is going on!"
43
];
44
45
// Cmment the next line and uncomment the following line to run the script. Comment out if using doxygen to produce documentation
46
default
()
47
//default
48
{
49
state_entry()
50
{
51
llSay(PUBLIC_CHANNEL,
"Themis has stirred from her slumber and listens to you."
);
52
}
53
54
touch_start(integer total_number)
55
{
56
integer number_of_sayings = llGetListLength(
public_sayings
);
57
integer index = (integer)llFrand(number_of_sayings);
58
if
(index > number_of_sayings) index = number_of_sayings;
59
llSay(PUBLIC_CHANNEL, llList2String(
public_sayings
, index));
60
}
61
}
62
public_sayings
list public_sayings
Definition
sayings_module.lsl:9
sayings_module.lsl
Generated by
1.13.2