eftertanke, just a code snippet to help you along with random messages
While this works for two messages, a better solution is required if more random choices are needed. Every time the if (...) is checked, a new random number is generated. I'm too tired now, but you should make aliases with the messages with a format like msg1 msg2 msg3 etc. and use rnd with concatword to put the alias name and the number together.
[SELECT ALL] Code:
if (= (rnd 1) 1) [say "Choice one if random number generated is 1"] [say "Choice two if random number generated is not 1"]
While this works for two messages, a better solution is required if more random choices are needed. Every time the if (...) is checked, a new random number is generated. I'm too tired now, but you should make aliases with the messages with a format like msg1 msg2 msg3 etc. and use rnd with concatword to put the alias name and the number together.
[SELECT ALL] Code:
say (concatword "msg" (rnd 5))