Jump to content

My Wrestling game developement


Guest sub

Recommended Posts

Well EWR got me going and so far iam just doing the layout.

Built IN JAVA

What to expect:

  • Play as booker
  • Play as road agent
  • Play as wrestler
  • Play as owner
    :P

    Features:

    • Internet
    • Email
    • Contact Workers
    • Staff oppionions

    Ok soooo ill put a screen-shot of what it looks like

    So far done:

    [*]Layout

    Please note i have exams next year and loads of homework. :crying:

    Roster updates will be avalable on offical website

    Needed:

give me the list of matches you want

1_28_09_08_10_48_41.png

Edited by sub
Link to comment
Share on other sites

guys i dont put crappy pictures on the screen

it takes time.

Iam doing fine in school so far so dont worry about study :D.

Ill put a screen shot.

Heres the messsing system so far:

import java.awt.*;

import java.awt.event.*;

import javax.swing.*;

import javax.swing.event.*;


public class MessageToWorker extends JPanel

{

	private JTextField component1;

	private JLabel component2;

	private JRadioButton component3;

	private JList component4;

	private JLabel component5;


	public MessageToWorker()

	{

		//construct preComponents

		String[] component4Items = {"Ewbattleground", "Blueright", "Sun Uk", "New-York Times"};


		//construct components

		component1 = new JTextField (5);

		component2 = new JLabel ("Message to" +wrestlerID+ ":");

		component3 = new JRadioButton ("Tell Press?");

		component4 = new JList (component4Items);

		component5 = new JLabel ("Press To Tell:");


		//adjust size and set layout

		setPreferredSize (new Dimension (496, 375));

		setLayout (null);


		//add components

		add (component1);

		add (component2);

		add (component3);

		add (component4);

		add (component5);


		//set component bounds ( Positioning)

		component1.setBounds (0, 30, 238, 72);

		component2.setBounds (0, 0, 161, 43);

		component3.setBounds (0, 100, 100, 25);

		component4.setBounds (0, 165, 100, 75);

		component5.setBounds (0, 140, 100, 25);

	}



	public static void main (String[] args)

	{

		JFrame frame = new JFrame ("JPanel Preview");

		frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);

		frame.getContentPane().add (new MessageToWorker());

		frame.pack();

		frame.setVisible (true);

	}

}

1_28_09_08_10_48_41.png

Edited by sub
Link to comment
Share on other sites

Sub, listen, man. I really need to tell you this because I care for you. You come in here touting a wrestling game you're making and now you want help. Listen, man. Listen.

You're a fucking piece of shit.

  • Like 3
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. To learn more, see our Privacy Policy