Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by Leaghte ( 15 years ago )
@Override
public GameState execute(Game arg0) {
if (arg0.getCurrentRoom().equals(((GameImpl) arg0).room10)) {
if (arg0.getBackpack().size() < 10) {
System.out.println("nemozes tam ist");
} else {
if (arg0.getCurrentRoom().getNorth() != null) {
arg0.setCurrentRoom(arg0.getCurrentRoom().getNorth());
arg0.getCurrentRoom().show();
} else {
System.out.println("Danym smerom sa neda ist");
}
}
}
return GameState.PLAYING;
}
Revise this Paste