Pastebin launched a little side project called HostCabi.net, check it out ;-)Don't like ads? PRO users don't see any ads ;-)
Guest

gameclass2.0

By: ace on Mar 31st, 2010  |  syntax: None  |  size: 0.84 KB  |  hits: 29  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. private void printWelcome()
  2.     {
  3.         System.out.println();
  4.         System.out.println("Welcome to the World of Zuul!");
  5.         System.out.println("World of Zuul is a new, incredibly boring adventure game.");
  6.         System.out.println("Type 'help' if you need help.");
  7.         System.out.println();
  8.         System.out.println("You are " + currentOrgan.getDescription());
  9.         printLocationInfo();
  10.         /*System.out.print("Exits: ");
  11.         if(currentOrgan.anteriorExit != null)
  12.             System.out.print("anterior ");
  13.         if(currentOrgan.posteriorExit != null)
  14.             System.out.print("posterior ");
  15.         if(currentOrgan.ventralExit != null)
  16.             System.out.print("ventral ");
  17.         if(currentOrgan.dorsalExit != null)
  18.             System.out.print("dorsal ");
  19.         System.out.println();*/
  20.        
  21.     }