summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwjoe <joe@lc8n.com>2012-07-11 17:44:37 +0100
committerwjoe <joe@lc8n.com>2012-07-11 17:44:37 +0100
commit06ed73d0c369663151eef752348239d2e46f3ba2 (patch)
tree6661bff1e117aa2b65e8a20caadb023b1d601de7
parent4ab6772c6c8f5adf9e897e88ee07505359e05358 (diff)
Added some more thebluelist options
-rw-r--r--blarandom.cpp47
1 files changed, 41 insertions, 6 deletions
diff --git a/blarandom.cpp b/blarandom.cpp
index 1a0708e..33555c8 100644
--- a/blarandom.cpp
+++ b/blarandom.cpp
@@ -30,7 +30,7 @@
v0.61 - Added error handling for 8ball, removed ability to count
v0.62 - Fixed 8ball handling more than one word
v0.7 - Added thebluelist (this should really be a separate file)
-
+ v0.71 - Added more thebluelist options
*/
@@ -43,7 +43,7 @@
int main() {
- std::string version = "0.7";
+ std::string version = "0.71";
RandomLib::Random r; // Create r
r.Reseed(); // and give it a unique seed
@@ -133,8 +133,8 @@ int main() {
}
} else if (!args[0].compare("wolf")) {
- min = 1;
- max = 85;
+ min = 0;
+ max = 120;
wolf = true;
}
@@ -170,7 +170,7 @@ int main() {
"Yes, in due time.",
"I have my doubts." };
- std::string theBlueList[86] = {
+ std::string theBlueList[121] = {
"Geolocate somebody on the internet and see whether we can convince them to meet us at local bars/restaurants",
"Smash a glass over somebody's hand",
"The piano room",
@@ -256,7 +256,42 @@ int main() {
"declare love to various barmaids",
"Listning to the classic project!!!",
"barbeque",
-"steps place"
+"steps place",
+"Buy pillows",
+"Get stupidly drunk",
+"Get stupidly high",
+"Drink blue/green stuff",
+"Go to a sex show",
+"LATER!",
+"Eat Chipsy hotdog",
+"Piss tornado",
+"Run from the law",
+"Drink tea",
+"Cook bacon",
+"Drink on a train",
+"Drink under the sea",
+"Go to arena",
+"Talk to Jonny Mallett",
+"Puke in a glass bin",
+"Smash glasses under the table",
+"Stare at the cathedral",
+"Knob on cathedral",
+"Running from burger king staff",
+"Waiting for an automated pillar to rise out of the ground",
+"Naked guitar hero",
+"Skinny dipping",
+"Falling down the stairs",
+"Burning hair with poi",
+"Feeding a horse",
+"Stick a pillow to a wall with vomit",
+"Getting stuck places",
+"Puke on a church",
+"Piss on a church",
+"Get a taxi from RASHEED",
+"Running into a sign at the same time",
+"Standing in the most inappropriate place",
+"Timepiece burger",
+"Ram burger"
};
for (int i = 0; i < count; i++) {
intResult = r.IntegerC(min, max);