Jump to content

moore

Trade With Caution
  • Posts

    335
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by moore

  1. Reason for selling these accs is that my VPS I ran these accs with afking nmz was taken down and I don't feel like running 3 clients on my own computer 24/7 so I decided to sell these accs. On purchase the email address will be changed to yours.

     

    #1 Account -> SOLD 25M

     

    #2 Account -> SOLD 5M

    #3 Account -> Autowin is 20M - Current bid 10M


    Stats
    dYTPAg8.png
     
    Quests
    It has 47 quest points and you can host your own guthan nmz with this acc.

    Login
    du8zz3A.png
     
    Status
    Et1IbIT.png


     
    Payment is Oldschool Runescape gold.
    We will use mm if you don't want to go first as it is safer for both of us.
    We both will leave feedback after trade is done.
     
    I will take bids on these accounts so make sure you post your Skype and your offer below!
    Also add my Skype -> mirojantti
     
    If you have any questions add my Skype or PM me here.

  2. Paint and logo weren't finished/succesfull yet. They will be updated if my designer has some time, no rush unless the script is finished ofcourse (:

     

    Great. And the script is looking good mate

    • Like 1
  3. Here I made it quickly for you

    public class GUI extends JFrame {
    
    	private JPanel contentPane;
    	public JButton btnNewButton;
    	public JComboBox<String> comboBox;
    	public GUI() {
    		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    		setBounds(100, 100, 148, 108);
    		contentPane = new JPanel();
    		contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
    		setContentPane(contentPane);
    		contentPane.setLayout(null);
    		
    		btnNewButton = new JButton("New button");
    		btnNewButton.addActionListener(ae -> setVisible(false));
    		btnNewButton.setBounds(20, 42, 89, 23);
    		contentPane.add(btnNewButton);
    		
    		comboBox = new JComboBox<String>();
    		comboBox.setModel(new DefaultComboBoxModel<String>(new String[] {"Willow", "Yew"}));
    		comboBox.setBounds(10, 11, 121, 20);
    		contentPane.add(comboBox);
    	}
    }
    

    Also in your onStart

    private int tree; //0 -> willow, 1 -> yew
    	public void onStart() {
    		GUI g = new GUI();
    		g.setVisible(true);
    		while(g.isVisible()) {}
    		tree = g.comboBox.getSelectedIndex();
    	}
    

    And btw API has nothing to do with gui

  4. getMagic().castSpell(Spells.LunarSpells.NPC_CONTACT);

     

     

    You cannot create new instances of classes that extend API / MethodProvider like that. If you want to create new API instances, you have to do an exchangeContext on it first, in order to exchange your current Bot/MethodProvider with it.

     

     

    Yeah sorry, I didn't really pay attention to it, so I did it so fast and didn't understand it. Thanks for noticing me this :) I've never even done a spell casting thingy

×
×
  • Create New...