, wenn („Aufnahme“ .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] +“ ist… „+ drawSword);
}
|