
gameclass2.0
By:
ace on
Mar 31st, 2010 | syntax:
None | size: 0.84 KB | hits: 13 | expires: Never
private void printWelcome()
{
System.out.println();
System.out.println("Welcome to the World of Zuul!");
System.out.println("World of Zuul is a new, incredibly boring adventure game.");
System.out.println("Type 'help' if you need help.");
System.out.println();
System.out.println("You are " + currentOrgan.getDescription());
printLocationInfo();
/*System.out.print("Exits: ");
if(currentOrgan.anteriorExit != null)
System.out.print("anterior ");
if(currentOrgan.posteriorExit != null)
System.out.print("posterior ");
if(currentOrgan.ventralExit != null)
System.out.print("ventral ");
if(currentOrgan.dorsalExit != null)
System.out.print("dorsal ");
System.out.println();*/
}