Advertisement
pilgon-sesh60

Christ-chan Protect Me From This Heresy

Feb 14th, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.75 KB | None | 0 0
  1. print "Message: "
  2. message = gets
  3.  
  4. #note 12
  5.  
  6. emojis = [
  7.   ":ccBaka:",
  8.   ":ccTeehee:",
  9.   ":ccNEET:",
  10.   ":ccSmug:",
  11.   ":ccBook:",
  12.   ":ccSnugg:"
  13. ]
  14.  
  15. emojis.shuffle!
  16.  
  17. # you have to adjust the number to get it to look right because autism
  18. # be sure to test the post out in a dm to yourself first and then
  19. # adjust accordingly lol (1-3)
  20. autism_number = 2
  21.  
  22. no_of_cc = (message.length / 5) + autism_number
  23. if no_of_cc > 11
  24.   print "Message too big!"
  25. else
  26.   (1..no_of_cc).each do |i|
  27.     print emojis[0]
  28.     emojis.rotate!
  29.   end
  30.  
  31.   print "\n"
  32.  
  33.   print emojis[0]
  34.   emojis.rotate!
  35.   print message.chomp + " "
  36.   print emojis[0]
  37.   emojis.rotate!
  38.  
  39.   print "\n"
  40.  
  41.   (1..no_of_cc).each do |i|
  42.     print emojis[0]
  43.     emojis.rotate!
  44.   end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement