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

dropitemtest1

By: ace on Aug 18th, 2010  |  syntax: None  |  size: 0.35 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. public String testDropItem()
  2.     {
  3.        room1.setItems(item1);
  4.        player1.setCurrentRoom(room1);
  5.        player1.takeItem("item1");
  6.        player1.dropItem("item1");
  7.        if (room1.itemCheck("item1") == item1)
  8.         {
  9.             return "test passes";
  10.         }
  11.         else
  12.         {
  13.             return "test fails";
  14.         }
  15.     }