anonymous1184

https://redd.it/qcno64

Oct 21st, 2021
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. toggle := 0
  2. strings := []
  3.  
  4. return ; End of auto-execute thread
  5.  
  6. F1::SetTimer SayNiceThings, 4000
  7. F2::SetTimer SayNiceThings, Delete
  8. F3::
  9.     toggle ^= 1
  10.     SetTimer SayNiceThings, % toggle ? 4000 : "Delete"
  11. return
  12.  
  13. SayNiceThings:
  14.     if !strings.Count()
  15.     {
  16.         FileRead strings, % A_Desktop "\Nice things.txt"
  17.         strings := RTrim(strings, "`n")
  18.         strings := StrSplit(strings, "`n")
  19.     }
  20.     Random rnd, 1, % strings.Count()
  21.     SendRaw % strings.RemoveAt(rnd)
  22.     Send {Enter}
  23. return
  24.  
  25. /*
  26. Contents for "Nice things.txt" located on the Desktop:
  27.  
  28. If I throw a stick, will you leave?
  29. You're a gray sprinkle on a rainbow cupcake.
  30. If your brain was dynamite, there wouldn't be enough to blow your hat off.
  31. Fart muncher
  32. You have so many gaps in your teeth it looks like your tongue is in jail.
  33. I'll never forget the first time we met. But I'll keep trying.
  34. Cum sock
  35. Don't be ashamed of who you are. That's your parents job.
  36. If you're going to be two-faced at least make one of them pretty.
  37. Is your ass jealous of the amount of shit that comes out of your mouth?
  38. Oops, my bad. I could've sworn I was dealing with an adult.
  39. Your secrets are always safe with me. I never even listen when you tell me them.
  40. You bring everyone so much joy when you leave the room.
  41. I may love to shop but I will never buy your bull.
  42. I'd give you a nasty look but you've already got one.
  43. Someday you'll go far. I hope you stay there.
  44. Were you born this stupid or did you take lessons?
  45. The people who tolerate you on a daily basis are the real heroes.
  46. You should really come with a warning label.
  47. I don't know what your problem is, but I'm guessing it's hard to pronounce.
  48. If I wanted to hear from an asshole, I'd fart.
  49. It's kind of hilarious watching you try to fit your entire vocabulary into one sentence.
  50. You look like something that came out of a slow cooker.
  51. I will ignore you so hard you will start doubting your existence.
  52. this is not the gay porno I was promised”
  53. When you were born, your mum shat during the delivery and took the wrong one home
  54.  
  55. */
  56.  
Add Comment
Please, Sign In to add comment