This project includes a custom made client server application-level protocol that is capable of syncing data for up to 200 clients to play the classic game of Connect4.
- Built with core Java and Swing
- Host up to 200 players on a server
- Play solo against a simple algorithm
- PVP to play against one other player
- Multi person chat
- Open both Client.java and Server.java on a IDE or
- To run using command line, first go to file locations
- use command $ javac Server.java to compile and $ java Server.java to run
- Then we do the same the Client file $ javac Client.java to compile and $ java Client.java to run
- Server address is taken as a string with no port required,example: localhost or 192.168.1.99