Code:
public static byte Authenticate(string Username, string Password)
{
if (Username.StartsWith("NEW"))
{
string CreateName = Username.Remove(0, 3);
if (System.IO.File.Exists(System.Windows.Forms.Application.StartupPath + @"\Database\Accounts\\" + CreateName + ".ini"))
{
}
EDIT:
u dont need this if u dont use INI:
if (System.IO.File.Exists(System.Windows.Forms.Applic ation.StartupPath + @"\Database\Accounts\\" + CreateName + ".ini"))
{
}