This is a basic java implementation program that mainly deals with oops concepts. Only 2 or 3 players can play the game at once for now. If you're familiar with Monopoly, this game is fairly similar. Instead of displaying countries or cities, it deals with real-life companies. In the game, players can buy companies and shares. Just like real shares, the value of shares will increase or decrease which will result in profit or loss for the players. The first player to cross $15k wins the game or gets bankrupted if his current balance is 0. We hope you have fun while playing the game. Please report any issues you find.
JAVA, Object Oriented Programming, Modular Programming
- This is a multiplayer player modern stock trading game.
- Player who reaches $ 20k wins the game and player with $ 0 balance loses the game.
- Players will have an option to move maximum of 3 blocks at a time.
- Once you land on a company you will get the chance to buy that company and you will own company shares.
- If another player lands on your company, he/she will have to pay service rent and your share price will also increase by 10 % .
- Blocks numbered 3,8 are the |Trading blocks|. Here players can buy other company's shares.
- The players will have an option to sell their share anytime during the course of the game.
- 4th and 12th are the | Chance | block, there are 7 chances which will be chosen randomly by computer.
- Download the Java Development Kit (JDK) from here.
- Install Git.
- Fork this repository on your own github profile.
- Clone this repository on your local machine.
- Open the terminal with project opened on your local machine and execute the following code.
cd src
javac App.java
(To compile the game)
java App
(To run the game) - Now you can play the Monopoly Stock Exchange Game.