Guest User

Untitled

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