Blood was important because it's important to all of us to keep us alive. We need it to go out in the world and get a job and raise our kids, often at great sacrifice. And now I'm going to go take a walk in the rain.
They beleved that the gods blood, which came in the form of rane, allowed the crops to grow. They also used blood in sacrifises. It was shed to feed and repay the gods and save the world from distruction.
<function name="GetWord" parameters="text">
inputlist = Split(text, " ")
foreach (word, inputlist) {
foreach (keyword, game.keywords) {
if (word = keyword) {
firsttime {
IncreaseScore (5)
CreateDescription (text)
msg ("(Your score have increased for 5 points)")
}
}
}
}
</function>
<function name="ScoreKeywords" parameters="text">
inputlist = Split(text, " ")
foreach (keyword, game.keywords) {
if (ListContains(inputlist, keyword)) {
IncreaseScore (5)
CreateDescription (text)
msg ("(Your score have increased for 5 points)")
}
}
</function>
<object name="Question 1">
<question>Some yada yada question text</question>
<keywords type="simplestringlist">foo;bar;blah</keywords>
</object>
<object name="Question 2">
<question>Some different yada yada question text</question>
<keywords type="simplestringlist">red;green;asparagus</keywords>
</object>
<function name="ScoreKeywords" parameters="text" type="int">
score = 0
foreach (keyword, game.keywords) {
if (Instr(text, keyword) <> 0) {
score = score + 1
}
}
return(score)
</function>