Results 1 to 1 of 1
  1. #1
    xonosphere
    xonosphere is offline
    Guest
    Join Date
    2014 Jun
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Lightbulb How to Check if a Minecraft Account is Premium

    How to Check if a Minecraft Account is Premium in Visual Basic

    1. Import System.Net

    Code:
    Imports System.Net
    2. Create a web client to connect to the Minecraft website

    Code:
    Dim wc As WebClient = New WebClient
    3. Tell the WebClient to download the string of a JSP on the Minecraft site

    [CODE]wc.DownloadString("minecraftwebsiteurl/haspaid.jsp?user=" & Username.Text)

    4. You can put the DownloadString in an If statement to do something if the account is premium. Ex:

    Code:
    If wc.DownloadString("minecraftwebsiteurl/haspaid.jsp?user=" & Username.Text) = True Then

Similar Threads

  1. [VB] Minecraft Premium Login and Launcher [Source]
    By Grooguz in forum VB, .NET Framework
    Replies: 2
    Last Post: 2016-12-14, 04:10 PM
  2. Replies: 1
    Last Post: 2014-09-12, 01:33 AM
  3. Replies: 0
    Last Post: 2013-06-01, 10:50 PM
  4. Replies: 0
    Last Post: 2013-05-30, 08:18 PM
  5. [Help] Check my account
    By G-Poker in forum Português
    Replies: 2
    Last Post: 2012-08-30, 04:13 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •