roflmao

rofl


fifa 2007 > pes 6



kTnX

fifa 2007 rox :D
Comments
19
get a life rezon
:((((((((((((((((((((((((((
Parent
fifa07 is probs one of the best fifa games out, thou nothing can compare to the mighty pes6.
Hmm.

Fifa 2007 is unreal, sry.
pes 6 > all tbh
wtf is pes 6?
its a pesisa
Parent
pes : unreal names !!
Parent
import java.util.Scanner;
import java.util.StringTokenizer;

/**
* This class is part of the "World of Zuul" application.
* "World of Zuul" is a very simple, text based adventure game.
*
* This parser reads user input and tries to interpret it as an "Adventure"
* command. Every time it is called it reads a line from the terminal and
* tries to interpret the line as a two word command. It returns the command
* as an object of class Command.
*
* The parser has a set of known command words. It checks user input against
* the known commands, and if the input is not one of the known commands, it
* returns a command object that is marked as an unknown command.
*
* @author Michael Kolling and David J. Barnes
* @version 2006.03.30
*/
public class Parser
{
private CommandWords commands; // holds all valid command words
private Scanner reader; // source of command input

/**
* Create a parser to read from the terminal window.
*/
public Parser()
{
commands = new CommandWords();
reader = new Scanner(System.in);
}

/**
* @return The next command from the user.
*/
public Command getCommand()
{
String inputLine; // will hold the full input line
String word1 = null;
String word2 = null;

System.out.print("> "); // print prompt

inputLine = reader.nextLine();

// Find up to two words on the line.
Scanner tokenizer = new Scanner(inputLine);
if(tokenizer.hasNext()) {
word1 = tokenizer.next(); // get first word
if(tokenizer.hasNext()) {
word2 = tokenizer.next(); // get second word
// note: we just ignore the rest of the input line.
}
}

// Now check whether this word is known. If so, create a command
// with it. If not, create a "null" command (for unknown command).
if(commands.isCommand(word1)) {
return new Command(word1, word2);
}
else {
return new Command(null, word2);
}
}
}
ah world of zuul, made that for a school project some time ago..
Parent
pes6 > all
Chessmaster 2007 > Fifa 2007 & PES 6
please give me a ftp link to pes6 and fifa07, emule takes so long :(
Torrent ktnx :)

down speed : 140
Parent
i dont know why but <3 Fifa 07
fifa is for little kids, play a mans game like pes
Rhaaaa that wannabe leet attitude, it s so 15 years old.
it makes me want to slap you so hard you lose your head, even if i dont know you except by the huge amount of retarded kiddy crap you post on this website.

and dont forget to add a lol, rofl or kthx noob to any reply cause that makes you right in whatever your opinion is , ho and you also look like you are not affraid by anything you are just too cool for the world, you are a REAL hero.
Back to top