spambot_v0.1using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace spambot { public partial class Form1 : Form { public Form1() { InitializeComponent(); } //Codded by Tolgaa private void btnbasla_Click(object sender, EventArgs e) { timer1.Start(); } private void timer1_Tick(object sender, EventArgs e) { SendKeys.Send(richTextBox1.Text); SendKeys.Send("{ENTER}"); } private void btndur_Click(object sender, EventArgs e) { timer1.Stop(); } private void btncik_Click(object sender, EventArgs e) { this.Close(); } private void button1_Click(object sender, EventArgs e) { richTextBox1.Clear(); } //Codded by Tolgaa } }