Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.89 KB | None | 0 0
  1. import java.awt.*;
  2. import java.awt.event.*;
  3.  
  4. import javax.swing.*;
  5. import javax.swing.event.*;
  6.  
  7. import org.rsbot.event.listeners.PaintListener;
  8. import org.rsbot.script.*;
  9. import org.rsbot.script.methods.Game.Tab;
  10. import org.rsbot.script.util.Timer;
  11. import org.rsbot.script.wrappers.RSObject;
  12.  
  13. import java.awt.event.ActionEvent;
  14. import java.awt.event.ActionListener;
  15. import java.awt.event.MouseEvent;
  16. import java.awt.event.MouseListener;
  17. import org.rsbot.event.listeners.PaintListener;
  18.  
  19. @ScriptManifest(name = "WrrionsWillowChopper", authors = {"Joe Titus"}, keywords = "Any willow power chopper!", version = 1.0, description = "Willow power chopper! [Banking soon to come, only in draynor village!]")
  20.  
  21. public class WrrionsWillowChopper extends Script implements PaintListener {
  22.  
  23. public int WILLOW_ID[] = {5551, 5552, 5553, 1308, 8481, 8482, 8483, 8484, 8485,
  24. 8486, 8487, 8488, 38627, 38616, 38627, 2210, 142, 2372, 139};
  25.  
  26. private final static int[] HATCHET_ID = {1359, 1357, 1355, 1361, 1353, 1349, 1351,
  27. 6739,13661, 14108, 14100};
  28.  
  29. public long startTime = System.currentTimeMillis();
  30.  
  31. public boolean onStart() {
  32. AB.setVisible(true);
  33. while(AB.isVisible()){
  34. sleep(200);
  35. }
  36.  
  37. startTime = System.currentTimeMillis();
  38. return true;
  39. }
  40.  
  41. private void setRun() {
  42. boolean isEnabled = walking.isRunEnabled();
  43. int energy = walking.getEnergy();
  44. if (isEnabled == false && energy >= random(60, 80)) {
  45. walking.setRun(true);
  46. }
  47. }
  48.  
  49. public int loop() {
  50. AB.antiBanMethod();
  51. if (AB.AFKTimer.isRunning()){return 200;}
  52. mouse.setSpeed(1);
  53. if (!inventory.isFull()) {
  54. if (players.getMyPlayer().getAnimation() == -1) {
  55. RSObject rock = objects.getNearest(WILLOW_ID);
  56. if (rock != null) {
  57. camera.turnTo(rock);
  58. rock.doAction("Chop down");
  59. sleep(3000);
  60. }
  61. }
  62. }
  63. if (inventory.isFull()){
  64. inventory.dropAllExcept(HATCHET_ID);
  65. }
  66. return random(500, 1500);
  67. }
  68.  
  69. public void onRepaint(Graphics g) {
  70.  
  71. long runTime = 0;
  72. long seconds = 0;
  73. long minutes = 0;
  74. long hours = 0;
  75. runTime = System.currentTimeMillis() - startTime;
  76. seconds = runTime / 1000;
  77. if (seconds >= 60) {
  78. minutes = seconds / 60;
  79. seconds -= (minutes * 60);
  80. }
  81.  
  82. if (minutes >= 60) {
  83. hours = minutes / 60;
  84. minutes -= (hours * 60);
  85. }
  86. if (AB.AFKTimer.isRunning()){
  87.  
  88. g.setColor(new Color(51, 51, 51, 150));
  89. g.fillRect(2, 1, 516, 336);
  90. g.setColor(new Color(255, 255, 255));
  91. g.drawRect(2, 1, 516, 336);
  92. g.setFont(new Font("Arial", 0, 12));
  93. g.drawString("Time Left in AFK: " + AB.AFKTimer.toRemainingString(), 147, 176);
  94. g.drawString("Run Time : " + hours + ":" + minutes + ":" + seconds, 9, 364);
  95. }
  96. }
  97.  
  98. public AntiBan AB = new AntiBan();
  99. class AntiBan extends JFrame {
  100. /*
  101. @Author Joe Titus
  102. @Date 5/8/2011
  103. */
  104. public Timer antiBanTimer = new Timer(0);
  105. public boolean customAB, AFK, Mouse, Camera, Tabs, LogOut, ABOn;
  106. public int ABFreq;
  107.  
  108. public double ABFreqTime;
  109. Timer AFKTimer = new Timer (0);
  110. public void antiBanMethod(){
  111. if (ABOn){
  112. if (!antiBanTimer.isRunning() && !AFKTimer.isRunning()){
  113. antiBan();
  114. antiBanTimer.setEndIn((int)random(ABFreqTime * .33, ABFreqTime * 1.66));
  115. }
  116. }
  117. }
  118.  
  119.  
  120.  
  121.  
  122. public void antiBan(){
  123. int t = 0;
  124. if (Camera){t++;};
  125. if (Tabs){t++;};
  126. if (AFK){t++;};
  127. if (Mouse){t++;};
  128. t += 0;
  129. switch(random(1, t)){
  130. case 1:
  131. if (Camera){
  132. camera.turnTo(getMyPlayer().getLocation().randomize(5, 5), 5);
  133. sleep(random(500, 750));
  134. return;
  135. }
  136. case 2:
  137. if (Tabs){
  138. switch(random(1, 4)){
  139. case 1:
  140. game.openTab(Tab.FRIENDS);
  141. mouse.move((585+random(-35, 35)), (330+random(-90, 90)));
  142. sleep(750, 3000);
  143. game.openTab(Tab.INVENTORY);
  144. sleep(random(500, 750));
  145. return;
  146.  
  147. case 2:
  148. game.openTab(Tab.CLAN_CHAT);
  149. mouse.move((585+random(-35, 35)), (330+random(-90, 90)));
  150. sleep(750, 1500);
  151. game.openTab(Tab.INVENTORY);
  152. sleep(random(500, 750));
  153. return;
  154.  
  155. default:
  156. game.openTab(Tab.STATS);
  157. mouse.moveRandomly(random(1, 300));
  158. sleep(750, 1500);
  159. game.openTab(Tab.INVENTORY);
  160. sleep(random(500, 750));
  161. return;
  162. }
  163. }
  164. case 3:
  165. if (AFK){
  166. int r = random(1, 100);
  167. if (r < 75){
  168. AFKTimer.setEndIn(random(3000, 5000));
  169. } else if (r >= 70 && r < 90){
  170. AFKTimer.setEndIn(random(5000, 15000));
  171. } else {
  172. AFKTimer.setEndIn(random(10000, 30000));
  173. }
  174. return;
  175. }
  176. case 4:
  177. if (Mouse){
  178. int s = random(1, 4);
  179. switch(s){
  180. case 1:
  181. mouse.moveOffScreen();
  182. sleep(750, 1500);
  183. return;
  184. case 2:
  185. mouse.moveSlightly();
  186. sleep(500, 1000);
  187. return;
  188. case 3:
  189. mouse.moveRandomly(random(1, 300));
  190. sleep(750, 1500);
  191. return;
  192. default:
  193. return;
  194. }
  195.  
  196. }
  197. default:
  198. return;
  199. }
  200. }
  201. public void setEnabled(boolean a, boolean b, boolean c, boolean d,
  202. boolean e, boolean f, boolean g, boolean h,
  203. boolean i, boolean j, boolean k, boolean l){
  204.  
  205. ABFreqSlider.setEnabled(a);
  206. ABOnOff.setEnabled(b);
  207. customAntiBanButton.setEnabled(c);
  208. ABLevelOptions.setEnabled(d);
  209. separator1.setEnabled(e);
  210. ABFreqLabel.setEnabled(f);
  211. AFKCheck.setEnabled(g);
  212. mouseMoveCheck.setEnabled(h);
  213. camMoveCheck.setEnabled(i);
  214. logOutCheck.setEnabled(j);
  215. openTabsCheck.setEnabled(k);
  216. ABLevelLabel.setEnabled(l);
  217.  
  218. }
  219.  
  220. public void getSettings(){
  221. if (!ABOnOff.isSelected()){
  222. ABOn = true;
  223. if (customAntiBanButton.isSelected()){
  224. customAB = true;
  225. ABFreq = ABFreqSlider.getValue();
  226. AFK = AFKCheck.isSelected();
  227. Mouse = mouseMoveCheck.isSelected();
  228. Camera = camMoveCheck.isSelected();
  229. Tabs = openTabsCheck.isSelected();
  230. LogOut = logOutCheck.isSelected();
  231. } else {
  232. customAB = false;
  233. if (ABLevelOptions.getSelectedItem().toString().contains("Low")) {
  234. ABFreq = 20;
  235. LogOut = true;
  236. Camera = true;
  237. Mouse = true;
  238.  
  239. } else if (ABLevelOptions.getSelectedItem().toString().contains("Medium")) {
  240. ABFreq = 40;
  241. Mouse = true;
  242. LogOut = true;
  243. Camera = true;
  244. AFK = true;
  245.  
  246. } else if (ABLevelOptions.getSelectedItem().toString().contains("High")) {
  247. ABFreq = 60;
  248. LogOut = true;
  249. Camera = true;
  250. Tabs = true;
  251. AFK = true;
  252. Mouse = true;
  253. }
  254. }
  255. log("AntiBan on");
  256. ABFreqTime = ((double)(240 / ABFreq) * 15000);
  257. antiBanTimer = new Timer ((int)random(ABFreqTime * .5, ABFreqTime * 1.5));
  258. } else {
  259. log("AntiBan off");
  260. ABOn = false;
  261. }
  262.  
  263. }
  264. public void ABToggle(){
  265. if ((ABOnOff.isSelected())){
  266. setEnabled(false, true, false, false, false, false, false, false, false, false, false, false);
  267. } else {
  268. if (customAntiBanButton.isSelected()){
  269. setEnabled(true, true, true, false, true, true, true, true, true, false, true, false);
  270. } else {
  271. setEnabled(false, true, true, true, true, false, false, false, false, false, false, true);
  272. }
  273. }
  274. }
  275. public void cantCont(){
  276. if ((customAntiBanButton.isSelected() && !AFKCheck.isSelected() && !mouseMoveCheck.isSelected()
  277. && !camMoveCheck.isSelected() && !openTabsCheck.isSelected()) || ABFreqSlider.getValue() == 0){
  278. contButton.setEnabled(false);
  279. } else {
  280. contButton.setEnabled(true);
  281. }
  282. }
  283.  
  284. public AntiBan() {
  285. initComponents();
  286. }
  287.  
  288. private void ABFreqSliderStateChanged(ChangeEvent e) {
  289. cantCont();
  290. }
  291.  
  292. private void ABOnOffStateChanged(ChangeEvent e) {
  293. ABOnOff.setToolTipText("The AntiBan is currently: " + content());
  294. ABOnOff.setText("Turn AntiBan " + OPcontent());
  295. ABToggle();
  296. cantCont();
  297. }
  298.  
  299. private void customAntiBanButtonStateChanged(ChangeEvent e) {
  300. ABToggle();
  301. cantCont();
  302. }
  303.  
  304. private void AFKCheckStateChanged(ChangeEvent e) {
  305. cantCont();
  306. }
  307.  
  308. private void mouseMoveCheckStateChanged(ChangeEvent e) {
  309. cantCont();
  310. }
  311.  
  312. private void camMoveCheckStateChanged(ChangeEvent e) {
  313. cantCont();
  314. }
  315.  
  316. private void logOutCheckStateChanged(ChangeEvent e) {
  317. cantCont();
  318. }
  319.  
  320. private void openTabsCheckStateChanged(ChangeEvent e) {
  321. cantCont();
  322. }
  323.  
  324. private void contButtonActionPerformed(ActionEvent e) {
  325. getSettings();
  326. setVisible(false);
  327. }
  328.  
  329.  
  330. String content(){
  331. if (ABOnOff.isSelected()){
  332. return "OFF";
  333. } else {
  334. return "ON";
  335. }
  336. }
  337. String OPcontent(){
  338. if (!ABOnOff.isSelected()){
  339. return "OFF";
  340. } else {
  341. return "ON";
  342. }
  343. }
  344. private void initComponents() {
  345. ABFreqSlider = new JSlider();
  346. ABOnOff = new JToggleButton();
  347. customAntiBanButton = new JRadioButton();
  348. ABLevelOptions = new JComboBox();
  349. separator1 = new JSeparator();
  350. ABFreqLabel = new JLabel();
  351. AFKCheck = new JRadioButton();
  352. mouseMoveCheck = new JRadioButton();
  353. camMoveCheck = new JRadioButton();
  354. logOutCheck = new JRadioButton();
  355. openTabsCheck = new JRadioButton();
  356. ABLevelLabel = new JLabel();
  357. contButton = new JButton();
  358.  
  359. addWindowListener(new WindowAdapter() {
  360. public void windowClosing(WindowEvent e) {
  361. stopScript();
  362. }
  363. });
  364. //======== this ========
  365. setTitle("AntiBan by Joe Titus");
  366. Container contentPane = getContentPane();
  367. //---- ABFreqSlider ----
  368. ABFreqSlider.setMajorTickSpacing(40);
  369. ABFreqSlider.setSnapToTicks(true);
  370. ABFreqSlider.setPaintTicks(true);
  371. ABFreqSlider.setBackground(new Color(238, 238, 238));
  372. ABFreqSlider.setEnabled(false);
  373. ABFreqSlider.setPaintLabels(true);
  374. ABFreqSlider.setMinorTickSpacing(8);
  375. ABFreqSlider.setMaximum(240);
  376. ABFreqSlider.setValue(60);
  377. ABFreqSlider.setToolTipText("Allows you to select the average amount of AntiBans per hour");
  378. ABFreqSlider.addChangeListener(new ChangeListener() {
  379. @Override
  380. public void stateChanged(ChangeEvent e) {
  381. ABFreqSliderStateChanged(e);
  382. }
  383. });
  384.  
  385. //---- ABOnOff ----
  386. ABOnOff.setText("Turn AntiBan Off");
  387.  
  388. ABOnOff.setToolTipText("The AntiBan is currently: ON");
  389. ABOnOff.addChangeListener(new ChangeListener() {
  390. @Override
  391. public void stateChanged(ChangeEvent e) {
  392. ABOnOffStateChanged(e);
  393. }
  394. });
  395.  
  396. //---- customAntiBanButton ----
  397. customAntiBanButton.setText("Custumized AntiBan");
  398. customAntiBanButton.setToolTipText("Enables you to customize your AntiBan");
  399. customAntiBanButton.addChangeListener(new ChangeListener() {
  400. @Override
  401. public void stateChanged(ChangeEvent e) {
  402. customAntiBanButtonStateChanged(e);
  403. }
  404. });
  405.  
  406. //---- ABLevelOptions ----
  407. ABLevelOptions.setModel(new DefaultComboBoxModel(new String[] {
  408. "Low",
  409. "Medium",
  410. "High"
  411. }));
  412. ABLevelOptions.setSelectedIndex(2);
  413. ABLevelOptions.setToolTipText("Selects the level of AntiBan");
  414. //---- separator1 ----
  415. separator1.setForeground(new Color(100, 100, 100));
  416. //---- ABFreqLabel ----
  417. ABFreqLabel.setText("Avg. AntiBans P/H");
  418. ABFreqLabel.setToolTipText("Average. AntiBans per hour");
  419. ABFreqLabel.setEnabled(false);
  420.  
  421. //---- AFKCheck ----
  422. AFKCheck.setText("AFK's");
  423. AFKCheck.setEnabled(false);
  424. AFKCheck.setToolTipText("If checked, the AntiBan will perform AFK's");
  425. AFKCheck.addChangeListener(new ChangeListener() {
  426. @Override
  427. public void stateChanged(ChangeEvent e) {
  428. AFKCheckStateChanged(e);
  429. }
  430. });
  431.  
  432. //---- mouseMoveCheck ----
  433. mouseMoveCheck.setText("Mouse MoveMents");
  434. mouseMoveCheck.setEnabled(false);
  435. mouseMoveCheck.setToolTipText("If checked, the AntiBan will move the mouse");
  436. mouseMoveCheck.addChangeListener(new ChangeListener() {
  437. @Override
  438. public void stateChanged(ChangeEvent e) {
  439. mouseMoveCheckStateChanged(e);
  440. }
  441. });
  442.  
  443. //---- camMoveCheck ----
  444. camMoveCheck.setText("Camera Movements");
  445. camMoveCheck.setEnabled(false);
  446. camMoveCheck.setToolTipText("If checked, the AntiBan will move the camera");
  447. camMoveCheck.addChangeListener(new ChangeListener() {
  448. @Override
  449. public void stateChanged(ChangeEvent e) {
  450. camMoveCheckStateChanged(e);
  451. }
  452. });
  453.  
  454. //---- logOutCheck ----
  455. logOutCheck.setText("Log Out if Innactive");
  456. logOutCheck.setEnabled(false);
  457. logOutCheck.setVisible(false);
  458. logOutCheck.setToolTipText("Currently under construction");
  459. logOutCheck.addChangeListener(new ChangeListener() {
  460. @Override
  461. public void stateChanged(ChangeEvent e) {
  462. logOutCheckStateChanged(e);
  463. }
  464. });
  465.  
  466. //---- openTabsCheck ----
  467. openTabsCheck.setText("Open Tabs");
  468. openTabsCheck.setEnabled(false);
  469. openTabsCheck.setToolTipText("If checked, the AntiBan will open your friends list tab");
  470. openTabsCheck.addChangeListener(new ChangeListener() {
  471. @Override
  472. public void stateChanged(ChangeEvent e) {
  473. openTabsCheckStateChanged(e);
  474. }
  475. });
  476.  
  477. //---- ABLevelLabel ----
  478. ABLevelLabel.setText("AntiBan Level");
  479. ABLevelLabel.setToolTipText("AntiBan Level");
  480.  
  481. //---- contButton ----
  482. contButton.setText("Continue");
  483. contButton.setToolTipText("Starts the Script");
  484. contButton.addActionListener(new ActionListener() {
  485. @Override
  486. public void actionPerformed(ActionEvent e) {
  487. contButtonActionPerformed(e);
  488. }
  489. });
  490.  
  491. GroupLayout contentPaneLayout = new GroupLayout(contentPane);
  492. contentPane.setLayout(contentPaneLayout);
  493. contentPaneLayout.setHorizontalGroup(
  494. contentPaneLayout.createParallelGroup()
  495. .addGroup(contentPaneLayout.createSequentialGroup()
  496. .addGroup(contentPaneLayout.createParallelGroup()
  497. .addGroup(contentPaneLayout.createSequentialGroup()
  498. .addGap(102, 102, 102)
  499. .addComponent(ABOnOff, GroupLayout.PREFERRED_SIZE, 182, GroupLayout.PREFERRED_SIZE))
  500. .addGroup(contentPaneLayout.createSequentialGroup()
  501. .addContainerGap()
  502. .addGroup(contentPaneLayout.createParallelGroup()
  503. .addGroup(contentPaneLayout.createSequentialGroup()
  504. .addComponent(ABFreqLabel)
  505. .addGap(12, 12, 12)
  506. .addComponent(ABFreqSlider, GroupLayout.PREFERRED_SIZE, 260, GroupLayout.PREFERRED_SIZE))
  507. .addGroup(GroupLayout.Alignment.TRAILING, contentPaneLayout.createSequentialGroup()
  508. .addGroup(contentPaneLayout.createParallelGroup(GroupLayout.Alignment.TRAILING)
  509. .addComponent(ABLevelLabel)
  510. .addComponent(customAntiBanButton, GroupLayout.PREFERRED_SIZE, 159, GroupLayout.PREFERRED_SIZE))
  511. .addGroup(contentPaneLayout.createParallelGroup()
  512. .addGroup(contentPaneLayout.createSequentialGroup()
  513. .addGap(18, 18, 18)
  514. .addComponent(separator1, GroupLayout.PREFERRED_SIZE, 164, GroupLayout.PREFERRED_SIZE))
  515. .addGroup(contentPaneLayout.createSequentialGroup()
  516. .addGap(27, 27, 27)
  517. .addComponent(ABLevelOptions, GroupLayout.PREFERRED_SIZE, 140, GroupLayout.PREFERRED_SIZE)))
  518. .addGap(96, 96, 96))))
  519. .addGroup(contentPaneLayout.createSequentialGroup()
  520. .addGap(20, 20, 20)
  521. .addGroup(contentPaneLayout.createParallelGroup(GroupLayout.Alignment.TRAILING, false)
  522. .addGroup(contentPaneLayout.createSequentialGroup()
  523. .addComponent(mouseMoveCheck)
  524. .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
  525. .addComponent(logOutCheck))
  526. .addGroup(contentPaneLayout.createSequentialGroup()
  527. .addComponent(openTabsCheck)
  528. .addGap(18, 18, 18)
  529. .addComponent(AFKCheck)
  530. .addPreferredGap(LayoutStyle.ComponentPlacement.UNRELATED)
  531. .addComponent(camMoveCheck))))
  532. .addGroup(contentPaneLayout.createSequentialGroup()
  533. .addGap(109, 109, 109)
  534. .addComponent(contButton, GroupLayout.PREFERRED_SIZE, 167, GroupLayout.PREFERRED_SIZE)))
  535. .addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
  536. );
  537. contentPaneLayout.setVerticalGroup(
  538. contentPaneLayout.createParallelGroup()
  539. .addGroup(contentPaneLayout.createSequentialGroup()
  540. .addGap(10, 10, 10)
  541. .addComponent(ABOnOff)
  542. .addGap(18, 18, 18)
  543. .addGroup(contentPaneLayout.createParallelGroup(GroupLayout.Alignment.BASELINE)
  544. .addComponent(ABLevelLabel)
  545. .addComponent(ABLevelOptions, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
  546. .addGroup(contentPaneLayout.createParallelGroup()
  547. .addGroup(contentPaneLayout.createSequentialGroup()
  548. .addGap(18, 18, 18)
  549. .addComponent(customAntiBanButton, GroupLayout.PREFERRED_SIZE, 44, GroupLayout.PREFERRED_SIZE))
  550. .addGroup(contentPaneLayout.createSequentialGroup()
  551. .addGap(35, 35, 35)
  552. .addComponent(separator1, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)))
  553. .addGroup(contentPaneLayout.createParallelGroup()
  554. .addGroup(contentPaneLayout.createSequentialGroup()
  555. .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
  556. .addComponent(ABFreqSlider, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
  557. .addGroup(contentPaneLayout.createSequentialGroup()
  558. .addGap(26, 26, 26)
  559. .addComponent(ABFreqLabel)))
  560. .addGap(15, 15, 15)
  561. .addGroup(contentPaneLayout.createParallelGroup(GroupLayout.Alignment.BASELINE)
  562. .addComponent(openTabsCheck)
  563. .addComponent(AFKCheck)
  564. .addComponent(camMoveCheck))
  565. .addPreferredGap(LayoutStyle.ComponentPlacement.UNRELATED)
  566. .addGroup(contentPaneLayout.createParallelGroup(GroupLayout.Alignment.BASELINE)
  567. .addComponent(logOutCheck)
  568. .addComponent(mouseMoveCheck))
  569. .addGap(18, 18, 18)
  570. .addComponent(contButton)
  571. .addContainerGap(12, Short.MAX_VALUE))
  572. );
  573. pack();
  574. setLocationRelativeTo(getOwner());
  575. // JFormDesigner - End of component initialization //GEN-END:initComponents
  576. }
  577.  
  578. // JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
  579. // Generated using JFormDesigner Evaluation license - Joe Titus
  580. private JSlider ABFreqSlider;
  581. private JToggleButton ABOnOff;
  582. private JRadioButton customAntiBanButton;
  583. private JComboBox ABLevelOptions;
  584. private JSeparator separator1;
  585. private JLabel ABFreqLabel;
  586. private JRadioButton AFKCheck;
  587. private JRadioButton mouseMoveCheck;
  588. private JRadioButton camMoveCheck;
  589. private JRadioButton logOutCheck;
  590. private JRadioButton openTabsCheck;
  591. private JLabel ABLevelLabel;
  592. private JButton contButton;
  593. // JFormDesigner - End of variables declaration //GEN-END:variables
  594. }
  595. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement