Sythe.Org Forums     Register     FAQ     Members List     Calendar     Mark Forums Read    
 
Sythe.Org Forums  
   Runescape Gold

Sythe.org — A Virtual Goods Trading Hub

Make real cash! buying and selling in-game items.

We have a no-scam policy.

You can make thousands playing your favourite games here at Sythe.org.

Just sign up an account and follow the rules!


Take me to

Runescape Markets

Other Game Markets

Support Center

Register an Account

Close
[FREE]Source Code for RSDropLogger!
Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 03-28-2012, 09:34 PM
Forum Addict
 
Join Date: Jun 2010
Posts: 285
Default [FREE]Source Code for RSDropLogger!

I started a project for a droplogger and kind of dropped out of the whole Runescape thing, so I'm donating it to the community.
I don't want this posted anywhere else on the internet except for Sythe.
If you add on to it significantly, then you can do whatever - it's yours.

Current Source Code:
  • To run create a batch file to run the ChooseActionPanel.class.
  • It brings up the ChooseActionPanel GUI, which allows you to select the Boss/Monster you wish to kill.
  • It includes the first worthwhile slayer monster, Jungle Strykewurms.
  • Every Jungle Strykewurm drop above 1k is on the JungleStrykewurm GUI.

There is nothing that can harm your computer in these files.
I will not add download links, for that exact reason.
Admins, feel free to check the code for any malicious intentions.
Save this as ChooseActionPanel.java
Code:
/* This source code was released on Sythe.org only to be built on. This code has not been optimized for speed or efficiency!
 * The owner of the original source code is A Man(level-3) and you are not to distribute it anywhere without his explicit permission.
 * By copy and pasting this source code, you are agreeing to not re-distribute this source code unless it has been built on. 
 */

import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.GroupLayout;
import javax.swing.GroupLayout.Alignment;
import javax.swing.JLabel;
import javax.swing.JComboBox;
import javax.swing.DefaultComboBoxModel;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;


public class ChooseActionPanel {

	private JFrame frmAMansDrop;
	JungleStrykeWurm js1;

	/**
	 * Launch the application.
	 */
	public static void main(String[] args) {
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				try {
					ChooseActionPanel window = new ChooseActionPanel();
					window.frmAMansDrop.setVisible(true);
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
		});
	}

	/**
	 * Create the application.
	 */
	public ChooseActionPanel() {
		initialize();
	}
	
	public static void setVisible(boolean b) {
		
	}

	/**
	 * Initialize the contents of the frame.
	 */
	private void initialize() {
		frmAMansDrop = new JFrame();
		frmAMansDrop.setResizable(false);
		frmAMansDrop.setTitle("A Man's Drop Logger v0.01");
		frmAMansDrop.setBounds(100, 100, 551, 190);
		frmAMansDrop.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		
		JLabel lblChoose = new JLabel("Choose your current Slayer assignment:");
		
		JLabel lblChooseWhatBoss = new JLabel("Choose which Boss you're hunting:");
		
		JComboBox comboBox = new JComboBox();
		comboBox.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent arg0) {
				JComboBox bossList = (JComboBox)arg0.getSource();
				System.out.println(bossList.getSelectedItem());
				String n = (String)bossList.getSelectedItem();
				System.out.println(n);
				frmAMansDrop.setVisible(false);
				if(n.equalsIgnoreCase("Jungle StrykeWurms")) 
					js1 = new JungleStrykeWurm(50);
					
			}
		});
		comboBox.setModel(new DefaultComboBoxModel(new String[] {"Jungle StrykeWurms", "Gargoyles", "Desert StrykeWurms", "Aquanites", "Nechryaels", "Spiritual Mages", "Abyssal Demons", "Dark Beasts", "Jandinko Males", "Ice StrykeWurm"}));
		
		JComboBox comboBox_1 = new JComboBox();
		comboBox_1.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
			}
		});
		comboBox_1.setModel(new DefaultComboBoxModel(new String[] {"Bandos", "Zamorak", "Saradomin", "Armadyl", "Corporeal Beast", "Nex"}));
		GroupLayout groupLayout = new GroupLayout(frmAMansDrop.getContentPane());
		groupLayout.setHorizontalGroup(
			groupLayout.createParallelGroup(Alignment.LEADING)
				.addGroup(groupLayout.createSequentialGroup()
					.addGap(20)
					.addGroup(groupLayout.createParallelGroup(Alignment.TRAILING, false)
						.addComponent(comboBox, Alignment.LEADING, 0, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
						.addComponent(lblChoose, Alignment.LEADING, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
					.addGap(31)
					.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
						.addComponent(comboBox_1, 0, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
						.addComponent(lblChooseWhatBoss)) //This original source code belongs to A Man(level-3)
					.addContainerGap(23, Short.MAX_VALUE))
		);
		groupLayout.setVerticalGroup(
			groupLayout.createParallelGroup(Alignment.LEADING)
				.addGroup(groupLayout.createSequentialGroup()
					.addGap(24)
					.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
						.addComponent(lblChoose)
						.addComponent(lblChooseWhatBoss))
					.addGap(18)
					.addGroup(groupLayout.createParallelGroup(Alignment.LEADING, false)
						.addComponent(comboBox_1)
						.addComponent(comboBox, GroupLayout.DEFAULT_SIZE, 34, Short.MAX_VALUE))
					.addContainerGap(172, Short.MAX_VALUE))
		);
		frmAMansDrop.getContentPane().setLayout(groupLayout);
	}
}
Save this as JungleStrykeWurm.java
Code:
/* This source code was released on Sythe.org only to be built on. This code has not been optimized for speed or efficiency!
 * The owner of the original source code is A Man(level-3) and you are not to distribute it anywhere without his explicit permission.
 * By copy and pasting this source code, you are agreeing to not re-distribute this source code unless it has been built on. 
 */

