Advertisement
RichJMoney

8ball

Jan 19th, 2016
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.00 KB | None | 0 0
  1. local tbl1 = {};
  2. local tbl2 = {};
  3. local tbl3 = {};
  4.  
  5. table.insert(tbl1, "Signs point to ");
  6. table.insert(tbl1, "The winds of fate say ");
  7. table.insert(tbl1, "Your mom said ");
  8. table.insert(tbl1, "Smoke signals on the horizon make me think ");
  9. table.insert(tbl1, "It smells like ");
  10. table.insert(tbl1, "RNGesus tells us ");
  11. table.insert(tbl1, "Pohx's gay cousin PoohExtreme told me ");
  12. table.insert(tbl1, "If you thought about it for even a second you would know the answer: ");
  13. table.insert(tbl1, "The almighty Mors knows that the answer is ");
  14. table.insert(tbl1, "What are you an idiot? ");
  15. table.insert(tbl1, "Kripparian took a break from Hearthstone and told me ");
  16. table.insert(tbl1, "A little bird told me ");
  17. table.insert(tbl1, "A big bird told me ");
  18. table.insert(tbl1, "RaizQT insists that the answer is: ");
  19.  
  20. table.insert(tbl2, "yes.");
  21. table.insert(tbl2, "of course!");
  22. table.insert(tbl2, "no.");
  23. table.insert(tbl2, "Mors did it first.");
  24. table.insert(tbl2, "RaizQT already made a guide for it.");
  25. table.insert(tbl2, "fuck no.");
  26. table.insert(tbl2, "maybe later.");
  27. table.insert(tbl2, "someday.");
  28. table.insert(tbl2, "when you stop being a bitch.");
  29. table.insert(tbl2, "the question is pointless.");
  30.  
  31.  
  32.  
  33.  
  34. return function(msg,usr,chan)
  35.         local rand = usr
  36.         local test = msg
  37.         if test == "" then
  38.             print("@"..rand..", ask me a goddamn question.");
  39.             return
  40.         end
  41.         if rand == "richjmoney" then
  42.             print("You know best Rich.");
  43.             return
  44.         end
  45.         if rand == "alfims" then
  46.             print("Fuck you, @Alfims.");
  47.             return
  48.         end
  49.         if rand == "sgoatr" then
  50.             print("Go home you're drunk Goat.");
  51.             return
  52.         end
  53.         if rand == "raizqt" then
  54.             print("You don't get to ask questions here, @RaizQT");
  55.             return
  56.         end    
  57.         if rand == "mors" then
  58.             print("Didn't you ask this like two years ago?");
  59.             return
  60.         end
  61.         if rand == "zenocidezenius" then
  62.             print("ty for scam <3");
  63.             return
  64.         end
  65.         print("@"..rand..", " .. tbl1[math.random(#tbl1)] .. "" .. tbl2[math.random(#tbl2)]);
  66.        
  67.        
  68. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement