Guest User

Untitled

a guest
May 23rd, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. bool authed = false;
  2.             string username = "Username Goes Here";
  3.             string Password = "Password Goes Here";
  4.             string[] results = verifyUser(username, Password, out authed);
  5.             if ( authed == true)
  6.             {
  7.                 StartMinecraft(username, results);
  8.             }
Add Comment
Please, Sign In to add comment