import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.GroupLayout;
import javax.swing.GroupLayout.Alignment;
import javax.swing.JLabel;
import javax.swing.JButton;
import javax.swing.LayoutStyle.ComponentPlacement;
import javax.swing.JTextField;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;


public class JungleStrykeWurm {

	private JFrame frmJungleStrykewurms;
	private JTextField textField;
	private JTextField textField_1;
	int reqkills, jskills, coins, drunes, 
	nrunes, lrunes, airtal, bodytal, chaostal, 
	cosmictal, firetal, nattal, watertal, csh, 
	cse, loop, tooth, teaks, pess, papaya, adhat, 
	mithbaxe, runej, dspear, hexxy, glcharm, 
	grcharm, ccharm, bcharm;
	int untkills = reqkills - jskills;
	/**
	 * Launch the application.
	 */
	public static void main(String[] args) {
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				try {
					JungleStrykeWurm window = new JungleStrykeWurm(50000);
					
					window.frmJungleStrykewurms.setVisible(true);
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
		});
	}

	/**
	 * Create the application.
	 */
	public JungleStrykeWurm(int n) {
		reqkills = n;
		initialize();
	}
	
	public void onShutdown() {
		
	}

	/**
	 * Initialize the contents of the frame.
	 */
	private void initialize() {
		frmJungleStrykewurms = new JFrame();
		frmJungleStrykewurms.setTitle("Jungle StrykeWurms - " +jskills + " Kills - "+ untkills + " Until Done");
		frmJungleStrykewurms.setBounds(100, 100, 750, 327);
		frmJungleStrykewurms.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		
		JLabel lblCoins = new JLabel("Coins");
		
		JButton button = new JButton("+");
		button.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent arg0) {
				int n;
				String i = textField.getText();
				if(!i.equalsIgnoreCase("")) {
					n = Integer.parseInt(i);
				if (n != 0) {
					coins = n;
					jskills++;
				}
					}
				else
				System.out.println("You can't enter this value.");
			}
		});
		
		JButton button_1 = new JButton("+");
		button_1.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				drunes += 10;
				jskills++;
			}
		});
		
		JButton button_2 = new JButton("+");
		button_2.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				lrunes += 10;
				jskills++;
			}
		});
		
		JButton button_3 = new JButton("+");
		button_3.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				nrunes += 15;
				jskills++;
			}
		});
		
		JButton button_4 = new JButton("+");
		button_4.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				airtal++;
				jskills++;
			}
		});
		
		JButton button_5 = new JButton("+");
		button_5.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				bodytal++;
				jskills++;
			}
		});
		
		JButton button_6 = new JButton("+");
		button_6.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				chaostal++;
				jskills++;
			}
		});
		
		JButton button_7 = new JButton("+");
		button_7.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				cosmictal++;
				jskills++;
			}
		});
		
		JLabel lblDeathRunes = new JLabel("Death Runes(10)");
		
		JLabel lblLawRunes = new JLabel("Law Runes(10)");
		
		JLabel lblNatureRunes = new JLabel("Nature Runes(15)");
		
		JLabel lblAirTalisman = new JLabel("Air Talisman");
		
		JLabel lblBodyTalisman = new JLabel("Body Talisman");
		
		JLabel lblChaosTalisman = new JLabel("Chaos Talisman");
		
		JLabel lblCosmicTalisman = new JLabel("Cosmic Talisman");
		
		JButton button_8 = new JButton("+");
		button_8.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				firetal++;
				jskills++;
			}
		});
		
		JButton button_9 = new JButton("+");
		button_9.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				csh++;
				jskills++;
			}
		});
		
		JButton button_10 = new JButton("+");
		button_10.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				cse++;
				jskills++;
			}
		});
		
		JButton button_11 = new JButton("+");
		button_11.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				loop++;
				jskills++;
			}
		});
		
		JButton button_12 = new JButton("+");
		button_12.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				tooth++;
				jskills++;
			}
		});
		
		JButton button_13 = new JButton("+");
		button_13.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				teaks += 20;
				jskills++;
			}
		});
		
		JButton button_14 = new JButton("+");
		button_14.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				nattal++;
				jskills++;
			}
		});
		
		JButton button_15 = new JButton("+");
		button_15.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				watertal++;
				jskills++;
			}
		});
		
		JLabel lblFireTalisman = new JLabel("Fire Talisman");
		
		JLabel lblNatureTalisman = new JLabel("Nature Talisman");
		
		JLabel lblWaterTalisman = new JLabel("Water Talisman");
		
		JLabel lblClueScrollhard = new JLabel("Clue Scroll(hard)");
		
		JLabel lblClueScrollelite = new JLabel("Clue Scroll(elite)");
		
		JLabel lblLoopHalfKey = new JLabel("Loop Half Key");
		
		JLabel lblToothHalfKey = new JLabel("Tooth Half Key");
		
		JLabel lblTeakLogs = new JLabel("Teak Logs(20)");
		
		JButton button_16 = new JButton("+");
		button_16.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				pess += 20;
				jskills++;
			}
		});
		
		JButton button_17 = new JButton("+");
		button_17.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				int n;
				String i = textField.getText();
				if(!i.equalsIgnoreCase("")) {
					n = Integer.parseInt(i);
				if (n != 0) {
					papaya = n;
					jskills++;
				}
					}
				else
				System.out.println("You can't enter this value.");
			}
		});
		
		JButton button_18 = new JButton("+");
		button_18.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				adhat++;
				jskills++;
			}
		});
		
		JButton button_19 = new JButton("+");
		button_19.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				mithbaxe++;
				jskills++;
			}
		});
		
		JButton button_20 = new JButton("+");
		button_20.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				runej += 5;
				jskills++;
			}
		});
		
		JButton button_21 = new JButton("+");
		button_21.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				dspear++;
				jskills++;
			}
		});
		
		JButton button_22 = new JButton("+");
		button_22.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				hexxy++;
				jskills++;
			}
		});
		
		JButton button_23 = new JButton("+");
		button_23.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				glcharm++;
				jskills++;
			}
		});
		
		JButton button_28 = new JButton("+");
		button_28.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				grcharm++;
				jskills++;
			}
		});
		
		JButton button_29 = new JButton("+");
		button_29.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				ccharm++;
				jskills++;
			}
		});
		
		JButton button_30 = new JButton("+");
		button_30.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				bcharm++;
				jskills++;
			}
		});
		
		JButton button_31 = new JButton("+");
		button_31.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				jskills++;
			}
		});
		
		JLabel lblPureEssence = new JLabel("Pure Essence(40)");
		
		JLabel lblPapaya = new JLabel("Papaya");
		
		JLabel lblAdamantHatchet = new JLabel("Adamant Hatchet");
		
		JLabel lblMithrilBattleaxe = new JLabel("Mithril Battleaxe");
		
		JLabel lblRuneJavelin = new JLabel("Rune Javelin(5)");
		
		JLabel lblDragonSpear = new JLabel("Dragon Spear");
		
		JLabel lblHexcrest = new JLabel("Hexcrest");
		
		JLabel lblGoldCharm = new JLabel("Gold Charm");
		
		JLabel lblGreenCharm = new JLabel("Green Charm");
		
		JLabel lblCrimsonCharm = new JLabel("Crimson Charm");
		
		JLabel lblBlueCharm = new JLabel("Blue Charm");
		
		JLabel lblNothing = new JLabel("Nothing");
		
		textField = new JTextField();
		textField.setColumns(10);
		
		textField_1 = new JTextField();
		textField_1.setColumns(10);
		
		JButton btnSendTaskdone = new JButton("Send Task - Done");
		btnSendTaskdone.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				//TODO: Add to the server here.
			}
		});
		GroupLayout groupLayout = new GroupLayout(frmJungleStrykewurms.getContentPane());
		groupLayout.setHorizontalGroup(
			groupLayout.createParallelGroup(Alignment.LEADING)
				.addGroup(groupLayout.createSequentialGroup()
					.addContainerGap()
					.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblCoins)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(textField, GroupLayout.PREFERRED_SIZE, 42, GroupLayout.PREFERRED_SIZE))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_1, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblDeathRunes))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_2, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblLawRunes))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_3, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblNatureRunes))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_4, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblAirTalisman))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_5, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblBodyTalisman))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_6, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblChaosTalisman))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_7, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblCosmicTalisman)))
							//this is A Man(level-3)'s work. Do not use from any other source.
					.addGap(4)
					.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_14, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblFireTalisman))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_15, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblNatureTalisman))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_8, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblWaterTalisman))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_9, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblClueScrollhard))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_10, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblClueScrollelite))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_11, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblLoopHalfKey))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_12, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblToothHalfKey))
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_13, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblTeakLogs)))
					.addGap(32)
					.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
						.addGroup(groupLayout.createSequentialGroup()
							.addComponent(button_20, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
							.addPreferredGap(ComponentPlacement.RELATED)
							.addComponent(lblRuneJavelin))
						.addGroup(groupLayout.createSequentialGroup()
							.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
								.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
									.addGroup(groupLayout.createParallelGroup(Alignment.LEADING, false)
										.addGroup(groupLayout.createSequentialGroup()
											.addComponent(button_17, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
											.addPreferredGap(ComponentPlacement.RELATED)
											.addComponent(lblPapaya)
											.addPreferredGap(ComponentPlacement.RELATED)
											.addComponent(textField_1, 0, 0, Short.MAX_VALUE))
										.addGroup(groupLayout.createSequentialGroup()
											.addComponent(button_16, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
											.addPreferredGap(ComponentPlacement.RELATED)
											.addComponent(lblPureEssence))
										.addGroup(groupLayout.createSequentialGroup()
											.addComponent(button_18, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
											.addPreferredGap(ComponentPlacement.RELATED)
											.addComponent(lblAdamantHatchet))
										.addGroup(groupLayout.createSequentialGroup()
											.addComponent(button_19, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
											.addPreferredGap(ComponentPlacement.RELATED)
											.addComponent(lblMithrilBattleaxe)))
									.addGroup(groupLayout.createSequentialGroup()
										.addComponent(button_21, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
										.addPreferredGap(ComponentPlacement.RELATED)
										.addComponent(lblDragonSpear)))
								.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
									.addGroup(groupLayout.createSequentialGroup()
										.addComponent(button_22, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
										.addPreferredGap(ComponentPlacement.RELATED)
										.addComponent(lblHexcrest))
									.addGroup(groupLayout.createSequentialGroup()
										.addComponent(button_23, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
										.addPreferredGap(ComponentPlacement.RELATED)
										.addComponent(lblGoldCharm))))
							.addGap(48)
							.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
								.addComponent(btnSendTaskdone)
								.addGroup(groupLayout.createSequentialGroup()
									.addComponent(button_28, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
									.addPreferredGap(ComponentPlacement.RELATED)
									.addComponent(lblNothing))
								.addGroup(groupLayout.createSequentialGroup()
									.addComponent(button_29, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
									.addPreferredGap(ComponentPlacement.RELATED)
									.addComponent(lblBlueCharm))
								.addGroup(groupLayout.createSequentialGroup()
									.addComponent(button_31, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
									.addPreferredGap(ComponentPlacement.RELATED)
									.addComponent(lblGreenCharm))
								.addGroup(groupLayout.createSequentialGroup()
									.addComponent(button_30, GroupLayout.PREFERRED_SIZE, 41, GroupLayout.PREFERRED_SIZE)
									.addPreferredGap(ComponentPlacement.RELATED)
									.addComponent(lblCrimsonCharm)))))
					.addContainerGap(139, Short.MAX_VALUE))
		);
		groupLayout.setVerticalGroup(
			groupLayout.createParallelGroup(Alignment.LEADING)
				.addGroup(groupLayout.createSequentialGroup()
					.addContainerGap()
					.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
						.addGroup(groupLayout.createSequentialGroup()
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button)
								.addComponent(lblCoins)
								.addComponent(textField, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
							.addPreferredGap(ComponentPlacement.RELATED)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_1)
								.addComponent(lblDeathRunes))
							.addPreferredGap(ComponentPlacement.RELATED)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_2)
								.addComponent(lblLawRunes))
							.addPreferredGap(ComponentPlacement.RELATED)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_3)
								.addComponent(lblNatureRunes))
							.addPreferredGap(ComponentPlacement.RELATED)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_4)
								.addComponent(lblAirTalisman))
							.addPreferredGap(ComponentPlacement.RELATED)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_5)
								.addComponent(lblBodyTalisman))
							.addPreferredGap(ComponentPlacement.RELATED)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_6)
								.addComponent(lblChaosTalisman))
							.addPreferredGap(ComponentPlacement.RELATED)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_7)
								.addComponent(lblCosmicTalisman)))
						.addGroup(groupLayout.createSequentialGroup()
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_14)
								.addComponent(lblFireTalisman))
							.addGap(6)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_15)
								.addComponent(lblNatureTalisman))
							.addGap(6)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_8)
								.addComponent(lblWaterTalisman))
							.addGap(6)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_9)
								.addComponent(lblClueScrollhard))
							.addGap(6)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_10)
								.addComponent(lblClueScrollelite))
							.addGap(6)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_11)
								.addComponent(lblLoopHalfKey))
							.addGap(6)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_12)
								.addComponent(lblToothHalfKey))
							.addGap(6)
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_13)
								.addComponent(lblTeakLogs)))
						.addGroup(groupLayout.createSequentialGroup()
							.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
								.addComponent(button_16)
								.addComponent(lblPureEssence)
								.addComponent(button_31)
								.addComponent(lblGreenCharm))
							.addGap(6)
							.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
								.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
									.addComponent(button_17)
									.addComponent(lblPapaya))
								.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
									.addComponent(button_30)
									.addComponent(lblCrimsonCharm)
									.addComponent(textField_1, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)))
							.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
								.addGroup(groupLayout.createSequentialGroup()
									.addGap(6)
									.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
										.addComponent(button_18)
										.addComponent(lblAdamantHatchet)))
								.addGroup(groupLayout.createSequentialGroup()
									.addPreferredGap(ComponentPlacement.RELATED)
									.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
										.addComponent(button_29)
										.addComponent(lblBlueCharm))))
							.addPreferredGap(ComponentPlacement.RELATED)
							.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
								.addGroup(groupLayout.createSequentialGroup()
									.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
										.addComponent(button_19)
										.addComponent(lblMithrilBattleaxe))
									.addGap(6)
									.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
										.addComponent(button_20)
										.addComponent(lblRuneJavelin))
									.addGap(6)
									.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
										.addComponent(button_21)
										.addComponent(lblDragonSpear))
									.addGap(6)
									.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
										.addComponent(button_22)
										.addComponent(lblHexcrest))
									.addPreferredGap(ComponentPlacement.RELATED)
									.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
										.addComponent(button_23)
										.addComponent(lblGoldCharm)))
								.addGroup(groupLayout.createSequentialGroup()
									.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
										.addComponent(button_28)
										.addComponent(lblNothing))
									.addGap(31)
									.addComponent(btnSendTaskdone, GroupLayout.PREFERRED_SIZE, 52, GroupLayout.PREFERRED_SIZE)))))
					.addGap(81))
		);
		frmJungleStrykewurms.getContentPane().setLayout(groupLayout);
		frmJungleStrykewurms.setVisible(true);
	}
}
__________________
Reply With Quote
Reply



Cheap RS Gold Store  Runescape Gold

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

All times are GMT +1. The time now is 04:21 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.6.1