Guest User

Untitled

a guest
Nov 16th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. void ChatSpammer()
  2. {
  3. SendKeys::Send("{ENTER}");
  4. if(textBox1->Text != "")
  5. {
  6. SendKeys::Send(textBox1->Text);
  7. SendKeys::Send("{ENTER}");
  8. if(SpamDelay) Sleep(Delay);
  9. }
  10. if(textBox2->Text != "")
  11. {
  12. SendKeys::Send(textBox2->Text);
  13. SendKeys::Send("{ENTER}");
  14. if(SpamDelay) Sleep(Delay);
  15. }
  16. if(textBox3->Text != "")
  17. {
  18. SendKeys::Send(textBox3->Text);
  19. SendKeys::Send("{ENTER}");
  20. if(SpamDelay) Sleep(Delay);
  21. }
  22. if(textBox4->Text != "")
  23. {
  24. SendKeys::Send(this->textBox4->Text);
  25. SendKeys::Send("{ENTER}");
  26. if(SpamDelay) Sleep(Delay);
  27. }
  28. }
Add Comment
Please, Sign In to add comment