Skype消息轰炸机 源代码c#(原创)

1.建立winform项目。

2.引用skypeapi;在windows里面注册这个dll。

3.在winform窗体上,添加3个文本框,1个button。

4.在form1 class里面定义2个变量。

  private ConversionClass m_myskype;
  private AccessClass m_myskypeaccess;

5.button 的 click event里面写下面代码。

  private void button1_Click(object sender, System.EventArgs e)
  {
   try
   {

    m_myskype=new SKYPEAPILib.ConversionClass ();
    m_myskypeaccess=new SKYPEAPILib .AccessClass ();
    //m_myskypeaccess.APIStatusChanged += new_IAccessEvents_APIStatusChangedEventHandler(APIStatusChanged);
    m_myskypeaccess.Connect();
   }
   catch(Exception ex)
   {
    MessageBox.Show (this,ex.Message ,"Unable to in...",MessageBoxButtons.OK ,MessageBoxIcon.Error );
   }

   string userName;
   string content;
   string add;
   int times;

   userName=textBox1.Text ;
   content=textBox3.Text ;
   times=int.Parse (textBox2.Text);

   add="攻击"+times.ToString ()+"次,(本消息由skype消息轰炸机发送)";
   for(int i=0 ;i   {
    m_myskypeaccess.SendMessage(userName,content+add);
   }
    
   MessageBox.Show ("已gong ji");

  }

6.run。开始攻击。吼吼。

注:看不懂的加我 skpeid is  hycapril

你可能感兴趣的:(Skype,API,C#)