FREE Skype tool [Coded by Jkaay] (Tons of features)

Status
This thread has been locked.

TylBur

Premium
Feedback score
3
Posts
244
Reactions
106
Resources
3

Seb

Supreme
Feedback score
24
Posts
520
Reactions
632
Resources
0
Yes, there is a mass message feature under the "Messaging" tab :)
IT DOESNT WORK, IT STAYS STUCK ON THE LITTLE BOX THINGY
 

24553

Gameplay Capture Artist & Trailer Editor
Deactivated
Feedback score
10
Posts
425
Reactions
163
Resources
0
Not sure if related.
But someone gained access to my Ubisoft and Steam account in the last few days (since I installed this)...

Not blaming this but just be careful. Very well may of been a coincidence but just putting it here incase.
 

Jkaay

im jkaay
Banned
Feedback score
22
Posts
1,477
Reactions
1,294
Resources
0
Not sure if related.
But someone gained access to my Ubisoft and Steam account in the last few days (since I installed this)...

Not blaming this but just be careful. Very well may of been a coincidence but just putting it here incase.
I can assure you this tool and your accounts have nothing to do with each other. I provided a virus scan of the exe:
Also here's the scan of the .exe: https://www.virustotal.com/en/file/...762075a4474183be6fcbf6a0/analysis/1483416268/
Qihoo-360 detected a "HEUR/QVM03.0.0000.Malware.Gen" which is a false positive only because the application is not signed with a digital certificate (because I don't own a company). Nothing to worry about Ekooc :p

Stackoverflow answer:
t9n23.png
If any developers want to look at my source code to confirm it's virus-free go ahead:
Code:
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using AxSKYPE4COMLib;
using SKYPE4COMLib;
using System.Net;
using System.Diagnostics;

namespace After_s_Skype_Tool_v1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        public const int WM_NCLBUTTONDOWN = 0xA1;
        public const int HTCAPTION = 0x2;
        [DllImport("User32.dll")]
        public static extern bool ReleaseCapture();
        [DllImport("User32.dll")]
        public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);

        private void button2_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            WindowState = FormWindowState.Minimized;
        }

        private void panel1_MouseDown(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Left)
            {
                ReleaseCapture();
                SendMessage(Handle, WM_NCLBUTTONDOWN, HTCAPTION, 0);
            }
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            textBox2.Text = axSkype1.CurrentUserProfile.MoodText;
            textBox4.Text = axSkype1.CurrentUserProfile.FullName;
            textBox8.Hide();
            object availableStatusus = new object();
            label13.Text = axSkype1.CurrentUserStatus.ToString();
            label14.Text = axSkype1.Version;
            label16.Text = "You have " + axSkype1.Friends.Count + " contacts added";
            textBox6.Text = "Total recent messages:" + axSkype1.RecentChats.Count;
            label3.Text = "Connected to " + axSkype1.ConnectionStatus;
        }

        private void button3_Click(object sender, EventArgs e)
        {
            axSkype1.Attach();
            MessageBox.Show("Please accept the prompt on your Skype window for this tool to function.");
            label3.Text = "Connected to " + axSkype1.ConnectionStatus;
            textBox2.Text = axSkype1.CurrentUserProfile.MoodText;
            textBox4.Text = axSkype1.CurrentUserProfile.FullName;
            object availableStatusus = new object();
            label13.Text = axSkype1.CurrentUserStatus.ToString();
            label14.Text = axSkype1.Version;
            label16.Text = "You have " + axSkype1.Friends.Count + " contacts added";
            label17.Hide();
        }

        private void label3_Click(object sender, EventArgs e)
        {

        }

        private void trackBar1_Scroll(object sender, EventArgs e)
        {
            this.Opacity = trackBar1.Value * 0.01;
        }

        private void tabPageEX1_Click(object sender, EventArgs e)
        {

        }

        private void button4_Click(object sender, EventArgs e)
        {
            axSkype1.Client.Shutdown();
        }

        private void button5_Click(object sender, EventArgs e)
        {
            axSkype1.Client.Start();
        }

        private void button6_Click(object sender, EventArgs e)
        {
            axSkype1.CurrentUserProfile.MoodText = textBox1.Text;
        }

        private void textBox2_TextChanged(object sender, EventArgs e)
        {
           
        }

        private void button7_Click(object sender, EventArgs e)
        {
            axSkype1.CurrentUserProfile.FullName = textBox3.Text;
            textBox4.Text = axSkype1.CurrentUserProfile.FullName;
        }

        private void button8_Click(object sender, EventArgs e)
        {
            foreach (User user in axSkype1.Friends)
            {
                if (MessageBox.Show("This will send the following message to all of your contacts. "+"("+axSkype1.Friends.Count+") "+"It may take a few minutes to send to everyone. Continue? \n "+textBox5.Text, "Confirm Broadcast", MessageBoxButtons.YesNo) == DialogResult.Yes)
                {
                    MessageBox.Show("You have sucessfully sent your mass message. gg", "Broadcast sent sucessfuly.", MessageBoxButtons.OK);
                    {
                        axSkype1.SendMessage(user.Handle, textBox5.Text + "\n\n\n--Mass message sent with AfterArts' Skype Tool v1--");
                    }
                }
            }
        }

        private void tabPageEX3_Click(object sender, EventArgs e)
        {

        }

        private void textBox5_TextChanged(object sender, EventArgs e)
        {

        }

        private void button9_Click(object sender, EventArgs e)
        {
            string addFriend = textBox7.Text;
            axSkype1.Client.OpenAddContactDialog(addFriend);
        }

        private void button10_Click(object sender, EventArgs e)
        {
            string hostName = Dns.GetHostName(); // Retrive the Name of HOST
            string ipAddress = Dns.GetHostEntry(hostName).AddressList[0].ToString();
            textBox8.Text = ipAddress;
            textBox8.Show();
        }

        private void button11_Click(object sender, EventArgs e)
        {
            Process.Start("https://www.youtube.com/c/afterartsfx");
        }

        private void button12_Click(object sender, EventArgs e)
        {
            string addFriend = "aftrprvt";
            axSkype1.Client.OpenAddContactDialog(addFriend);
        }

        private void tabPageEX4_Click(object sender, EventArgs e)
        {

        }

        private void pictureBox1_Click(object sender, EventArgs e)
        {

        }
    }
}
 
Banned forever. Reason: Scamming (https://gyazo.com/577c603840a941c1db4da669f30deb92)
Status
This thread has been locked.
Top