Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
1,095
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.12 KB | None | 0 0
  1. local function xkcd()
  2.     local messages = {
  3.     "SUB once built a treehouse.",
  4.     "SUB has 110 unread emails that SUB was hoping to get to tonight.",
  5.     "SUB was the only one who took care of the plants back at base.",
  6.     "Tomorrow was POS last day on the job.",
  7.     "Today was POS last day on the job.",
  8.     "POS birthday was in NUM days.",
  9.     "SUB volunteers at homeless shelters.",
  10.     "SUB was a single parent with NUM children.",
  11.     "SUB was responsible for picking up POS daughter from daycare.",
  12.     "SUB once won a talent show",
  13.     "Today was POS first day on the job.",
  14.     "SUB has NUM pets.",
  15.     "POS son suffers from leukemia.",
  16.     "SUB just got engaged",
  17.     "POS family lives below the poverty line.",
  18.     "SUB was a war veteran.",
  19.     "SUB collects action figures.",
  20.     "SUB frequently buys meals for the poor.",
  21.     "SUB has a blind relative.",
  22.     "SUB was mentally handicapped.",
  23.     "SUB actually donates to Wikipedia.",
  24.     "POS pets frequently run away.",
  25.     "SUB once donated $NUM to PETA.",
  26.     "SUB prefers tea over coffee.",
  27.     "SUB prefers coffee over tea.",
  28.     "SUB eats POS pizza with a spoon.",
  29.     "SUB eats POS pizza with a fork.",
  30.     "SUB has never eaten a sandwich.",
  31.     "SUB was the only one who cleaned the bathrooms back at base.",
  32.     "SUB planned to wash POS car in NUM days.",
  33.     "SUB teaches children on POS days off.",
  34.     "SUB likes to spend POS time picking up trash.",
  35.     "SUB sends letters to POS parents every night.",
  36.     "SUB was a foster parent.",
  37.     "SUB was the last remaining member in POS family.",
  38.     "SUB was still a virgin.",
  39.     "SUB entertains children in hospitals every weekend.",
  40.     "SUB liked to conserve paper.",
  41.     "SUB liked to conserve water.",
  42.     "SUB was computer illiterate.",
  43.     "SUB reads to the elderly.",
  44.     "SUB frequently donates toys to the animal shelter.",
  45.     "SUB was always the designated driver.",
  46.     "SUB was an organ donor.",
  47.     "SUB liked to plant trees in the forest.",
  48.     "SUB once saved a kitten from a tree.",
  49.     "SUB always donated POS extra clothes to the homeless.",
  50.     "SUB always paid POS taxes on time.",
  51.     "SUB donates POS extra change to food banks.",
  52.     "POS hobby was to write comics."
  53.     }
  54.     return messages[math.random(1, #messages)]
  55. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement