Advertisement
Guest User

antiban example

a guest
Feb 28th, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. public  AntiBan AB = new AntiBan();
  3.         class AntiBan extends JFrame {
  4.  
  5.         /*
  6.         @Author                 Umbra
  7.         @Date           5/8/2011
  8.         */
  9.                 public Timer antiBanTimer = new Timer(0);
  10.                 public  boolean customAB, AFK, Mouse, Camera, Tabs, LogOut, ABOn;
  11.                 public  int ABFreq;
  12.                
  13.                 public double ABFreqTime;
  14.                 Timer AFKTimer = new Timer (0);
  15.                 public void antiBanMethod(){
  16.                         if (ABOn){
  17.                                 if (!antiBanTimer.isRunning() && !AFKTimer.isRunning()){
  18.                                         antiBan();
  19.                                         antiBanTimer.setEndIn((int)random(ABFreqTime * .33, ABFreqTime * 1.66));
  20.                                 }
  21.                         }
  22.                 }
  23.  
  24.  
  25.  
  26.  
  27.                 public void antiBan(){
  28.                         int t = 0;
  29.                         if (Camera){t++;};
  30.                         if (Tabs){t++;};
  31.                         if (AFK){t++;};
  32.                         if (Mouse){t++;};
  33.                         t += 0;
  34.                         switch(random(1, t)){
  35.                         case 1:
  36.                                 if (Camera){
  37.                                         camera.turnTo(getMyPlayer().getLocation().randomize(5, 5), 5);
  38.                                         sleep(random(500, 750));
  39.                                         return;
  40.                                 }
  41.                         case 2:
  42.                                 if (Tabs){
  43.                                         switch(random(1, 4)){
  44.                                                 case 1:
  45.                                                 game.openTab(Game.TAB_FRIENDS);
  46.                                                 mouse.move((585+random(-35, 35)),  (330+random(-90, 90)));
  47.                                                 sleep(750, 3000);
  48.                                                 game.openTab(Game.TAB_INVENTORY);
  49.                                                 sleep(random(500, 750));
  50.                                                 return;
  51.                                                
  52.                                                 case 2:
  53.                                                 game.openTab(Game.TAB_CLAN);
  54.                                                 mouse.move((585+random(-35, 35)),  (330+random(-90, 90)));
  55.                                                 sleep(750, 1500);
  56.                                                 game.openTab(Game.TAB_INVENTORY);
  57.                                                 sleep(random(500, 750));
  58.                                                 return;
  59.  
  60.                                                 default:
  61.                                                 game.openTab(game.TAB_STATS);
  62.                                                 mouse.moveRandomly(random(1, 300));
  63.                                                 sleep(750, 1500);      
  64.                                                 game.openTab(Game.TAB_INVENTORY);
  65.                                                 sleep(random(500, 750));      
  66.                                                 return;
  67.                                         }
  68.                                 }
  69.                         case 3:                
  70.                                 if (AFK){
  71.                                         int r = random(1, 100);
  72.                                         if (r < 75){
  73.                                                 AFKTimer.setEndIn(random(3000, 5000));
  74.                                         } else if (r >= 70 && r < 90){
  75.                                                 AFKTimer.setEndIn(random(5000, 15000));
  76.                                         } else {
  77.                                                 AFKTimer.setEndIn(random(10000, 30000));
  78.                                         }
  79.                                         return;
  80.                                 }
  81.                         case 4:
  82.                                 if (Mouse){
  83.                                         int s = random(1, 4);
  84.                                         switch(s){
  85.                                         case 1:
  86.                                                 mouse.moveOffScreen();
  87.                                                 sleep(750, 1500);
  88.                                                 return;
  89.                                         case 2:
  90.                                                 mouse.moveSlightly();
  91.                                                 sleep(500, 1000);
  92.                                                 return;
  93.                                         case 3:
  94.                                                 mouse.moveRandomly(random(1, 300));
  95.                                                 sleep(750, 1500);
  96.                                                 return;
  97.                                         default:
  98.                                                 return;
  99.                                         }
  100.  
  101.                                 }
  102.                         default:
  103.                                 return;
  104.                         }
  105.                 }
  106.                 public void setEnabled(boolean a, boolean b, boolean c, boolean d,
  107.                                 boolean e, boolean f, boolean g, boolean h,
  108.                                 boolean i, boolean j, boolean k, boolean l){
  109.  
  110.                         ABFreqSlider.setEnabled(a);
  111.                         ABOnOff.setEnabled(b);
  112.                         customAntiBanButton.setEnabled(c);
  113.                         ABLevelOptions.setEnabled(d);
  114.                         separator1.setEnabled(e);
  115.                         ABFreqLabel.setEnabled(f);
  116.                         AFKCheck.setEnabled(g);
  117.                         mouseMoveCheck.setEnabled(h);
  118.                         camMoveCheck.setEnabled(i);
  119.                         logOutCheck.setEnabled(j);
  120.                         openTabsCheck.setEnabled(k);
  121.                         ABLevelLabel.setEnabled(l);
  122.  
  123.                 }
  124.  
  125.                 public void getSettings(){
  126.                         if (!ABOnOff.isSelected()){
  127.                                 ABOn = true;
  128.                                 if (customAntiBanButton.isSelected()){
  129.                                         customAB = true;
  130.                                         ABFreq = ABFreqSlider.getValue();
  131.                                         AFK = AFKCheck.isSelected();
  132.                                         Mouse = mouseMoveCheck.isSelected();
  133.                                         Camera = camMoveCheck.isSelected();
  134.                                         Tabs = openTabsCheck.isSelected();
  135.                                         LogOut = logOutCheck.isSelected();
  136.                                 } else {
  137.                                         customAB = false;
  138.                                         if (ABLevelOptions.getSelectedItem().toString().contains("Low")) {
  139.                                                 ABFreq = 20;
  140.                                                 LogOut = true;
  141.                                                 Camera = true;
  142.                                                 Mouse = true;
  143.  
  144.                                         } else if (ABLevelOptions.getSelectedItem().toString().contains("Medium")) {
  145.                                                 ABFreq = 40;
  146.                                                 Mouse = true;
  147.                                                 LogOut = true;
  148.                                                 Camera = true;
  149.                                                 AFK = true;
  150.  
  151.                                         } else if (ABLevelOptions.getSelectedItem().toString().contains("High")) {
  152.                                                 ABFreq = 60;
  153.                                                 LogOut = true;
  154.                                                 Camera = true;
  155.                                                 Tabs = true;
  156.                                                 AFK = true;
  157.                                                 Mouse = true;
  158.                                         }
  159.                                 }
  160.                                 log("AntiBan on");
  161.                                 ABFreqTime = ((double)(240 / ABFreq) * 15000);
  162.                                 antiBanTimer = new Timer ((int)random(ABFreqTime * .5, ABFreqTime * 1.5));
  163.                         } else {
  164.                                 log("AntiBan off");
  165.                                 ABOn = false;
  166.                         }
  167.  
  168.                 }
  169.                 public void ABToggle(){
  170.                         if ((ABOnOff.isSelected())){
  171.                                 setEnabled(false, true, false, false, false, false, false, false, false, false, false, false);
  172.                         } else {
  173.                                 if (customAntiBanButton.isSelected()){
  174.                                         setEnabled(true, true, true, false, true, true, true, true, true, false, true, false);
  175.                                 } else {
  176.                                         setEnabled(false, true, true, true, true, false, false, false, false, false, false, true);
  177.                                 }
  178.                         }
  179.                 }
  180.                 public void cantCont(){
  181.                         if ((customAntiBanButton.isSelected() && !AFKCheck.isSelected() && !mouseMoveCheck.isSelected()
  182.                                         && !camMoveCheck.isSelected() && !openTabsCheck.isSelected()) || ABFreqSlider.getValue() == 0){
  183.                                 contButton.setEnabled(false);
  184.                         } else {
  185.                                 contButton.setEnabled(true);
  186.                         }
  187.                 }
  188.  
  189.                 public AntiBan() {
  190.                         initComponents();
  191.                 }
  192.  
  193.                 private void ABFreqSliderStateChanged(ChangeEvent e) {
  194.                         cantCont();
  195.                 }
  196.  
  197.                 private void ABOnOffStateChanged(ChangeEvent e) {
  198.                         ABOnOff.setToolTipText("The AntiBan is currently: " + content());
  199.                         ABOnOff.setText("Turn AntiBan " + OPcontent());
  200.                         ABToggle();
  201.                         cantCont();
  202.                 }
  203.  
  204.                 private void customAntiBanButtonStateChanged(ChangeEvent e) {
  205.                         ABToggle();
  206.                         cantCont();
  207.                 }
  208.  
  209.                 private void AFKCheckStateChanged(ChangeEvent e) {
  210.                         cantCont();
  211.                 }
  212.  
  213.                 private void mouseMoveCheckStateChanged(ChangeEvent e) {
  214.                         cantCont();
  215.                 }
  216.  
  217.                 private void camMoveCheckStateChanged(ChangeEvent e) {
  218.                         cantCont();
  219.                 }
  220.  
  221.                 private void logOutCheckStateChanged(ChangeEvent e) {
  222.                         cantCont();
  223.                 }
  224.  
  225.                 private void openTabsCheckStateChanged(ChangeEvent e) {
  226.                         cantCont();
  227.                 }
  228.  
  229.                 private void contButtonActionPerformed(ActionEvent e) {
  230.                         getSettings();
  231.                         setVisible(false);
  232.                 }
  233.  
  234.  
  235.                 String content(){
  236.                         if (ABOnOff.isSelected()){
  237.                                 return "OFF";
  238.                         } else {
  239.                                 return "ON";
  240.                         }
  241.                 }
  242.                 String OPcontent(){
  243.                         if (!ABOnOff.isSelected()){
  244.                                 return "OFF";
  245.                         } else {
  246.                                 return "ON";
  247.                         }
  248.                 }
  249.                 private void initComponents() {
  250.                         ABFreqSlider = new JSlider();
  251.                         ABOnOff = new JToggleButton();
  252.                         customAntiBanButton = new JRadioButton();
  253.                         ABLevelOptions = new JComboBox();
  254.                         separator1 = new JSeparator();
  255.                         ABFreqLabel = new JLabel();
  256.                         AFKCheck = new JRadioButton();
  257.                         mouseMoveCheck = new JRadioButton();
  258.                         camMoveCheck = new JRadioButton();
  259.                         logOutCheck = new JRadioButton();
  260.                         openTabsCheck = new JRadioButton();
  261.                         ABLevelLabel = new JLabel();
  262.                         contButton = new JButton();
  263.  
  264.                         addWindowListener(new WindowAdapter() {
  265.                                 public void windowClosing(WindowEvent e) {
  266.                                         stopScript();
  267.                                 }
  268.                         });
  269.                         //======== this ========
  270.                         setTitle("AntiBan");
  271.                         Container contentPane = getContentPane();
  272.                         //---- ABFreqSlider ----
  273.                         ABFreqSlider.setMajorTickSpacing(40);
  274.                         ABFreqSlider.setSnapToTicks(true);
  275.                         ABFreqSlider.setPaintTicks(true);
  276.                         ABFreqSlider.setBackground(new Color(238, 238, 238));
  277.                         ABFreqSlider.setEnabled(false);
  278.                         ABFreqSlider.setPaintLabels(true);
  279.                         ABFreqSlider.setMinorTickSpacing(8);
  280.                         ABFreqSlider.setMaximum(240);
  281.                         ABFreqSlider.setValue(60);
  282.                         ABFreqSlider.setToolTipText("Allows you to select the average amount of AntiBans per hour");
  283.                         ABFreqSlider.addChangeListener(new ChangeListener() {
  284.                                 @Override
  285.                                 public void stateChanged(ChangeEvent e) {
  286.                                         ABFreqSliderStateChanged(e);
  287.                                 }
  288.                         });
  289.  
  290.                         //---- ABOnOff ----
  291.                         ABOnOff.setText("Turn AntiBan Off");
  292.  
  293.                         ABOnOff.setToolTipText("The AntiBan is currently: ON");
  294.                         ABOnOff.addChangeListener(new ChangeListener() {
  295.                                 @Override
  296.                                 public void stateChanged(ChangeEvent e) {
  297.                                         ABOnOffStateChanged(e);
  298.                                 }
  299.                         });
  300.  
  301.                         //---- customAntiBanButton ----
  302.                         customAntiBanButton.setText("Custumized AntiBan");
  303.                         customAntiBanButton.setToolTipText("Enables you to customize your AntiBan");
  304.                         customAntiBanButton.addChangeListener(new ChangeListener() {
  305.                                 @Override
  306.                                 public void stateChanged(ChangeEvent e) {
  307.                                         customAntiBanButtonStateChanged(e);
  308.                                 }
  309.                         });
  310.  
  311.                         //---- ABLevelOptions ----
  312.                         ABLevelOptions.setModel(new DefaultComboBoxModel(new String[] {
  313.                                         "Low",
  314.                                         "Medium",
  315.                                         "High"
  316.                         }));
  317.                         ABLevelOptions.setSelectedIndex(2);
  318.                         ABLevelOptions.setToolTipText("Selects the level of AntiBan");
  319.                         //---- separator1 ----
  320.                         separator1.setForeground(new Color(100, 100, 100));
  321.                         //---- ABFreqLabel ----
  322.                         ABFreqLabel.setText("Avg. AntiBans P/H");
  323.                         ABFreqLabel.setToolTipText("Average. AntiBans per hour");
  324.                         ABFreqLabel.setEnabled(false);
  325.  
  326.                         //---- AFKCheck ----
  327.                         AFKCheck.setText("AFK's");
  328.                         AFKCheck.setEnabled(false);
  329.                         AFKCheck.setToolTipText("If checked, the AntiBan will perform AFK's");
  330.                         AFKCheck.addChangeListener(new ChangeListener() {
  331.                                 @Override
  332.                                 public void stateChanged(ChangeEvent e) {
  333.                                         AFKCheckStateChanged(e);
  334.                                 }
  335.                         });
  336.  
  337.                         //---- mouseMoveCheck ----
  338.                         mouseMoveCheck.setText("Mouse MoveMents");
  339.                         mouseMoveCheck.setEnabled(false);
  340.                         mouseMoveCheck.setToolTipText("If checked, the AntiBan will move the mouse");
  341.                         mouseMoveCheck.addChangeListener(new ChangeListener() {
  342.                                 @Override
  343.                                 public void stateChanged(ChangeEvent e) {
  344.                                         mouseMoveCheckStateChanged(e);
  345.                                 }
  346.                         });
  347.  
  348.                         //---- camMoveCheck ----
  349.                         camMoveCheck.setText("Camera Movements");
  350.                         camMoveCheck.setEnabled(false);
  351.                         camMoveCheck.setToolTipText("If checked, the AntiBan will move the camera");
  352.                         camMoveCheck.addChangeListener(new ChangeListener() {
  353.                                 @Override
  354.                                 public void stateChanged(ChangeEvent e) {
  355.                                         camMoveCheckStateChanged(e);
  356.                                 }
  357.                         });
  358.  
  359.                         //---- logOutCheck ----
  360.                         logOutCheck.setText("Log Out if Innactive");
  361.                         logOutCheck.setEnabled(false);
  362.                         logOutCheck.setVisible(false);
  363.                         logOutCheck.setToolTipText("Currently under construction");
  364.                         logOutCheck.addChangeListener(new ChangeListener() {
  365.                                 @Override
  366.                                 public void stateChanged(ChangeEvent e) {
  367.                                         logOutCheckStateChanged(e);
  368.                                 }
  369.                         });
  370.  
  371.                         //---- openTabsCheck ----
  372.                         openTabsCheck.setText("Open Tabs");
  373.                         openTabsCheck.setEnabled(false);
  374.                         openTabsCheck.setToolTipText("If checked, the AntiBan will open your friends list tab");
  375.                         openTabsCheck.addChangeListener(new ChangeListener() {
  376.                                 @Override
  377.                                 public void stateChanged(ChangeEvent e) {
  378.                                         openTabsCheckStateChanged(e);
  379.                                 }
  380.                         });
  381.  
  382.                         //---- ABLevelLabel ----
  383.                         ABLevelLabel.setText("AntiBan Level");
  384.                         ABLevelLabel.setToolTipText("AntiBan Level");
  385.  
  386.                         //---- contButton ----
  387.                         contButton.setText("Continue");
  388.                         contButton.setToolTipText("Starts the Script");
  389.                         contButton.addActionListener(new ActionListener() {
  390.                                 @Override
  391.                                 public void actionPerformed(ActionEvent e) {
  392.                                         contButtonActionPerformed(e);
  393.                                 }
  394.                         });
  395.  
  396.                         GroupLayout contentPaneLayout = new GroupLayout(contentPane);
  397.                         contentPane.setLayout(contentPaneLayout);
  398.                         contentPaneLayout.setHorizontalGroup(
  399.                                         contentPaneLayout.createParallelGroup()
  400.                                         .addGroup(contentPaneLayout.createSequentialGroup()
  401.                                                         .addGroup(contentPaneLayout.createParallelGroup()
  402.                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  403.                                                                                         .addGap(102, 102, 102)
  404.                                                                                         .addComponent(ABOnOff, GroupLayout.PREFERRED_SIZE, 182, GroupLayout.PREFERRED_SIZE))
  405.                                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  406.                                                                                                         .addContainerGap()
  407.                                                                                                         .addGroup(contentPaneLayout.createParallelGroup()
  408.                                                                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  409.                                                                                                                                         .addComponent(ABFreqLabel)
  410.                                                                                                                                         .addGap(12, 12, 12)
  411.                                                                                                                                         .addComponent(ABFreqSlider, GroupLayout.PREFERRED_SIZE, 260, GroupLayout.PREFERRED_SIZE))
  412.                                                                                                                                         .addGroup(GroupLayout.Alignment.TRAILING, contentPaneLayout.createSequentialGroup()
  413.                                                                                                                                                         .addGroup(contentPaneLayout.createParallelGroup(GroupLayout.Alignment.TRAILING)
  414.                                                                                                                                                                         .addComponent(ABLevelLabel)
  415.                                                                                                                                                                         .addComponent(customAntiBanButton, GroupLayout.PREFERRED_SIZE, 159, GroupLayout.PREFERRED_SIZE))
  416.                                                                                                                                                                         .addGroup(contentPaneLayout.createParallelGroup()
  417.                                                                                                                                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  418.                                                                                                                                                                                                         .addGap(18, 18, 18)
  419.                                                                                                                                                                                                         .addComponent(separator1, GroupLayout.PREFERRED_SIZE, 164, GroupLayout.PREFERRED_SIZE))
  420.                                                                                                                                                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  421.                                                                                                                                                                                                                         .addGap(27, 27, 27)
  422.                                                                                                                                                                                                                         .addComponent(ABLevelOptions, GroupLayout.PREFERRED_SIZE, 140, GroupLayout.PREFERRED_SIZE)))
  423.                                                                                                                                                                                                                         .addGap(96, 96, 96))))
  424.                                                                                                                                                                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  425.                                                                                                                                                                                                                                         .addGap(20, 20, 20)
  426.                                                                                                                                                                                                                                         .addGroup(contentPaneLayout.createParallelGroup(GroupLayout.Alignment.TRAILING, false)
  427.                                                                                                                                                                                                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  428.                                                                                                                                                                                                                                                                         .addComponent(mouseMoveCheck)
  429.                                                                                                                                                                                                                                                                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
  430.                                                                                                                                                                                                                                                                         .addComponent(logOutCheck))
  431.                                                                                                                                                                                                                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  432.                                                                                                                                                                                                                                                                                         .addComponent(openTabsCheck)
  433.                                                                                                                                                                                                                                                                                         .addGap(18, 18, 18)
  434.                                                                                                                                                                                                                                                                                         .addComponent(AFKCheck)
  435.                                                                                                                                                                                                                                                                                         .addPreferredGap(LayoutStyle.ComponentPlacement.UNRELATED)
  436.                                                                                                                                                                                                                                                                                         .addComponent(camMoveCheck))))
  437.                                                                                                                                                                                                                                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  438.                                                                                                                                                                                                                                                                                                         .addGap(109, 109, 109)
  439.                                                                                                                                                                                                                                                                                                         .addComponent(contButton, GroupLayout.PREFERRED_SIZE, 167, GroupLayout.PREFERRED_SIZE)))
  440.                                                                                                                                                                                                                                                                                                         .addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
  441.                         );
  442.                         contentPaneLayout.setVerticalGroup(
  443.                                         contentPaneLayout.createParallelGroup()
  444.                                         .addGroup(contentPaneLayout.createSequentialGroup()
  445.                                                         .addGap(10, 10, 10)
  446.                                                         .addComponent(ABOnOff)
  447.                                                         .addGap(18, 18, 18)
  448.                                                         .addGroup(contentPaneLayout.createParallelGroup(GroupLayout.Alignment.BASELINE)
  449.                                                                         .addComponent(ABLevelLabel)
  450.                                                                         .addComponent(ABLevelOptions, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
  451.                                                                         .addGroup(contentPaneLayout.createParallelGroup()
  452.                                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  453.                                                                                                         .addGap(18, 18, 18)
  454.                                                                                                         .addComponent(customAntiBanButton, GroupLayout.PREFERRED_SIZE, 44, GroupLayout.PREFERRED_SIZE))
  455.                                                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  456.                                                                                                                         .addGap(35, 35, 35)
  457.                                                                                                                         .addComponent(separator1, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)))
  458.                                                                                                                         .addGroup(contentPaneLayout.createParallelGroup()
  459.                                                                                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  460.                                                                                                                                                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
  461.                                                                                                                                                         .addComponent(ABFreqSlider, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
  462.                                                                                                                                                         .addGroup(contentPaneLayout.createSequentialGroup()
  463.                                                                                                                                                                         .addGap(26, 26, 26)
  464.                                                                                                                                                                         .addComponent(ABFreqLabel)))
  465.                                                                                                                                                                         .addGap(15, 15, 15)
  466.                                                                                                                                                                         .addGroup(contentPaneLayout.createParallelGroup(GroupLayout.Alignment.BASELINE)
  467.                                                                                                                                                                                         .addComponent(openTabsCheck)
  468.                                                                                                                                                                                         .addComponent(AFKCheck)
  469.                                                                                                                                                                                         .addComponent(camMoveCheck))
  470.                                                                                                                                                                                         .addPreferredGap(LayoutStyle.ComponentPlacement.UNRELATED)
  471.                                                                                                                                                                                         .addGroup(contentPaneLayout.createParallelGroup(GroupLayout.Alignment.BASELINE)
  472.                                                                                                                                                                                                         .addComponent(logOutCheck)
  473.                                                                                                                                                                                                         .addComponent(mouseMoveCheck))
  474.                                                                                                                                                                                                         .addGap(18, 18, 18)
  475.                                                                                                                                                                                                         .addComponent(contButton)
  476.                                                                                                                                                                                                         .addContainerGap(12, Short.MAX_VALUE))
  477.                         );
  478.                         pack();
  479.                         setLocationRelativeTo(getOwner());
  480.                         // JFormDesigner - End of component initialization  //GEN-END:initComponents
  481.                 }
  482.  
  483.                 // JFormDesigner - Variables declaration - DO NOT MODIFY  //GEN-BEGIN:variables
  484.                 // Generated using JFormDesigner Evaluation license - Joe Titus
  485.                 private JSlider ABFreqSlider;
  486.                 private JToggleButton ABOnOff;
  487.                 private JRadioButton customAntiBanButton;
  488.                 private JComboBox ABLevelOptions;
  489.                 private JSeparator separator1;
  490.                 private JLabel ABFreqLabel;
  491.                 private JRadioButton AFKCheck;
  492.                 private JRadioButton mouseMoveCheck;
  493.                 private JRadioButton camMoveCheck;
  494.                 private JRadioButton logOutCheck;
  495.                 private JRadioButton openTabsCheck;
  496.                 private JLabel ABLevelLabel;
  497.                 private JButton contButton;
  498.                 // JFormDesigner - End of variables declaration  //GEN-END:variables
  499.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement