Advertisement
tabnation

Ai more human

May 25th, 2021
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. ;Random Sleeps dont do to fast
  2. random, VarRand, 3000, 10000
  3. sleep %VarRand%
  4. Return
  5.  
  6. ;Random Reply
  7. random, VarRand, 1, 3
  8. If VarRand = 1
  9. {
  10. Send Hey
  11. }
  12. If VarRand = 2
  13. {
  14. Send Howdy
  15. }
  16. If VarRand = 3
  17. {
  18. Send Hi
  19. }
  20. Return
  21.  
  22. ;Make a mistake
  23. loop{
  24. Count++
  25. send 1
  26. send {space}
  27. if Count = 10
  28. {
  29. Send 3h
  30. Count=0
  31. }
  32. }
  33.  
  34. ;Break up words
  35. random, VarRand, 300, 1000
  36. sleep %VarRand%
  37. send H
  38. random, VarRand, 300, 1000
  39. sleep %VarRand%
  40. Send E
  41. random, VarRand, 300, 1000
  42. sleep %VarRand%
  43. Send Y
  44.  
  45. ;Make spelling mistakes
  46. Send hellp whats up
  47.  
  48. ;Redo typed info
  49. send helop
  50. send {Backspace 2}
  51. send lo
  52.  
  53. ;long pauses in typing
  54. Send hey let me help you
  55. sleep 10000
  56. send with that {Enter}
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement