make your own skype resolver

hASVAN

Active Member
Jun 7, 2015
76
40
93
Code:
Imports System.Net
Public Class Form1
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            WebRequest.Create("http://api.predator.wtf/resolver/?arguments=" + TextBox1.Text)
            TextBox2.Text = New System.Net.WebClient().DownloadString("http://api.predator.wtf/resolver/?arguments=" + TextBox1.Text)
    End Sub
End Class
ALL what you need is
2x TextBox1
1x Button
2x Label
Like that
11855660_1164470990233647_4126497853560323767_n.jpg

Here is the API I used
API: http://api.predator.wtf/resolver/?arguments=
 
Last edited:

bl4uni

Active Member
Sep 10, 2015
106
69
73
In case anyone wants to code this in C#...
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Skype_Resolver
{
  public partial class Form1 : Form
  {
  public Form1()
  {
  InitializeComponent();
  }

  private void Form1_Load(object sender, EventArgs e)
  {

  }

  private void button1_Click(object sender, EventArgs e)
  {
  WebRequest.Create("http://APIOnly.com/skype.php?username=" + textBox1.Text);
  string IP = new System.Net.WebClient().DownloadString("http://APIOnly.com/skype.php?username=" + textBox1.Text);
  if (String.IsNullOrEmpty(IP))
  {
  textBox2.Text = "This Skype User couldn't be resolved.";
  }
  else
  {
  textBox2.Text = IP;
  }
  }

  private void textBox1_TextChanged(object sender, EventArgs e)
  {

  }

  private void label1_Click(object sender, EventArgs e)
  {

  }

  private void label2_Click(object sender, EventArgs e)
  {

  }

  private void textBox2_TextChanged(object sender, EventArgs e)
  {

  }
  }
}

zwmev2ua.png

Properties:
form1:
FormBorderStyle: FixedToolWindow
textBox2:
ReadOnly: True
I used apionly.com, because predator didn't work with safe header parsing.

EDIT: I just realized this is the VB.net Section... well. Maybe I still helped someone xD
 
Last edited:
Top