if ("pickup".equalsIgnoreCase(temp[4]))
{
c.append("\n"+temp[0] + "|" + temp[1] + "|" + temp[2] + "|" + temp[3] + "|" + temp[4]);
//int changeX = Integer.parseInt(temp[1]);
//int changeY = Integer.parseInt(temp[2]);
//board[changeY][changeX] = 4;
int theItem = Integer.parseInt(temp[1]);
pickedUp(theItem, temp[0]);
//c.append("\n"+temp[2] + " is... " + drawSword);
}
|