For my school project I am creating a game like Bad Apples for iPhone (not my personal choice but it isn\'t the problem).
The game needs to have two versions, the first
To answer the question you actually asked ...
Some of the elements of your args array are of the form "--SOMETHING=ANOTHER".
So, first thing you need is:
if(args[x].startsWith("--SOMETHING")) {
The second problem is to parse off the ANOTHER.
args[x].split("=")
is the place to start with that.