private void Form1_Load(object sender, EventArgs e) { gunaCirclePictureBox1.LoadAsync(GET2.Download($"{adress}info.php/?username={name.nameValue}&avatar")); string ismemberof = $"{adress}info.php/?username={name.nameValue}&isMemberOf"; if (GET2.Download(ismemberof) == "sub" || GET2.Download(ismemberof) == "admin" || GET2.Download(ismemberof) == "moderator") { gunaLabel4.Text = "Expiry Date:" + GET2.Download($"{adress}info.php/?username={name.nameValue}&expire"); } }
private bool sub() { if (GET2.Download($"{adress}info.php/?username="******"&isMemberOf") == "nosub" || GET2.Download($"{adress}info.php/?username="******"&expire") == "nosub") { return(false); } else if (GET2.Download($"{adress}info.php/?username="******"&isMemberOf") != "nosub" || GET2.Download($"{adress}info.php/?username="******"&expire") != "nosub") { return(true); } return(true); }
private bool hwidcheck() { hwidstring = HWDI.GetMachineGuid(); if (GET2.Download($"{adress}hwid.php/?username="******"&hwid=" + hwidstring) == "0" || GET2.Download($"{adress}info.php/?username="******"&expire") == "4") { return(false); } else if (GET2.Download($"{adress}hwid.php/?username="******"&hwid=" + hwidstring) == "1" || GET2.Download($"{adress}hwid.php/?username="******"&hwid=" + hwidstring) == "3" || GET2.Download($"{adress}hwid.php/?username="******"&hwid=" + hwidstring) == "2") { return(true); } return(true); }
private void versions() { if (GET2.Download($"{adress}info.php?version") != version) { gunaGradientButton1.Enabled = false; login.Enabled = false; password.Enabled = false; gunaLabel2.Visible = true; gunaLabel2.Text = "Please update the loader."; } else { } }
private void materialFlatButton1_Click(object sender, EventArgs e) { try { if (hwidcheck()) { if (sub()) { { if (GET2.Download($"{adress}info.php?username={login.Text}&password={password.Text}") == "success") { StreamWriter file = new StreamWriter(@"C:\cheatname\loader\account.cheatname"); string encode_login = base64.encode(login.Text); string encode_password = base64.encode(password.Text); file.WriteLine(encode_login); file.WriteLine(encode_password); file.Close(); Form ifrm = new mainForm(); name.nameValue = login.Text; ifrm.Show(); this.Hide(); } else { gunaLabel2.Visible = true; } gunaLabel2.Text = "Invalid Credentials"; } } else { gunaLabel2.Visible = true; gunaLabel2.Text = "No subscription"; } } else { gunaLabel2.Visible = true; gunaLabel2.Text = "Invalid HWID"; } } catch (Exception) //Exception ex { MessageBox.Show("Internal error, contact staff"); //MessageBox.Show(ex.Message); } }
private void bunifuImageButton1_Click(object sender, EventArgs e) { Process.Start(GET2.Download($"{adress}info.php/?username={name.nameValue}&profile")); }
void preload() { guna2Panel1.Text = (GET2.Download($"{adress}info.php/?info")); }