master
sagirilover 5 years ago
parent cea260e2cb
commit 0c8abe1aff
  1. 13
      AnimeSoftware/AnimeForm.Designer.cs
  2. 4
      AnimeSoftware/AnimeForm.cs
  3. 2
      AnimeSoftware/Checks.cs
  4. 6
      AnimeSoftware/Hacks/ClanTag.cs

@ -81,7 +81,6 @@
this.velnameCheckBox = new System.Windows.Forms.CheckBox();
this.clanTextBox = new System.Windows.Forms.TextBox();
this.clanButton = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.nickBox)).BeginInit();
this.nickBoxContextMenuStrip.SuspendLayout();
this.trashControl.SuspendLayout();
@ -608,22 +607,11 @@
this.clanButton.UseVisualStyleBackColor = true;
this.clanButton.Click += new System.EventHandler(this.clanButton_Click);
//
// button1
//
this.button1.Location = new System.Drawing.Point(347, 283);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 44;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// AnimeForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(476, 414);
this.Controls.Add(this.button1);
this.Controls.Add(this.clanButton);
this.Controls.Add(this.clanTextBox);
this.Controls.Add(this.velnameCheckBox);
@ -722,7 +710,6 @@
private System.Windows.Forms.CheckBox velnameCheckBox;
private System.Windows.Forms.TextBox clanTextBox;
private System.Windows.Forms.Button clanButton;
private System.Windows.Forms.Button button1;
}
}

@ -279,7 +279,7 @@ namespace AnimeSoftware
private void namestealerCheckBox_CheckedChanged(object sender, EventArgs e)
{
if (namestealerCheckBox.Checked)
if (MessageBox.Show("Make sure, that you forced infinity name switching exploit in your other cheat.\nIn other way close this window.") != DialogResult.Yes)
if (MessageBox.Show("Make sure, that you forced infinity name switching exploit in your other cheat.\nIn other way close this window.") != DialogResult.OK)
{
namestealerCheckBox.Checked = false;
}
@ -582,7 +582,7 @@ namespace AnimeSoftware
private void velnameCheckBox_CheckedChanged(object sender, EventArgs e)
{
if (velnameCheckBox.Checked)
if (MessageBox.Show("Make sure, that you forced infinity name switching exploit in your other cheat.\nIn other way close this window.") != DialogResult.Yes)
if (MessageBox.Show("Make sure, that you forced infinity name switching exploit in your other cheat.\nIn other way close this window.") != DialogResult.OK)
{
velnameCheckBox.Checked = false;
}

@ -54,7 +54,7 @@ namespace AnimeSoftware
}
}
public static string version = "v2.70";
public static string version = "v2.80";
}
}

@ -107,7 +107,7 @@ namespace AnimeSoftware.Hacks
public static void VelTag()
{
int old = 0;
int old = 2;
bool changed = false;
bool lastState = false;
while (Properties.Settings.Default.velTag)
@ -138,11 +138,11 @@ namespace AnimeSoftware.Hacks
old = vel;
changed = true;
}
if (vel == 0 && changed && Properties.Settings.Default.velName)
if ((vel == 0 || vel == 2) && changed && Properties.Settings.Default.velName)
{
ConVarManager.ChangeName("max " + old.ToString());
changed = false;
old = 0;
old = 2;
}
}
ClanTag.Set(" ");

Loading…
Cancel
Save